How to transfer the project to the server

I am new to programming. The company I work with has entrusted me with the task of developing a standard project that contains the participants login and forum. I developed it using mysql, php and apache server. Therefore, my question is: "How to transfer it to the LMS server. Do I have to transfer the project from the server system itself or can I do this through my computer via the Internet?" My question may look very simple, but I'm still at the training stage. Please help me. Thanks..

+4
source share
2 answers

To connect the target server via FTP, you need an Internet connection.
You will also need to connect MySQL to pull the database dump to the server.

Learn more about deployment strategies here .

0
source

To transfer all the files you need the ftp program and the login information for the ftp server on the LMS server. And for mysql it depends, the easiest way is if you have the phpMyAdmin interface for it, because you can find it @ http://thesite.com/phpMyAdmin or through the admin panel. Then you copy (or export) the mysql database and import it to the new server. How you do it, it pretty much depends on the platform and platform.

Hope this helps.

To export mysql without phpMyAdmin: http://www.mydigitallife.info/how-to-backup-and-restore-export-and-import-mysql-databases-tutorial/

0
source

Source: https://habr.com/ru/post/1443922/


All Articles