I am making an application that is working perfectly on the local server mounted with wampserver but when I deploy the application on my linux server I cannot log in.
The error and debug logs do not register anything, I have no idea what may be happening.
I am using the basic login system, identical to the one shown in the CakePHP tutorial, this is the link:
If that doesn’t work, check for case mismatches in file and class names. Windows is a non-case-sensitive file system, so Userscontroller.php and UsersController.php are the same file, for example, but they’re different things on Linux.
Doesn’t sound much like a permission error to me, honestly. I’d do a search for Configure::read('debug') in your code, and see if there’s anything behaving differently in debug vs release mode. That seems like the most obvious possibility.