Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Access Keys

    (@access-keys)

    Hi there,
    Thank you for some feedback.

    We had checked in default wordpress themes by setting the both WP_DEBUG and WP_DEBUG_DISPLAY true but we couldn’t find any notices or warnings in backend.

    Can you please check once again by switching themes to just ensure if that is not the warnings from theme that you are debugging?

    Thread Starter manuelmasia

    (@manuelmasia)

    Hi, I tried several themes, the shots are referring to TwentyFourteen, but was the same with other themes:

    1. this is after saving on the backend: https://www.diigo.com/file/image/cebrobqzcdbrcpoqqzbodqosrr/Screen+Shot+2014-09-30+at+09.11.37.jpg

    I think you could fix by removing lines 134 and 141 from /inc/cores/save-settings.php since they don’t refer to any input field… but, of course, maybe I’m missing something, I don’t know the plugin. That’s just a clue, starting from what I see.

    2. this is after submitting the post from the front end (if I try to submit an image too): https://www.diigo.com/file/image/cebrobqzcdbrcpqoozbodqpaao/Screen+Shot+2014-09-30+at+09.12.43.jpg

    I think you could fix by replacing on /inc/cores/save-post.php:

    $ext = end(explode('.',$image_name));
    

    with

    $exploded = explode('.',$image_name);
    $ext = end($exploded);
    

    Of course the “Warning” messages appear because of the notices, but if you could fix the other issue it would be nice. Thank you in advance. Hope to not bother you: your plugin seems very nice. Here my specifics:

    WP 4.0, PHP 5.4.30

    Manuel ??

    Plugin Author Access Keys

    (@access-keys)

    Hi Manuel,

    Thank you very much for spending your precious time to find out some bugs in our plugin and presenting to us with some solutions.

    We have now resolved those warnings and also released a new update for the plugin.So please update the plugin and keep supporting us.

    Also, if you have liked the plugin then please don’t forget to rate the plugin.

    Thanks a lot. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Notices with WPDEBUG set as true’ is closed to new replies.