- Upload Project Files: Copy the entire project folder to your website’s root directory.
- Set Up the Database:
- Create a new database on your server.
- Import the appropriate SQL file:
- For MySQL: Download SQL file
- For PostgreSQL: Download SQL file
- Configure Database Connection:
Open the /core/.env file and add your database connection details as shown below:
For MySQL:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=smartsite_db
DB_USERNAME=root
DB_PASSWORD='password'
For PostgreSQL:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=smartend_db
DB_USERNAME=root
DB_PASSWORD='password'
- Disable Installation Redirect:
Rename /core/storage/_installed to installed to prevent redirection to the installation wizard.
Congratulations! Your SmartSite CMS installation is now complete and ready to use.