F_DIR is defined in framework directory.
define('F_DIR', dirname(__FILE__).'/');
Why to change this? if for example i change path in autoload function to some which doesnt exists than application "works" and shows error.. e.g 'class UserUtil doesnt exists'.. but if path is correct than it shows internal error :S
@, if i delete __autoload() function than there is no 'internal server error'..
I tried to change path in __autoload(), tried absolute and relative path, but both doesnt work.. I tried to write autoload in index.php. I even try some path that doesnt exists, if that is the case than it doesnt show server error but expected php error (see previous example).
Do you know why this (internal server error) occurs, what can cause it, and what would you check..?
Thanks, I really cant think of anithing else...