soundmanjd
Forum Replies Created
-
Forum: Installing WordPress
In reply to: uploaded file could not be movedHi,
It looks like when you installed WP something went wrong, usually you would fix that error by doing the following:
1.From WP Administration, go to Settings > Media
2.Check the “Uploading Files” section and change the “Store uploads in this folder” field to the default setting – wp-content/uploads – and “Save the Changes“
3.Try another upload
4.If it still does not work, change the permissions on the uploads directory to 766 or 777
Let us know how you get on!
Forum: Installing WordPress
In reply to: Error: PHP is not runningHi,
Your web host may need to enable PHP on your server, I would get in contact with them and find out what the story is.
Another option would be to try and add this code to your .htaccess file in your root directory. If there isn’t such a file then create it and upload it.
AddType x-mapp-php5 .php AddHandler x-mapp-php5 .phpLet us know what you web host says.
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostJust tried that plugin on multiple sites of mine and found no error, looks like when the plugin is activated it adds the line into the wp-config file. I had no trouble with this maybe some sort of configuration on the server your files are on.
In most cases I wouldn’t worry about using that plugin, I would only use that plugin if your site is hosted in another country or your database is running really slow.
Good to see your business is back online!
Forum: Fixing WordPress
In reply to: Help: Adding ".html" to category urlyou could try using http://wordpress.org/extend/plugins/html-on-pages/ this plug in adds .html to the end of a page. e.g. example.html
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostGlad to hear your site is back up and running. I find its usually plugins or wp-config that make the WordPress white screen of death! Lut us know if there is anything else.
Cheers.
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostHmmm.. this is quite strange, another thing you can do is rename the plugins folder to plugins2 then try refresh your site, if this doesn’t work then just rename it back to “plugins”.
what I would do is remove the ?> from the wp-config file at the bottom as this has not fixed the issue.
Error Reporting:
If you make a new file using notepad++ and name it tester.php then add the following code<? ini_set('display_errors','1'); ini_set('display_startup_errors','1'); error_reporting (E_ALL);include('index.php'); ?>then upload to your root directory. this should tell you what is wrong with the configuration… Fingers Crossed!
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostcan you check your wp-config.php file to make sure that when you uploaded it it didn’t add any extra characters.
make sure there is nothing after ?>
e.g.if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); require_once(ABSPATH . 'wp-settings.php'); ?> .the “dot” at the bottom will kill your site!
let us know!
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostwhat i would do is log into the database, click search, type in “www.cleanup.co.nz” click “select all” tables, and this will show you a list of tables containing this phrase.
Look for a table called wp-options. Make sure your “siteurl” and “home” are the same.
If you find searching doesn’t bring anything up in the wp-options tab that might be your problem! easy fix though you just have to insert the correct URL into both these tables.
Keep us posted!
Forum: Fixing WordPress
In reply to: Problems moving a wordpress site to another hostHave you looked at your url structure within phpMyAdmin? Could be some conflicts?
Forum: Fixing WordPress
In reply to: links within self hosted site going to old siteThe codex has a great resource about moving WordPress.