CakePHP: site displays fine on local server, not on remonte

I'm trying to understand why I have so many errors on the remote server but on local server everything's fine.

Any idea why I'm getting all of these error?

Thank you in advance!

Upvotes: 0

Views: 155

Answers (2)

Ok guys, I have no idea what generated these issues but after changing to a new hosting the issues disappeared. Always check online for hosting reviews to make sure it's a good one or you'll end up with some odd things happening on your website. Thanks y'all for your help and time.

Upvotes: 0

argamentor
argamentor

Reputation: 148

looks like there's a mess with the cache files. Try disabling the cache in your remote app. Do this in /app/Config/core.php Look for the following:

//Configure::write('Cache.disable', true);

and remove the // to make it works.

Best,

Upvotes: 3

Related Questions