What is /var/www/html? [closed]

In the most shared hosts you can’t set it. On a VPS or dedicated server, you can set it, but everything has its price. On shared hosts, in general you receive a Linux account, something such as /home/(your username)/, and the equivalent of /var/www/html turns to /home/(your username)/public_html/ (or something similar, such as /home/(your username)/www) … Read more

Undefined variable: $_SESSION

Turned out there was some extra code in the AppModel that was messing things up: in beforeFind and afterFind: I don’t know why, but that was what the problem was. Removing those lines fixed the issue I was having.