Page 26 of 151 FirstFirst ... 1624252627283676126 ... LastLast
Results 251 to 260 of 1501
  1. #251
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by Phil020782 View Post
    I have just installed testimonial manager for the first time (from downloads section), all seems to be working fine until it comes to review and update testimonials. When no country is added it is automatically filled with the customers email address, which is not a problem it can be deleted when updating.

    But when i press update i get the following error:


    From a previous post i think i can fix this by adding a last_update field to my database table. Before i try it can someone tell me if the following code is correct:



    i don't know SQL at all really. I would be very grateful for any help anyone could offer me with this.

    Thanks
    Yes, Run that statement from your admin -> tools -> install sql patches

  2. #252
    Join Date
    Jul 2007
    Posts
    156
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Thanks clyde that worked perfectly, fantastic contrib btw.

  3. #253
    Join Date
    May 2007
    Location
    Perth, Australia
    Posts
    54
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    Try running just this line:

    Code:
    INSERT INTO `testimonials_manager` VALUES (1, 'Great', '', 'Perfect Designing', '', 'This is just a test submission to show you how it looks, great, eh?', '[email protected]', NULL, NULL, NULL, 1, 1, now());

    Clyde,

    Thanks for your help.

    I ran this line and everyting seemed fine: I could add testimonials from both the webside and from Admin and they showed correctly. But, when I tried to edit a testimonial (I used your example and added city Perth), the following error message appeared:

    1054 Unknown column 'last_update' in 'field list'
    in:
    [update zen_testimonials_manager set testimonials_title = 'Great', testimonials_url = 'http://', testimonials_name = 'Perfect Designing', testimonials_mail = '[email protected]', testimonials_company = '', testimonials_city = 'Perth', testimonials_country = '', testimonials_html_text = 'This is just a test submission to show you how it looks, great, eh?', status = '1', last_update = now() where testimonials_id = '1']

    Am I supposed to be able to edit them?

    Thanks,
    Alex
    Learning the hard way -
    Matryoshka Dolls

  4. #254
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by AlexT View Post
    Clyde,

    Thanks for your help.

    I ran this line and everyting seemed fine: I could add testimonials from both the webside and from Admin and they showed correctly. But, when I tried to edit a testimonial (I used your example and added city Perth), the following error message appeared:

    1054 Unknown column 'last_update' in 'field list'
    in:
    [update zen_testimonials_manager set testimonials_title = 'Great', testimonials_url = 'http://', testimonials_name = 'Perfect Designing', testimonials_mail = '[email protected]', testimonials_company = '', testimonials_city = 'Perth', testimonials_country = '', testimonials_html_text = 'This is just a test submission to show you how it looks, great, eh?', status = '1', last_update = now() where testimonials_id = '1']

    Am I supposed to be able to edit them?

    Thanks,
    Alex
    Run this from admin -> tools -> insert sql patches
    Code:
    ALTER TABLE `testimonials_manager` ADD `last_update` datetime NOT NULL default '0000-00-00 00:00:00 AFTER `testimonials_html_text ` ;
    I've fixed this in the download and will upload it ASAP

  5. #255
    Join Date
    May 2007
    Location
    Perth, Australia
    Posts
    54
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    Run this from admin -> tools -> insert sql patches
    Code:
    ALTER TABLE `testimonials_manager` ADD `last_update` datetime NOT NULL default '0000-00-00 00:00:00 AFTER `testimonials_html_text ` ;
    I've fixed this in the download and will upload it ASAP
    Something is not quite right again, I've ran the line, the following message has appeared:

    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 ''0000-00-00 00:00:00 AFTER testimonials_html_text' at line 1
    in:
    [ALTER TABLE zen_testimonials_manager ADD last_update datetime NOT NULL default '0000-00-00 00:00:00 AFTER testimonials_html_text ;]
    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.

    The versions are:
    PHP Version: 5.2.1 (Zend: 2.2.0)
    Database: MySQL 5.0.27-standard

    Thank you,
    Alex
    Learning the hard way -
    Matryoshka Dolls

  6. #256
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by AlexT View Post
    Something is not quite right again, I've ran the line, the following message has appeared:

    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 ''0000-00-00 00:00:00 AFTER testimonials_html_text' at line 1
    in:
    [ALTER TABLE zen_testimonials_manager ADD last_update datetime NOT NULL default '0000-00-00 00:00:00 AFTER testimonials_html_text ;]
    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.

    The versions are:
    PHP Version: 5.2.1 (Zend: 2.2.0)
    Database: MySQL 5.0.27-standard

    Thank you,
    Alex
    Try this one:

    Code:
    ALTER TABLE `testimonials_manager` ADD `last_update` datetime NOT NULL default '0000-00-00 00:00:00' AFTER `testimonials_html_text` ;

  7. #257
    Join Date
    May 2007
    Location
    Perth, Australia
    Posts
    54
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    Try this one:

    Code:
    ALTER TABLE `testimonials_manager` ADD `last_update` datetime NOT NULL default '0000-00-00 00:00:00' AFTER `testimonials_html_text` ;

    Everything works fine now, thank you very much for your help!

    Alex
    Learning the hard way -
    Matryoshka Dolls

  8. #258
    Join Date
    Apr 2007
    Posts
    98
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Thanks Clyde, I got it worked now.

  9. #259
    Join Date
    Apr 2007
    Posts
    98
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Hey Clyde, I have noticed new issue now.

    I got a TEXT_FIELD_OPTIONAL appeared besides my 'fill in the blanks' form inside ZC admin.

    Is TM giving this problem? Do you have any idea how to fix it?

  10. #260
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by maza View Post
    Hey Clyde, I have noticed new issue now.

    I got a TEXT_FIELD_OPTIONAL appeared besides my 'fill in the blanks' form inside ZC admin.

    Is TM giving this problem? Do you have any idea how to fix it?
    Not sure it it is TM.

    open admin/includes/functions/html_output.php

    at around line 235 you should see:

    if ($required == false) $field .= TEXT_FIELD_OPTIONAL;

    Just delete this line and see if that clears that text string.

 

 

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 261
    Last Post: 13 Jan 2025, 11:14 PM
  2. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  3. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR