Copy link to clipboard
Copied
Can anyone point me at somewhere that explains using local and remote servers? I've set up a local server (using XAMPP) and also a remote dev site on my hosting server. I'm assuming that I can choose to upload files to either the local or remote as I wish (local to test, and remote to publish). Is that the case? Currently I can't seem to upload files to the remote server. When I 'put', the files just go to the test (localhost) location.
Any ideas?
You test locally on XAMPP (or similar), and when ready, upload to your remote server. If using Put doesn't upload to the remote server, it means you haven't defined the Remote Info in your site definition.
The one thing you can't upload through Put is the database. You need to create a database with the same name on your remote server. If you have data that you want to upload, you need to use phpMyAdmin to export it to a .sql file. You then use your remote version of phpMyAdmin to import the data
...Copy link to clipboard
Copied
You test locally on XAMPP (or similar), and when ready, upload to your remote server. If using Put doesn't upload to the remote server, it means you haven't defined the Remote Info in your site definition.
The one thing you can't upload through Put is the database. You need to create a database with the same name on your remote server. If you have data that you want to upload, you need to use phpMyAdmin to export it to a .sql file. You then use your remote version of phpMyAdmin to import the data by browsing to the .sql file on your local hard disk.
Copy link to clipboard
Copied
Tried it and it worked!
Thanks David.