violacase
Forum Replies Created
-
Forum: Plugins
In reply to: [Genericon'd] Debugger noticeGee…
I’ll reproduce the bug:In your plugin comment line 112
$genericon_rotate = 'genericon-rotate-normal';Now you have an undefined var.
Create a post with this single line in the content area:
[genericon icon=flag]View the post. Voilรก.
I end this conversation: have better things to do.
Forum: Plugins
In reply to: [Genericon'd] Debugger noticeWell, you can choose whatever setup you’d like. There are Chrome add-ons for PHP, independent system watchers, etc.
Whatever you set up: there’s always SOME kind of console to watch the debugging info. I’ll give you my setup:
On the server side:
In wp-config.php:define('WP_DEBUG', true);
Installed WordPress plugins: Debug Bar and Kint Debugger.
On the client side (Win8) Chrome with its great Inspector. Here I can closely watch and trace HTML, CSS and Javascript on the fly. Above this 8 extensions that do their own great work. Google onDevTools…That’s all. Works fine for me. I think this should be enough info.
Happy coding!Forum: Plugins
In reply to: [Genericon'd] Debugger noticeForum: Plugins
In reply to: [Genericon'd] Debugger noticeMika,
First things first:
1. Deactivate your plugin.
2. Deliberately put some errors in your plugin code.
3. Activate your plugin and see what happens. Check debug console.
4. Call your code on any page/post/function and see what happens. Check debug console.If debugger catches all errors problem is solved.
If not, notice me. My debugging practice is simple but works. I can explain my debug setup in more detail but please first try yourself.
NOTA: Are you sure you have Debug Bar plugin running? Standard WP_DEBUG doesn’t show Warnings and Notices.
Forum: Plugins
In reply to: [Genericon'd] Debugger noticeHi Mika,
The site that showed the bug runs on PHP 5.3.3 Apache mode.
Last idea: did you actually test some code with any undefined var(s)?
A good debug setup MUST inform you. What’s the use of debugging otherwise?Forum: Plugins
In reply to: [Genericon'd] Debugger noticeWell, I’ve noticed you defined the var genericon_rotate in the last update.
Still it’s odd you couldn’t see the debugger notice.
I also do my tests without any cacheing on the server side. For WordPress I’ve installed the famous Debug Bar plugin and Kint Debug.For Chrome I use the very handy Clear Cache add on.
Forum: Plugins
In reply to: [Genericon'd] Debugger noticeSure you don’t run any cache services? Otherwise you really have to rethink your WordPress setup.
Forum: Plugins
In reply to: [Genericon'd] Debugger notice๐
Both Dge-06 and esmi thanks for your replies ๐
I concider this topic as ‘resolved’.Hey Esmi!
You reacted on Dge-06 but not on me. It’s me who posted the initial question. Any answer?
Forum: Plugins
In reply to: [GZip Ninja Speed Compression] ySlow messageHi CustomWPNinjas,
Sorry for not responding a bit sooner. I’m very busy with other stuff now. I can’t make any time for examening cacheing problems for now. I’ll send you an email when the time comes and I need support. I can fully understand you mark this thread as resolved. Happy coding!
Forum: Plugins
In reply to: [Update Message] Needs updatingWell, that was fast ๐
Looks good now. Nice plugin btw, I’ll honnor you with 5 stars.Forum: Plugins
In reply to: [CSV to SortTable] Sorting Genericon stars columnI found a rather simple roundabout to avoid the problem.
Before the stars string I put the numeric amount character, like ‘1’ or ‘5’. Looks good and functions well.Forum: Plugins
In reply to: [Advanced Editor Tools] emotions button not showingFollow up.
I found a solution. Adding this function to functions.php does the trick.add_filter( 'comment_form_defaults', 'custom_comment_form_defaults' ); function custom_comment_form_defaults( $args ) { $mce_plugins = 'wordpress, emotions'; ob_start(); wp_editor( '', 'comment', array( 'media_buttons' => false, 'teeny' => false, 'textarea_rows' => '5', 'tinymce' => array( 'plugins' => $mce_plugins ) ) ); $args['comment_field'] = ob_get_clean(); return $args; }Forum: Plugins
In reply to: [GZip Ninja Speed Compression] ySlow messageHรฉ CustomWPNinjas,
You’re really working on this thing… Nice to see. I know multiple cacheing plugins working simultaneously is bad practice. (Unless you know what you’re doing)
You don’t have to hurry, it’s not of big importance for me right now. I’ll wait and see.
Happy coding!