Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author grosbouff

    (@grosbouff)

    Hi, it’s hard to help without any informations…
    The plugin works very well for most people, there must be something particular about your setup.

    * What is your current configuration ? (WordPress version, plugin version, PHP version, phpinfo(), Apache version)
    * enable debugging in WordPress by editing wp-config.php, and see if errors are shown

    define('WP_DEBUG', true);
    define('WP_DEBUG_DISPLAY', true);

    Let’s see what’s happening then !

    Thread Starter rlparker81

    (@rlparker81)

    Hi,

    I’m using the latest version of wordpress and the plugin (only downloaded it all last week)

    I’ve turned on debug and I get this error when I go to tools> pinterest importer

    Fatal error: Using $this when not in object context in /var/www/html/development/mkm-blog/wp-content/plugins/pinterest-importer/pinim-board-class.php on line 132

    Plugin Author grosbouff

    (@grosbouff)

    Ok, that is the same issue than in this ticket.

    I suspect a PHP version or sessions problem.
    Could you create a blank PHP file containing this code :

    <?php phpinfo(); ?>

    Upload it on your server, access it and copy/paste the result onto pastie.org ?

    Thanks.

    Plugin Author grosbouff

    (@grosbouff)

    Could you also try replacing line #132 in pinim-board-class.php

    return $e['id'] == $this->board_id

    with

    return $e['id'] == self::$board_id

    I don’t think it will work but that is something to try…

    Thread Starter rlparker81

    (@rlparker81)

    Hi,

    no that didn’t work.

    here is apaste of the php info

    https://pastie.org/10289511

    Plugin Author grosbouff

    (@grosbouff)

    OK @rlparker81.
    I found out that indeed, the plugin was crashing when using PHP < 5.4 (which is your case since you use PHP 5.3.3.)

    I managed to fix that bug.
    It should now work for you !
    Tell me if it’s OK and don’t forget to make a donation if you like the plugin (and the support :))
    Thanks.

    Plugin Author grosbouff

    (@grosbouff)

    (so upgrade the plugin to 0.2.5 and close this topic if it works !)

    Thread Starter rlparker81

    (@rlparker81)

    works now, thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘blank screen once logged on’ is closed to new replies.