Using the CodeIgniter 3 framework with a ready-to-use configuration
PHP version 5.6 or newer is recommended.
It should work on 5.4.8 as well, but we strongly advise you NOT to run such old versions of PHP, because of potential security and performance issues, as well as missing features.
- Unzip the package.
- Upload the
CI-Menu_Class
folders and files to your server. Normally the index.php file will be at your root. - Open the
application/config/config.php
file with a text editor and set your base URL:
// Fill in the file of your project here when you develop locally.
$host_dev = 'CI-Menu_Class';
// Fill in the domain name here when your project is online.
// Example : www.johndoe.com
// johndoe.com
$host_prod = 'your_domain.tld';
- Create a table named
ci_menu_class
and inject the data from theinstall/ci_menu_class.sql
file. - Change if necessary the connection information to your database in the
application/config/database.php
file.