Version 3.04 or 3.5?
Always install the latest final version. This is the most secure version you can get. Older tutorials and guides should still mostly apply. If they don’t you will find enough replacements that are up to date.
Always install the latest final version. This is the most secure version you can get. Older tutorials and guides should still mostly apply. If they don’t you will find enough replacements that are up to date.
I for instance have MAMP pro running with custom development URLs like project.dev. When I created the one-click installation of WordPress through MAMP, it automaticly entered the port-number into WordPress as well. I don’t think WordPress likes when the port-number is :80 which is standard. Removing the port-number from WordPress Address and Site Address did … Read more
Take a copy of your data file and store it safely just in case you mess up – it’s easily done. Make sure it is labelled as hacked so you can’t accidentally use it anywhere. Look in your SQL for a section starting with: INSERT INTO `wp_posts` VALUES and eventually ending with a semicolon. This … Read more
I’m pretty sure that this can’t be done. I think WP multisite can only control blogs that are underneath it – which is why you’d have to install WP at the root. I was once looking to do the same thing, and unfortunately all my research pointed to “no” being the answer.
Error establishing database connection Can Only mean one thing and that is an Error establishing database connection, check your wp-config.php again and see that the database settings is correct and also make sure that your database user as permission on the database server.
I found out what is wrong. The tutorial says to remove all double quotes ” and replace them with spaces or backticks `, but some values in the mentioned tables have double quotes around them. This one for example: INSERT INTO “wp_usermeta” VALUES(14,1,’wp_capabilities’,’a:1:{s:13:”administrator”;s:1:”1″;}’); So replacing that with backticks causes malfunction. Replace only double quotes around … Read more
Import sql data from a large file when installing plugin
Looks like Google App Engine doesn’t support WordPress 3.7.1 (something that’s not documented anywhere). Downgrading to WordPress 3.5.1 (the version mentioned in Google’s instructions) made it work – http://localhost:8080 was forwarded to WordPress Install page.
WordPress Multisite – Create Default Post and New Category On New Site Install
You need to set these too: define(‘AUTH_KEY’, ‘put your unique phrase here’); define(‘SECURE_AUTH_KEY’, ‘put your unique phrase here’); define(‘LOGGED_IN_KEY’, ‘put your unique phrase here’); define(‘NONCE_KEY’, ‘put your unique phrase here’); define(‘AUTH_SALT’, ‘put your unique phrase here’); define(‘SECURE_AUTH_SALT’, ‘put your unique phrase here’); define(‘LOGGED_IN_SALT’, ‘put your unique phrase here’); define(‘NONCE_SALT’, ‘put your unique phrase here’); Please … Read more