• Hi
    I have developed a plugin module for custom user login after googling.
    It working fine.I save tested it on many projects.but when I activate “Newsletter” plugin ,it shows below notice:

    Notice: Undefined index: subscribe_wp_users in /var/www/html/demo/wp-content/plugins/newsletter/subscription/subscription.php on line 1134
    I tried to resolve it,but failed.How ever it can be hide by disabling debug mode from “wp-config.php” file.I check each function & variable of both plugin,did not find any similarity.

    Please assist me

    https://wordpress.org/plugins/newsletter/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Stefano Lissa

    (@satollo)

    It’s only a notice, nothing of so bad, it must be checked at our side.

    Thread Starter bheemvimal

    (@bheemvimal)

    Hi Stefano
    When I suppose to get assistance from your side.I need help urgently.

    Plugin Author Stefano Lissa

    (@satollo)

    Hi, if you cannot wait the patch, just try to enter the plugin subscription steps panel and save the options.

    Thread Starter bheemvimal

    (@bheemvimal)

    Hi Stefano
    I would like to one favor from you that i have developed a custom registration plugin module in wp.I works in localhost properly,but if when I upload it on live server ,then dashboard shows blank page,ever web page becomes blank.After deactivate it via ftp site works well.
    Where I made mistake in development.,what are possible causes behind it

    Thanks

    Plugin Author Stefano Lissa

    (@satollo)

    Hi, it can be an incompatibility of PHP version, or the use of <? instead of <?php. You should look at the error log of the server, if there is a conflict, for example, for an already defined function, you can be able to see it.

    Eventually start to put a “return” in your main file line by line until you discover the line giving problem.

    Another option, if you cannot access the standard error log of the server, is to add those lines in your wp-config.php file:

    define(‘WP_DEBUG’, true);
    define(‘WP_DEBUG_LOG’, true);
    define(‘WP_DEBUG_DISPLAY’, false);

    and you’ll find a debug.log file inside the wp-content folder which can give you some information about what’s going on.

    Stefano Lissa.

    Thread Starter bheemvimal

    (@bheemvimal)

    Hi Stefano
    I have enable debug mode true in “wp-config” file ,it doesnot show any warning,notice ,error etc.Only blank page shows.

    How incompatibility of PHP version can be handle?

    Thanks

    Plugin Author Stefano Lissa

    (@satollo)

    But even the debug.log file is empty?

    Thread Starter bheemvimal

    (@bheemvimal)

    Hi
    I also found debug.log file is empty
    1.How can I find main reason of conflict?
    2.How php version incompatibility can be resolve?
    please guide me

    Thanks

    Plugin Author Stefano Lissa

    (@satollo)

    You must debug your code. Just stop it somewhere and then change the stop point until you find the offending line of code.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘conflict with other plugin’ is closed to new replies.