DataObjects/Core_setting.php
[Pman.Core] / UpdateDatabase.php
index f10bed8..3207977 100644 (file)
@@ -1191,12 +1191,18 @@ class Pman_Core_UpdateDatabase extends Pman
     {
         
         // this needs to clear it's own cache along with remote one..
-        print_r($this->local_base_url);exit;
+  
         $url = "http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache";
+        
         $response = $this->curl($url);
         
-        print_R($response);
-        exit;
+        $json = json_decode($response, true);
+        
+        if(empty($json['data']) || $json['data'] != 'DONE'){
+            echo $response. "\n";
+            echo "CURL clear cache failed\n";
+            exit;
+        }
         
     }