Yes, I did.
Printable View
Yes, I did.
Honestly, I have no idea.
I uninstalled the contribution I installed on one of my sites. (deleted all related files in both the admin and includes.
downloaded the contribution from the downloads section
did a fresh install from the New_install folder from the contribution
and haven't experienced and can't duplicate any of the problems you described.
You should be able to use this to uninstall everything in the database.
just copy and paste it into admin -> tools -> install sql patchesCode:#Links Manager SQL Uninstall
# For Zen-Cart 1.3.7
# Last Updated: 28/02/2007
SET @configuration_group_id=0;
SELECT @configuration_group_id:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title= 'Links Manager'
LIMIT 1;
DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
DELETE FROM configuration WHERE configuration_key = 'DEFINE_LINKS_STATUS';
DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;
DROP TABLE links;
DROP TABLE links_description;
DROP TABLE links_status;
DROP TABLE links_to_link_categories;
DROP TABLE link_categories;
DROP TABLE link_categories_description;
You'll have to manually delete these files
admin/link_categories.php
admin/links.php
admin/links_contact.php
admin/includes/boxes/extra_boxes/links_extras_dhtml.php
admin/includes/extra_datafiles/links_manager.php
admin/includes/functions/extra_functions/links_manager.php
admin/includes/languages/english/links.php
admin/includes/languages/english/link_categories.php
admin/includes/languages/english/links_contact.php
admin/includes/languages/english/extra_definitions/links.php
-------
includes/extra_datafiles/links_manager.php
includes/functions/links.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/links_manager_defines.php
includes/languages/english/YOUR_TEMPLATE/links.php
includes/languages/english/YOUR_TEMPLATE/links_submit.php
includes/languages/english/YOUR_TEMPLATE/popup_links_help.php
includes/languages/english/html_includes/define_links.php
includes/languages/english/html_includes/define_links_submit.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_links.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_links_submit.php
includes/modules/pages/links
includes/modules/pages/links_submit
includes/modules/pages/popup_links_help
includes/modules/pages/redirect_links
includes/modules/link_listing.php
includes/modules/YOUR_TEMPLATE/link_listing.php
includes/modules/sideboxes/YOUR_TEMPLATE/links_box.php
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_links_select.php
includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
includes/templates/YOUR_TEMPLATE/templates/tpl_links_submit_default.php
includes/templates/YOUR_TEMPLATE/popup_links_help
includes/templates/YOUR_TEMPLATE/css/links.css
includes/templates/YOUR_TEMPLATE/css/links_submit.css
Clyde,
Thanks a million,
Back up and running.
The servers php database was 4.2 version.
Thanks Clyde - that did the trick! :clap:
One question for you, I use Link2me.com as my links exchange service. When I add a link to my site from there, it doesn't seem to be able to verify the link exists on my links page. Is this just a problem with the links company I'm using, or are the links unable to be verified?