Maybe this is a silly question.

I have built the site on my local server, and now I have to "upload " it . How can I do it actually without rebuilding it on the host server?

Thx!

Comments

vm’s picture

using a tool like phpmyadmin
open the database
empty watchdog and cache tables

export the database

import the database on new host using their db tool. Likely also phpmyadmin
after database is imported, move all files and folders from local machine to new host and open settings.php and alter $db_url to match the new database

test

pilott’s picture

Thx a lot! I will try that!