Codeigniter on Ubuntu no welcome message

一笑奈何 提交于 2019-11-29 16:58:19

try to change permissions:

sudo chmod 777 -R /var/www/Codeigniter

The Problem is rights on the 'var/www' folder. This can be fixed by the terminal or when unziping.

When unziping from the terminal like below it works

    sudo unzip CodeIgniter_2.1.4.zip -d /var/www/"desired folder"

Could also be fixed by changing rights after unpacking with GUI interface..

    sudo chmod 755 -R www

And to be able to use Netbeans as non sudo user change the folder owner

    sudo chown 'user-name' 'folder-name' 

try to remove .htaccess from the root of myproject

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!