Mohammad Hamdan
Mohammad Hamdan

Reputation: 19

Receiving "403 You don't have permission to access / on this server" in a Codeigniter app

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

Answers (1)

mohammad aghandeh
mohammad aghandeh

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

Related Questions