adaptiman
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Fields Taxonomies] Plugin ConflictsI’m getting the same error. I’m running the same setup (WP 2.7.1 and CFT 1.2.0.1) and have disabled all plugins with the same result.
the query is:
https://domain.tld/?county=Houston
The returned page is blank and the error in the log is:
PHP Fatal error: Cannot access private property CFT_query::$query_vars in /var/www/html/wp-content/plugins/custom-field-taxonomies/main.php on line 291
Forum: Themes and Templates
In reply to: Shortcodes don’t work in excerpts?Which functions.php file? The one attached to the theme?
Forum: Plugins
In reply to: How to convert podPress to podcasting plugin database?I’m trying to patch the importer to work with WPMU. The only obvious change that I can see in the code is to change the name of the postmeta table to follow the WPMU naming convention. So in the file, wherever I see
$wpdb->postmeta
I’ve changed it to
$wpdb->wp_1_postmeta
This is a quick hack that would only run the script for the first blog, but it should work. When I run it, I get the error:
Successfully imported 0 podcasts.
Does anyone else see any other changes that are necessary to get the importer to work with WPMU?
Forum: Fixing WordPress
In reply to: forgotten passwordI found a solution to this. If you go the db interface and reset the password for your user using an MD5 hashing function. You’ll be able to login with the password. The system will automagically do it’s thing to transform the MD5 password into the WP2.5.1 munged version the first time you login, however that happens.
Forum: Fixing WordPress
In reply to: forgotten passwordI’m having the same problem with the message:
Sorry, that key does not appear to be valid.
I setup 2.5.1 cleanly, then imported the db from another wordpress installation with an export command. None of the accounts that I know the passwords for work.
Forum: Developing with WordPress
In reply to: Partial Import WordPress to WordPressIs there a way to execute the import script on the server? I’m getting timeouts when I try to import through the web, but I have access to execute the imports on the server, I just need to know what commands to execute.
Forum: Fixing WordPress
In reply to: WordPress.com Import File too big>>>The number you read on that page is taken from the php configuration of your host, the upload_max_filesize configured in the core php settings on the server you use.<<<
I don’t think this is correct. I have this setting in my php.ini file set to 20M and I’m still getting a 15000K limit error.
Is it possible that there IS a limit coded in to the application somewhere?