Re: Link Manager 3.0 release
so anyone who isn't logged in and adds a link will get the text email with the resulting lack of breaks but if they are logged and and accept email, they'll get an html email that looks right.
That's okay with me and hopefully my client won't notice or won't care!
Re: Link Manager 3.0 release
Quote:
Originally Posted by
delia
so anyone who isn't logged in and adds a link will get the text email with the resulting lack of breaks but if they are logged and and accept email, they'll get an html email that looks right.
That's okay with me and hopefully my client won't notice or won't care!
Actually, I've been working on a fix for the past hour or so.
Try this and see if it helps. As always, unzip the file, rename the YOUR_TEMPLATE folder to match your custom folder name then just upload the entire includes folder to your server.
Attachment 2410
Re: Link Manager 3.0 release
yup that fixed it. Should have been able to do it myself but handling 3 shopping carts at one time tends to be a bit confusing in one afternoon!
Thanks again!
Re: Link Manager 3.0 release
Quote:
Originally Posted by
delia
yup that fixed it. Should have been able to do it myself but handling 3 shopping carts at one time tends to be a bit confusing in one afternoon!
Thanks again!
OK thanks.
I'll incorporate this fix into an update for the downloads section.
Re: Link Manager 3.0 release
Quote:
Originally Posted by
clydejones
Actually, I've been working on a fix for the past hour or so.
Try this and see if it helps. As always, unzip the file, rename the YOUR_TEMPLATE folder to match your custom folder name then just upload the entire includes folder to your server.
Attachment 2410
Thanks Clyde, that did it part of it, the email sent when the link approved or disabled is still not formated.
Which files need to be altered to do that?
Re: Link Manager 3.0 release
Quote:
Originally Posted by
TamyA
Thanks Clyde, that did it part of it, the email sent when the link approved or disabled is still not formated.
Which files need to be altered to do that?
Those files are located in the admin folder.
I'll work on those and post a fix in a day or two.
Re: Link Manager 3.0 release
Quote:
Originally Posted by
TamyA
Thanks Clyde, that did it part of it, the email sent when the link approved or disabled is still not formated.
Which files need to be altered to do that?
This should fix the formating for the admin e-mail
Attachment 2448
Re: Link Manager 3.0 release
Hi Clyde - Thanks again for this great mod!
I'm attempting to upgrade from 3.0.2 but am receiving the following syntax error:
Quote:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER TABLE zen_links_to_link_categories CHANGE links_id links_id INT( 11 ) NOT ' at line 1
in:
[ALTER TABLE zen_links CHANGE links_status links_status TINYINT( 1 ) NOT NULL DEFAULT '2' ALTER TABLE zen_links_to_link_categories CHANGE links_id links_id INT( 11 ) NOT NULL AUTO_INCREMENT;]
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.
I've searched the thread for similar posts but have had no luck. (Although I might be using the wrong search term)
Any idea what might be causing this?
Thanks - Tim
Re: Link Manager 3.0 release
Quote:
Originally Posted by
MeltDown
Hi Clyde - Thanks again for this great mod!
I'm attempting to upgrade from 3.0.2 but am receiving the following syntax error:
I've searched the thread for similar posts but have had no luck. (Although I might be using the wrong search term)
Any idea what might be causing this?
Thanks - Tim
try running this from admin -> tools -> install sql patches
Code:
ALTER TABLE `links` CHANGE `links_status` `links_status` TINYINT( 1 ) NOT NULL DEFAULT '2';
Re: Link Manager 3.0 release
Quote:
Originally Posted by
clydejones
Thanks Clyde.