bloomspin
Forum Replies Created
-
Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Upgrading to WordPress 3.9 Deletes All Code BlocksPaul sounds like you are on a different version. The plugin author has found the issue I would wait for his next release it may solve any other problems
Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Upgrading to WordPress 3.9 Deletes All Code BlocksYour welcome glad to help. I am currently testing the free version
Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Upgrading to WordPress 3.9 Deletes All Code BlocksI have fixed the problem
Turns out WordPress may have changed one of the vars in the WPDB object.
Open file plugins/css-javascript-toolbox/framework/db/mysql/queue-driver.inc.php
Change line 133
$data = mysql_escape_string($data, $this->wpdb->dbh);To
$data = mysql_escape_string($data);I have tested the following
-All blocks show up in admin
-Create new code bocks
-Save code blocks
-Shortcodes on frontendHopefully this solves any other issues
Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Upgrading to WordPress 3.9 Deletes All Code BlocksSo far there is a problem with the “WHERE” SQL parameter
/tables/blocks.php
Line 58
public function get()When I remove the {$WHERE} from the SQL query I am able to get the blocks to appear. But I am assuming that var is there for an important reason for other functions so I will try to make it work.
Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Upgrading to WordPress 3.9 Deletes All Code BlocksHaving same issue on one of my WP Network sites. The Database still has the code blocks which is a good thing. Hopefully I can find out whats causing this issue if the Plugin Developer doesn’t have a solution soon. I am trying to replicate on my development server
Love this plugin and will try to help and fix