Cakephp 1.3.6 Installation step
1. Download cakephp 1.3.6 version(latest)
2. Extract folder into your root directory
3. Change app->config/core.php file line no. 204
Configure::write('Security.salt', 'DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi');
change 1 character in the salt and you’ll be all set!
4. Change app->config/core.php file line no. 209
Configure::write('Security.cipherSeed', '76859309657453542496749683645');
change the number in the cipherSeed and you’ll be all set!
5. App/config directory filename database.php.default Rename to database.php
create databse and change into database.php file hostname,login username,password and database name and prefix if you want
var $default = array('driver' => 'mysql', 'connect' => 'mysql_connect', 'host' => 'localhost', 'login' => 'username', 'password' => 'password', 'database' => 'cakephp', 'prefix' => '');
- Editing this Page
To change the content of this page, create: APP/views/pages/home.ctp.
To change its layout, create: APP/views/layouts/default.ctp.
You can also add some CSS styles for your pages at: APP/webroot/css.
7. Your index.php page as default.ctp is running now
Speak Your Mind