redactuk
Forum Replies Created
-
Anyone else getting this?
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work with wordpress 4.0Ok guys, I’ve got default code working with the following:
elseif($userid > 0 && $userid != $user->ID)change to
elseif($userid > 0 && $userid != get_current_user_id())Basically I can’t see how $user->ID ever returned anything as $user is the phpbb user class and not the WordPress one. If anyone can think of reason why above is still incorrect please let me know.
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work with wordpress 4.0.ArMinO. I have a VERY customized version i.e. I’ve dmade a lot of other changes to it, so possibly that’s why mine works. It’s also on a local test server currently so I can’t give you access.
The only advice I can offer is turn on debug and go through and correct all the issues reported. In particular use a php debugger to try and find at what point it fails. Sorry I can’t be of more help.
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work with wordpress 4.0There are a few others you might need to correct. Set define(‘WP_DEBUG’, true); in wp-config.php then you can see all them all.
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work with wordpress 4.0Ok, there’s a more recent thread here:
http://wordpress.org/support/topic/error-messages-with-207?replies=4
The change that resolved the ‘are you sure’ messages was changing in file wp_phpbb_bridge.php:
elseif($userid > 0 && $userid != $user->ID)elseif($userid > 0 && property_exists($user,'ID') && $userid != $user->ID)however I also made the change suggest to define STRIP
Forum: Plugins
In reply to: [WP phpBB Bridge] Doesn't work with wordpress 4.0I got the same, but fixed most by following this topic:
http://wordpress.org/support/topic/errors-generated-when-bridge-activated?replies=7Note: Not all of those relevant, main one was commenting out the include for registration.php
Forum: Installing WordPress
In reply to: Upgrade 3.9.2 to 4.0 – are you sure you want to do this?sorry, above as per above I misread wp-settings.php for wp-config. You shouldn’t ever edit wp-settings.php. My apologies
Forum: Installing WordPress
In reply to: Upgrade 3.9.2 to 4.0 – are you sure you want to do this?oops my mistake. It’s in settings not config.. doh. So don’t comment it out. Maybe advanced-cache is being called from your theme?
Forum: Installing WordPress
In reply to: Upgrade 3.9.2 to 4.0 – are you sure you want to do this?The others looks like your theme is using some depreciated functions, though those on their own should not cause a problem when debug turned off, though I would definately upgrade theme if you can to ensure newer functins are being used.
Forum: Installing WordPress
In reply to: Upgrade 3.9.2 to 4.0 – are you sure you want to do this?Regardless of whether you have/had one, looks like there is a reference to it in your config file on line 65. Try commenting that out.
Forum: Installing WordPress
In reply to: Upgrade 3.9.2 to 4.0 – are you sure you want to do this?Thanks Ross.
What I also forgot to do turn on define(‘WP_DEBUG’, true); in w-config.php. After that warnings indicated the plugin with the issue. So I’ve now just removed plugin folder temporarily. After that WP worked, so now at least I know which plugin it is so I can debug/fix.
Forum: Plugins
In reply to: [Simple Links] Set nofollow by location?Hi Mat, thank you very much for you helpful response, appreciated.
Forum: Themes and Templates
In reply to: Theme Unit Test FailingTrying to import this test data still failing for me. Anyone else?
While it seems Yoas hast given up on this plugin, through sheer frustration I backed up a client’s site and installed on a demo site and then installed the ‘development’ version listed for this plugin – and my category linking issues seem fixed!
I guess it being a development version we don’t know what else in there is not working correctly or may case problems, so use at your own risk.
I think there is also a bug with application of Rel. For my test gallery it’s defaulting to value 1 for first image, then no value for remaining values. It also seems to be ignoring any rel parameter I add to shortcode.