Codeigniter: Symlinks for shared hosting on hostgator
<?php symlink('/home/username/ci/system', '/home/username/public_html/system'); ?>
<?php symlink('/home/username/ci/application', '/home/username/public_html/application'); ?>
<?php
/*
* in your index.php file
* assumes index.php is in public_html
*/
$system_path = 'system/';
$application_folder = 'application';
?>