Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter NomadCF

    (@nomadcf)

    Glad I could help!

    Thread Starter NomadCF

    (@nomadcf)

    Found a fix, while I still haven’t found the true root of the issue heres what I have. And a fix.

    At some point

    $twitget_settings

    is getting set to

    1

    . And once this is done you can not then make

    $twitget_settings

    an array with out either unsetting it or redeclaring it.

    In other words by the time you start trying to set your vars like
    $twitget_settings['twitter_username'] = stripslashes($_POST['twitget_username']);

    You can’t because it’s already declared as an int (1), So the fallowing code adjusts for this.

    Change

    function twitget_settings() {
    
                    $twitget_settings = get_option('twitget_settings');
                    $message = '';

    to

    function twitget_settings() {
    
                    $twitget_settings = get_option('twitget_settings');
                    $message = '';
                    if ( is_array($twitget_settings) === false ) {
                     unset($twitget_settings);
                    }

    Forum: Plugins
    In reply to: [Twitget] PHP Warnings
    Thread Starter NomadCF

    (@nomadcf)

    Also the 1st char from the custom html box, replaces ALL other input field values after an attempted “save”;

    NomadCF

    (@nomadcf)

    When activating your plugin my wordpress page no longer loads any part of the page beyond the header.

    Lastest version of WP & all plugins are up2date. Here is a list of plugins.

    Add to Any: Share/Save/Bookmark Button .9.8.9.1
    Akismet 2.2.3
    All in One Adsense and YPN 1.82
    All in One SEO Pack 1.4.7.3
    Global Translator 1.2.1
    Google Analyticator 2.40
    Google XML Sitemaps 3.1.2
    Parallel Load 1.1
    Sidebar Login 2.1.7
    Sociable 3.0.4
    StatPress Reloaded 1.5.12
    WordPress.com Stats 1.3.7
    WordPress Database Backup 2.2.2
    WP-SpamFree 1.9.8.7
    WP Super Cache 0.9.1

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