UpdateDatabase.php
[Pman.Core] / UpdateDatabase.php
index 285c904..17f0726 100644 (file)
@@ -131,6 +131,7 @@ class Pman_Core_UpdateDatabase extends Pman
         
         
         $ff = HTML_FlexyFramework::get();
+        print_R($ff);exit;
         if (!empty($ff->cli)) {
             $this->cli = true;
             return true;
@@ -1193,10 +1194,15 @@ class Pman_Core_UpdateDatabase extends Pman
         // this needs to clear it's own cache along with remote one..
   
         $url = "http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache";
+        
         $response = $this->curl($url);
-        print_R($response);exit;
-        if(empty($response) || $response != 'DONE'){
-            
+        
+        $json = json_decode($response, true);
+        
+        if(empty($json['data']) || $json['data'] != 'DONE'){
+            echo $response. "\n";
+            echo "CURL clear cache failed\n";
+            exit;
         }
         
     }