Quote:
Originally Posted by fringehead
I have vbdrupal installed on my forum and I recently upgraded my LDM. Now I am getting this error when I try to run the program:
Fatal error: Cannot redeclare check_url() (previously declared in /var/www/html/blogs/includes/common.inc:693) in /var/www/html/forums/includes/local_links_include.php on line 1171
What can I do about this?
Thanks,
Sean
|
Sean, you will have to edit one or other piece of code to rename function check_url to something else.
The difficulty is one has no control over the ways users combine pieces of software, and it is not straightorward in php to keep function definitions localised.
I've started working on this problem for 2.2.7 by introducing a new naming scheme, but it will be sometime before I am confident that nothing has been broken in the process.
If you are running v 2.2.5, this is where check_url is defined/used:
check_url (local_links_include.php)
local_links_include.php(1171)
local_links_actions.php(412)
local_links_actions.php(445)
local_links_actions.php(702)
local_links_actions.php(837)
local_links_actions.php(875)
local_links_admin.php(849)
If you are running 2.2.6 beta, these are the locations:
check_url (local_links_include.php)
local_links_include.php(1185)
local_links_actions.php(412)
local_links_actions.php(445)
local_links_actions.php(702)
local_links_actions.php(837)
local_links_actions.php(875)
local_links_admin.php(849)