tymax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't login to my new WordPress site after moving from WordPress.comMaybe delete the .htaccess file then login and save the permalinks again. Make sure you updated the site in the wp_options table
Forum: Fixing WordPress
In reply to: PHP CountSorry im not on my comp, but that should echo out =>
0
1
2
3
…100Change array to range()
Upload your new site to the new host first and set it all up. You can ask your host how to acces the site before you repoint the NS that way u can be sure it is good to go and then u can update the NS and the site wont go down 🙂
Ummm no i cant remeber seeing that maybe it is a plugin you have… give it a shot maybe and see what it does cant hurt 🙂
Forum: Fixing WordPress
In reply to: PHP CountThanks Andrew im on my ph 🙂
And the foreach loop would just be…
foreach($sira as $number) {
echo $number
}I havent used woocommerce but it shouldnt matter. Ill give u a quick overview.
To migrate/move any website first export the wordpress files (just everything in the root, where the config.php file is) and export the database using phpMyAdmin to a .sql file. You might not have to export the db since it is with the same host, you can just update it (see following).
Now if u exported the db you need to create a new database (usually do this in the cPanel) then import the db that you just exported into the new db.
Once the new db has been imported or you had just left the old db where it was (good idea to export it so you have a bk up) u need to update all the old links, replacing the old domain with the new one.
Then upload the sites files to the new domain. If you created a new db you will need to update the config.php file with the new db details.
Once done login to the new website dashboard and go to Permalinks ans click save, this will update the .htaccess file.
Hope that points u in the right direction.
Forum: Fixing WordPress
In reply to: PHP CountInstead of array() use range(0, 100).
O yea and count() wont work use a foreach() loop.