It looks like you're new here. If you want to get involved, click one of these buttons!
The cms is pointed on
Options +FollowSymLinks
RewriteEngine On
RewriteBase /cms/
Order Deny,Allow
Deny From All
# Allow asset folders through
RewriteRule ^(fuel/modules/(.+)?/assets/(.+)) - [L]
# Protect application and system files from being viewed
RewriteRule ^(fuel/install/.+|fuel/crons/.+|fuel/data_backup/.+|fuel/codeigniter/.+|fuel/modules/.+|fuel/application/.+) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [L]
# Prevents access to dot files (.git, .htaccess) - security.
RewriteCond %{SCRIPT_FILENAME} -d
RewriteCond %{SCRIPT_FILENAME} -f
RewriteRule "(^|/)\." - [F]
Options -Indexes
Usually you are very fast with responses. But just to signify the urgency, I have a demo lined up. Thanks.
site.com/cms/
Comments
However, I got the issue and was about to comment here for anyone else.
I have been working on a windows machine which handles the filenames very well, small or captial it understands it well.
But when shifted to linux - Filename becomes very important as Healthcare and healthcare are two different files.
Upon search I cam accross this URL - https://github.com/daylightstudio/FUEL-CMS-Blog-Module/issues/19 which gave emphasis on filenames and hence I tried changing all my model filenames to start with Caps. Also the require_once command had Changed it to This worked!
Still will like admin to checkout http://docs.getfuelcms.com/modules/tutorial#highlighter_8425 the documentation which says to create model without caps.