guix69
Forum Replies Created
-
Forum: Plugins
In reply to: [Debug Objects] blank page with 3.8Modify only php.ini, that is the only place where this setting takes place.
Forum: Plugins
In reply to: [Debug Objects] blank page with 3.8By the way, great plugin ! Really helpfull.
Forum: Plugins
In reply to: [Debug Objects] blank page with 3.8Thank you for the reply.
I found the problem thanks to the apache log on the server. Even only with the query log activated in your plugin it was using a looooot of RAM. Maybe the website is even more poorly coded than I thought ??G.
Forum: Plugins
In reply to: [Debug Objects] blank page with 3.8Had to increase the php memory_limit A LOT.
Don’t know is this is site related or plugin related.Hope this helps ??
G.
Forum: Plugins
In reply to: [Debug Objects] blank page with 3.8actually it’s the query debug which causes the blank page…
PHP version: 5.5.5-1~dotdeb.1
Server: Apache/2.2.22Forum: Plugins
In reply to: [ML Post Slider] mlpostsslider on wp 3.5.1 = no slider!Please post your solution when you find one.
Thanks
Forum: Requests and Feedback
In reply to: Link Titles when Inserting Mediawow, I love WordPress but that’s the kind of things I don’t understand. Why would the editor replace the selected text with the media name? I’m gonna have a fun time explaining to my users that they must select the text / copy it / paste it inside “Title” field.
Anyway I hope this gets changed in the next releases.
Big up to the WordPress team for the amazing work.Forum: Plugins
In reply to: [Custom CSS for Posts and Pages (CCSS)] how to apply stylesheet to subpages?Here is the answer in case someone needs it ??
function ccss_save() { global $post_ID; if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) return; if (!current_user_can( 'edit_post', $post_id ) ) return; $id = $_POST['post_ID']; $css_sheet = $_POST['ccss']; // no need to keep extra info in db for posts/pages without an extra stylesheet. if ($css_sheet != '-1') { update_post_meta($id, 'css_sheet', $css_sheet); // adds style to subpages $args=array( 'child_of' => $id ); $pages = get_pages($args); if ($pages) { $pageids = array(); foreach ($pages as $page) { update_post_meta($page->ID, 'css_sheet', $css_sheet); } } } else { delete_post_meta($id, 'css_sheet'); // removes style from subpages $args=array( 'child_of' => $id ); $pages = get_pages($args); if ($pages) { $pageids = array(); foreach ($pages as $page) { delete_post_meta($page->ID, 'css_sheet'); } } } }
I’ll check the Apache config…
I uncommented the line AddDefaultCharset UTF-8 in /etc/apache2/conf.d/charset but it doesn’t help.damn it, I installed it locally on my PC and it works correctly. Then there must be something wrong with the server but I wonder what…
Just noticed what firebug says about the Response : Content-Type text/html; charset=iso-8859-1
What is weird is the difference between the 2 calls to the template file.
The first one displays characters correctly, the ajax call displays utf8 characters as if they were in a ISO-8859 page.I uninstalled it and installed the latest 5.3.1, same problem.
I think we mean the same thing, the backoffice, the installer, which is available in wp-admin under plugins / add. Am I wrong?
I installed the plugin via the WP backoffice. But I’ll check the encoding of the files.