• soleil_levant

    (@soleil_levant)


    Hi,

    With the last releases (WP 3.0.1 and AIOSEO 1.6.12.2), I get a
    warning when the debug mode is on.

    Notice: Undefined index: aiosp_enabled in /var/www/vhosts/xxx/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php on line 766

    The code is :

    if( ($_POST['aiosp_enabled'] == null && $aioseop_options['aiosp_enabled']!='1') || $_POST['aiosp_enabled']=='0'){
    	add_action( 'admin_notices', 'aioseop_activation_notice');
    	}

    and I suppose the problem is coming from $_POST.

    Do you have any idea ?

    https://www.ads-software.com/extend/plugins/all-in-one-seo-pack/

Viewing 8 replies - 1 through 8 (of 8 total)
  • armid12

    (@armid12)

    I have a similar problem.
    At just installed wordpress, I installed this plugin (1,6,13).
    Turn on the debug and got the same error. How do I fix this?

    Does it make sense at all in this plugin?

    Sjroep

    (@sjroep)

    I just updated my All in one SEO package to 1.6.13 and I’m running wordpress 3.0.1. Now I’m not able to access the plugin.php via the dashboard. Anyone?

    @soleil_levant, @armid12 change line 766 to:

    if( (!isset($_POST[‘aiosp_enabled’]) && isset($aioseop_options[‘aiosp_enabled’]) && $aioseop_options[‘aiosp_enabled’]!=’1′) || (isset($_POST[‘aiosp_enabled’]) && $_POST[‘aiosp_enabled’]==’0′)){

    Just to let you know that this problem still exists in 1.6.13.3
    Before finding this topic I’d read
    https://www.ads-software.com/support/topic/plugin-all-in-one-seo-pack-the-plugin-doesnt-work-for-me-on-wp-30?replies=14

    There was a “solution” by @domst3r which disabled half of the logic.
    I reworked this and got similar code to Tavy315

    if ( (isset($_POST['aiosp_enabled']) && $_POST['aiosp_enabled']=='0' ) ||
     (isset($aioseop_options['aiosp_enabled']) &&  $aioseop_options['aiosp_enabled']!='1') ){

    I didn’t bother to check whether or not the index is ever actually set in $_POST

    WIBNI this code was corrected in the official version of the plugin

    Looks like the bug still exists in 1.6.13.4 ??

    if( ( (!isset($_POST[‘aiosp_enabled’]) || $_POST[‘aiosp_enabled’] == null) && $aioseop_options[‘aiosp_enabled’]!=’1′) || (isset($_POST[‘aiosp_enabled’]) && $_POST[‘aiosp_enabled’]==’0′)){

    I have the same problem.

    Notice: Undefined index: aiosp_enabled in /httpdocs/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php on line 766

    Notice: Undefined index: aiosp_enabled in /httpdocs/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php on line 766

    I have the same problem.

    What a ridicolus error not checking the existence of the index first. How is this not yet fixed?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: All in One SEO Pack] About a warning’ is closed to new replies.