opengeek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts and settings not saved in 2.0Well, I finally fixed it — but had to edit all the files listed below, commenting out the same if statement in all of them like so:
// if (!isset($$wpvar)) {
if (empty($_POST[“$wpvar”])) {
if (empty($_GET[“$wpvar”])) {
$$wpvar = ”;
} else {
$$wpvar = $_GET[“$wpvar”];
}
} else {
$$wpvar = $_POST[“$wpvar”];
}
// }This appears in the following files in /wp-admin folder
admin.php (4 matches)
categories.php (4 matches)
inline-uploading.php (4 matches)
link-add.php (4 matches)
link-categories.php (4 matches)
link-manager.php (4 matches)
moderation.php (4 matches)
options.php (4 matches)
options-head.php (4 matches)
plugin-editor.php (4 matches)
post.php (4 matches)
templates.php (4 matches)
theme-editor.php (4 matches)
user-edit.php (4 matches)Not sure why my 5.0.4 environment doesn’t like the variable variables, or rather, thinks they are always set, but thought I would share my hack to get it working.
Forum: Installing WordPress
In reply to: My Error: This script was not meant to be called directly.I’ve got this same message after moving to a server with PHP 5.0.4, anyone have a solution for this?
Forum: Fixing WordPress
In reply to: Posts and settings not saved in 2.0same here, please help!!!! PHP 5.0.4 anyone?
Forum: Fixing WordPress
In reply to: Please, I need help: Unable to post and setting not savedI am getting this error now after upgrading to 2.0.2, and moving the sites to a new server with PHP 5.0.4 as well. Is there a patch for this? Or can anyone identify the problem?
Forum: Requests and Feedback
In reply to: Plugin Request: Subscribe to Category – Notifier and RSSI use the cat2email plugin as skippy intended, and it works very well, sending blog posts to my mailing list software, which is responsible for the subscriptions. It’s probably not the proper solution if your subscribers are WP users.
BTW, does anyone know if cat2email works with the latest WP, 2.0.2 I believe it is now?
Forum: Fixing WordPress
In reply to: Categories in Alphabetical OrderHas anyone figured out the problem with this, as I cannot get my categories to sort alphabetically in WordPress 1.5, using wp_list_cats() or just list_cats() with the appropriate options. I tried downloading that updated template-functions-category.php file, but no change in behavior. Anyone have ideas if this is a known bug or if anyone has a work-around as of yet?