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 !
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
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.
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…
Hi,
no that didn’t work.
here is apaste of the php info
http://pastie.org/10289511
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.
(so upgrade the plugin to 0.2.5 and close this topic if it works !)