32bitwonder
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Upgrade.php gives white screen when upgrading to 2.7I’m getting somewhere, I’ve modified wp-settings.php as follows:
From:
define(‘WPINC’, ‘wp-includes’);To:
define(‘WPINC’, ‘/wp-includes’);I’m now presented with the login page, and I can login, however once logged in, all I see is the header at the top of the page while the rest of the page is blank.
Forum: Installing WordPress
In reply to: Upgrade.php gives white screen when upgrading to 2.7I’m having similar issues with an upgrade from 2.6.5 to 2.7. The site itself is still alive, but I cannot access wp-login.php. Any attempts to load anything within /wp-admin result in a blank screen. I’ve checked my apache logs, but nothing is written to the error.log. Thankfully most of the site is still alive, but I’ve found a few blank pages there as well.
I’ve tried editing/removing .htaccess, purging various wp-* directories and re-copying from latest.tar.gz, re-running upgrade.php etc. No effect. I’ve also removed all plugins, but still nothing but a blank page with wp-login.php
Forum: Fixing WordPress
In reply to: Missing admin css after 2.6 upgradebtw, I have confirmed that this is not a browser cache issue, and both IE and Firefox are equally affected. It’s clear this is a server side pathing issue…
Forum: Installing WordPress
In reply to: Installing CoolPlayer and Audio Player pluginsResolved!
In coolplayer.php, changing 5000 to 0 did the trick as follows:
add_filter(‘the_content’, array(&$CoolPlayer, ‘part_one’), 0);
add_filter(‘the_content’, array(&$CoolPlayer, ‘part_two’), 0);
add_filter(‘the_excerpt’, array(&$CoolPlayer, ‘part_one’), 0);
add_filter(‘the_excerpt’, array(&$CoolPlayer, ‘part_two’), 0);
add_filter(‘comment_text’, array(&$CoolPlayer, ‘part_one’), 0);
add_filter(‘comment_text’, array(&$CoolPlayer, ‘part_two’), 0);Forum: Installing WordPress
In reply to: Installing CoolPlayer and Audio Player pluginsI’ve only just started with this plugin myself and after a bit of reading it’s apparent that I may have been too hopeful in attempting to get it to run first try.
I’ve made the change to use the full path for rpc.use_service, however when I try to use the plugin in a page I get the following error:
::CoolPlayerBLOCK1::
Any ideas?