Skip to main content
Inspiring
December 6, 2006
Question

general question about uploading web apps

  • December 6, 2006
  • 1 reply
  • 266 views
i have my site completed and it works on the testing server without a glitch. i've uploaded static sites before without a hitch, but i'm not so certain about web apps. seems when you upload the site with dw, it uploads the html and php . . . but then there are the tables from the db. uploading them and getting them to hook up all over again . . . how do you do that? can someone review the steps please. thanks.
This topic has been closed for replies.

1 reply

Inspiring
December 6, 2006
the easiest way is exporting the db using a tool like phpMyAdmin and
importing it on the server. of course, you'll need the tool in both servers

hconnorjr wrote:
> i have my site completed and it works on the testing server without a glitch.
> i've uploaded static sites before without a hitch, but i'm not so certain about
> web apps. seems when you upload the site with dw, it uploads the html and php .
> . . but then there are the tables from the db. uploading them and getting them
> to hook up all over again . . . how do you do that? can someone review the
> steps please. thanks.
>
hconnorjrAuthor
Inspiring
December 6, 2006
so the steps go something like this:
1. find db to upload from testing server
2. go to new server. find the directory that is used for databases (presumably one that the admin has already set up for apache/php to look for db tables. make a db of the same name as in your testing server.
3. use phpMyadmin on the testing server and make backup of your db. since its new for the production server use the default values. in this step the db can also be backed up by tables if its large and upload time might be an issue.
4. go the the new server. with the phpMyadmin on that server, name a database with the same name as the one on the testing server. use IMPORT. go to the browse button and find the db on your testing server and IMPORT it.

small question: i can see the files on the remote server from dw when its properly set up, but does phpMyadmin allow me to see files on my testing server without some configuration?