Robin Castlin
Robin Castlin

Reputation: 10996

Wampserver cakephp 1.3 Strict standards error

I'm currently growing crazy over my new Wampserver at the moment. I switched to a new computer and installed Wamp and moved my cakephp 1.3 folder to the C:\wamp\www folder, and all I get is this error:

my error message

Here's some facts I'm aware of and stuff I'm already tried:

Does anyone know what I'm missing? It's frustrating to go through 20 guides and answers whom should solve the problem but doesn't.

The errors still exists, and the rest of the site works as intended.

Any help is greatly appreciated!

Upvotes: 1

Views: 2449

Answers (1)

ADmad
ADmad

Reputation: 8100

Upgrade to the latest 1.3 stable release (1.3.15), it already sets error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT); internally.

Edit: Just to clarify further you must be using an older 1.3 release which sets error_reporting(E_ALL & ~E_DEPRECATED); in the core thereby overriding the reporting level you set in your php.ini

Upvotes: 6

Related Questions