I have clicked the update CDN Data button again and i no longer get the error mentioned above. But still, when i would click the “apply” button nothing happens.
Any help would greatly appreciated.
If needed this is my site: http://www.hitechdigitallifestyle.com
I’m using jsDelivr from a long time, till 3.6 it was fine, now in 3.6.1 this plugin cannot recognize my files anymore, showing me the same every single time I scan my site or update cdn data.
Plugin Author
jimaek
(@jimaek)
Please try again. Our hosting provider changed servers and temporary there were issues that could create your problem.
Thank you
Hey brother, I have done rest and clicked on the update CDN Data, but now it just keep showing that Update cdn data button. When I click on it, it start showing processing and then back to Update CDN Data button.
now im getting this meggage
Date: Sat, 05 Oct 2013 23:12:23 GMT
HTTP status: 520
Server output:
<html><body>Fetching of original content failed with the following error: Proxy Publisher Failure - TIMEOUT. If you own this domain, please consult <a href='http://code.google.com/speed/pss/faq.html#publisherfailure'>this FAQ</a>.</body></html>
Plugin Author
jimaek
(@jimaek)
I think you got timeout or RAM problems.
On my website the update process takes about 10 seconds without any issues.
Got same problem tonight. After some walk into php, data returned by hash URL is bad.
You need to remove HTML comment at the end (containing cache time).
Add this in jsdelivr.php :
protected function update_cdn()
{
global $wpdb;
$data = $this->get_content(self::update_cdn_url);
$data=preg_replace('/<!--(.*?)-->/','',$data);
if (!$data)
return false;
// truncate tables
$wpdb->query("TRUNCATE TABLE ".$wpdb->jsd_cdnp);
Only preg_replace line to add.
Hi!
I just installed the plugin and I returned the following error:
Date: Thu, 21 Nov 2013 22:49:54 GMT
HTTP status: 500
Server output:
any idea how I can fix?
Thanks in advance
increasing wordpress memory allocation to 96M helped:
define( 'WP_MEMORY_LIMIT', '96M' );