A simple content management system.
- Install Apache, PHP, and MySQL. This will depend on the operating system you are running.
- Run the
./migrate.shscript to set up the database. - Modify your VirtualHost file like so:
<VirtualHost *.80>
# ...
SetEnv DATABASE_DRIVER mysql # Required: Database PDO driver
SetEnv DATABASE_HOST localhost # Required: Database host url
SetEnv DATABASE_USER root # Required: Database user
SetEnv DATABASE_PASSWORD password # Required: Database password
SetEnv DATABASE_SCHEMA database # Required: Database schema
# ...
</VirtualHost>
- The default credentials for the default administrator account are
[email protected]andpassword. It is highly recommended to change the password for this account, or archive this account and create a new administrator account.