Quote:
Originally Posted by tntdesigns
Fatal error: Cannot redeclare func_mkdir() (previously declared in /home/tntdance/public_html/store/admin/html_catalog.php:123) in /home/tntdance/public_html/store/include/func/func.files.php on line 660
|
Seems like your tring to redefine an existing function, on one of the function declerations I would use:
Code:
if (!function_exists('func_mkdir') {
...
}
To prevent the error, or simply remove one of the older functions.