Internal server error - grrrr

I’ve transferred an app from my local linux pc to a host but get the dreaded internal server error…

It works fine locally. I also have another app on my host which works fine.

The yii framework and app source code is below the public_html folder

/public_html

/public_html/myapp/

/public_html/otherapp/

/yii/framework

/yii/myapp/protected

/yii/otherapp/protected

Permissions are 777 for

/yii/myapp/protected/runtime

and

/public_html/myapp/assets

Any ideas?

Add a file log route and examine the log file.

/Tommy

I have no idea what happened but its working now :blink:

Ah… it might have been a programming feature :rolleyes:

I had this in the db configuration




'initSQLs'=>array("set time_zone='+00:00';set names utf8;"),



which complained about buffering

instead of




'initSQLs'=>array("set time_zone='+00:00';","set names utf8;"),



which doesn’t