sticker wrote: » What the upside of using Desktop Server at all?
seamus wrote: » 1. It allows you to screw around - make changes and test changes without affecting your live site. If you make a balls of something, delete a file by accident, etc, then there's no panic to get your live wordpress site back up because it's happily unaffected. 2. You can work on it without an Internet connection. In any environment you typically have 3 stages (though big sites often have more); - Development - lives in an environment like Desktop Server where you can make and test changes and reset them again without affecting anything - Test/PreProd - typically lives online or at least in the same environment as your live site. Changes are copied from development to here. This allows you to test not only the changes you've made, but also the process for moving those changes from Dev into a new environment - Live/Prod. Once you're satisfied that the test site works the way you want, you backup the live site and push the changes. There should be no surprises, because the purpose of the test site is to find surprises. Of course, if this is just a hobby or a small site, a test environment may be overkill. But if you value the site you're building in any way, then you need a development environment where you make all your changes separate to your live one.
seamus wrote: » I'm afraid I don't know the specifics of the software that you're using. In general it is basically just a matter of exporting the offline one and importing it into the online one. If it's MySQL, then Desktop Server should include a backup/export option, and the Blacknight PhpMyAdmin interface includes an import option.
seamus wrote: » For MySQL, it's basically a text file with a .sql extension. It may also zip the file by default after exporting (makes it smaller). PHPMyAdmin will take either the raw text file or the ZIP file.
shane7 wrote: » It should be pretty straightforward. In localhost on your desktop server you should see an option for php-myadmin. Click that and it should take you to a list of your databases. Once you can see your databases click on the one you want to export. On the tabs across the top you should see an option to export. Click the export tab and scroll down to go and click it. That will download the sql file to your download folder. You now do the opposite on your blacknight server. Go to database you have created in phpmyadmin and go to the import button. Browse to the .sql file in your download folder and upload. You then just need to go to the config file and edit your username and password. If you get an error after you have uploaded the .sql file its usually a mistake in the config so check and double check you are using the right database name, username and password