Reputation: 19
I have make a site in CodeIgniter it was working fine but suddenly some thing happens and when I login with the site it says "You don't have permission to access / on this server." Even if I hit the landing page it stops working. The site is live and hosted by CWP.
Upvotes: 0
Views: 325
Reputation: 157
You sholud change the permission of the directory to 755 which you want to access on browser ...
sudo chmod 755 /path_to_directory
or for directory and sub directories
sudo chmod -R 755 /path_to_directory
Upvotes: 2