I am trying to setup the php yii-framework on a virtual server (ubuntu).
- The yiiframework is placed in
/var/www/yii-1.1.7/framework/
. - The webroot is
/var/www/vhosts/domainname/httpdocs/
. - The command
yiic.php webapp /var/www/vhosts/domainname/httpdocs/appname
successfully creates the directory with the corresponding appname in the desired webroot folder. - The pages in the folder do however result in a 500 internal Server Error.
Since the framework folder obviously has the necessary rights to write the demanded files into the webroot (I double checked that all the files are created as expected) I suspect it must be some sort of issue that comes from the webroot not having the needed access to the overlying framework directory.
Does anybody have any idea how to change the corresponding config files so that this can work?