All set using the deault maximum settings.
admin -> configuration -> maximum values
Search Results Per Page
Prev/Next Navigation Page Links
Printable View
That did it...Thank you
Hi There Clyde
its me again, I'd like to reinstall Links Manager fresh again and I want to clear the db of the Links manager SQL Patches. Is there an unintall SQL? Would you say that all the SQL entries have links in their description?
How ca I do it?
Can you help?
Thanks
Franco
[QUOTE=francocauter;461575]Hi There Clyde
its me again, I'd like to reinstall Links Manager fresh again and I want to clear the db of the Links manager SQL Patches. Is there an unintall SQL? Would you say that all the SQL entries have links in their description?
How ca I do it?
Can you help?
Thanks
Franco[/QUOTE
Yep,
Just copy and paste the following in admin -> tools -> install sql patches and click the send button
NOTE: a fresh install will delete the links you already have entered in the database because the install sql will delete your current links manager tables and then install new empty tables.Code: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;
INSERT INTO `configuration` VALUES ('', 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, '2006-09-04 09:22:39', '2006-09-04 09:22:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, '2006-09-04 09:22:39', '2006-09-04 09:22:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, '2006-09-04 09:22:39', '2006-09-04 09:22:39', NULL, NULL);
INSERT INTO `configuration` VALUES ('', 'Image Handler Version', 'IH_VERSION', '2.0', 'This is used by image handler to check if the database is up to date with uploaded image handler files.', 0, 100, NULL, '2007-09-03 12:30:43', NULL, 'zen_cfg_textarea_small(');
Can I just upgrade to your latest version without deleting my existing links?
I see borzoid has the links listing exactly the way I want it on www.DogsChoice.com
How can I set this that it shows like this on the links listing?
Title 1
description text 1
Title 2
description text link 2
install the fix included in this post
instructions necessary to accomplish what you want are also located in the referenced post.
This fix and a few others will be included in the next update to Links Manager.
Hi Clyde,
Just noticed an error when trying to add new link categories.
If the sort order field is left blank (which it is by default) then the following error message is displayed.
A work-around is to enter a number into the sort order field.Quote:
1366 Incorrect integer value: '' for column 'link_categories_sort_order' at row 1
in:
[insert into zen_link_categories (link_categories_sort_order, link_categories_status, link_categories_date_added) values ('', '1', now())]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Maybe this field should be set to '0' by default?