Welcome Guest, Not a member yet? Register   Sign In
How to give permission
#1

I'm a newbie to frameworks and i tried to use codeigniter but the page on the browser says i don't have permission to access it. How can i solve this? Thanks.
Reply
#2

I don't know what server environment you run but there are 2 things to try

1 Check your file permissions. Make sure your files are visible to your server. The server may not have permission to serve them.

2 Maybe try changing your root .htaccess file to:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

see https://codeigniter.com/user_guide/general/urls.html for details
Reply
#3

This is really only an issue on linux systems, chmod +x 777 the entire CI directory. Once you know you got it working you can change it to 644 permissions and only set the relevant folders to 777 when and where you need.
Practical guide to IgnitedCMS - Book coming soon, www.ignitedcms.com
Reply
#4

I suggest change your .htaccess file .
Sercan YANBULOGLU
SEO links REDACTED, per forum policy
Reply




Theme © iAndrew 2016 - Forum software by © MyBB