UpdateDatabase.php
[Pman.Core] / UpdateDatabase.php
index c0020fa..776c223 100644 (file)
@@ -1190,18 +1190,17 @@ class Pman_Core_UpdateDatabase extends Pman
     
     function clearApacheDataobjectsCache()
     {
-        
+        echo "Clearing Database Cache\n";
         // 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);
+        $response = $this->curl("http://localhost{$this->local_base_url}/Core/RefreshDatabaseCache");
         
         $json = json_decode($response, true);
         
         if(empty($json['data']) || $json['data'] != 'DONE'){
             echo $response. "\n";
-            echo "CURL clear cache failed\n";
+            echo "Clear DataObjects Cache failed\n";
             exit;
         }
         
@@ -1210,19 +1209,17 @@ class Pman_Core_UpdateDatabase extends Pman
     
     function clearApacheAssetCache()
     {
-        $a = new Pman();
-        $mods = $a->modulesList();
-        
-        $url = "http://localhost{$this->local_base_url}/Core/Asset";
-        $response = $this->curl($url, array(
-                '_clear_cache' => 1,
-                
-        ));
+        echo "Clearing Asset Cache\n";
+        $response = $this->curl(
+            "http://localhost{$this->local_base_url}/Core/Asset",
+            array( '_clear_cache' => 1 ,'returnHTML' => 0 ),
+            'POST'
+        );
         $json = json_decode($response, true);
         
         if(empty($json['success']) || !$json['success']) {
             echo $response. "\n";
-            echo "CURL clear compiled file failed\n";
+            echo "CURL Clear Asset cache failed\n";
             exit;
         }