tags:

views:

73

answers:

2

Hi

Fatal error: Cannot redeclare config() (previously declared in D:\xampp\htdocs\cakephp-trial\cake\basics.php:59) in D:\xampp\htdocs\cakephp-trial\cake\basics.php on line 76

I am getting this error Please help

Thanks.

A: 

It looks to me like you have created a global function called config somewhere. config is already declared in global space by cakephp in the file basics.php.

Either rename your function or move it into a class.

Leo
A: 

You create two config() function in basic.php. could you post you basic.php code so i will give you right ans.

Sanch