Results 1 to 10 of 1501

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Posts
    25
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Version 1.3.8

    I've used your Testimonial manager for another site I created with no problems. Thanks.

    I'm attempting to create a new site by copying my previous site, and everything else about the new site is working fine, except for the Testimonial manager. It appears that none of the 'define' variables can be found and the variable names themselves show up on the page, for instance: TESTIMONIALS_MANAGER_DISPLAY_ALL_TESTIMONIALS shows up instead of the words "View all Testimonials".

    On my new site, I renamed all of the template folders to a new name, including those related to the testimonial manager. I don't understand why the define pages can not be found. For example, there is a file called tpl_testimonials_manager.php. In it, there is a line that uses a defined constant: TESTIMONIALS_MANAGER_ADD_TESTIMONIALS. This page is located in inlcludes/templates/mytemplate/sideboxes. The defined constant is located in: includes/languages/english/extra_definitions/mytemplate/testimonials_manager_defines.php. It's as if it can't find any of the defined vars. Any ideas? Is there something that could get messed up during my site copy process that would make the testimonial manager scripts lose their defined vars? By the way, I tried uninstalling the entire testimonial add on, then reinstalling it. It still acts the same way. Suggestions? Thanks!!!

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

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by largomike1 View Post
    Version 1.3.8

    I've used your Testimonial manager for another site I created with no problems. Thanks.

    I'm attempting to create a new site by copying my previous site, and everything else about the new site is working fine, except for the Testimonial manager. It appears that none of the 'define' variables can be found and the variable names themselves show up on the page, for instance: TESTIMONIALS_MANAGER_DISPLAY_ALL_TESTIMONIALS shows up instead of the words "View all Testimonials".

    On my new site, I renamed all of the template folders to a new name, including those related to the testimonial manager. I don't understand why the define pages can not be found. For example, there is a file called tpl_testimonials_manager.php. In it, there is a line that uses a defined constant: TESTIMONIALS_MANAGER_ADD_TESTIMONIALS. This page is located in inlcludes/templates/mytemplate/sideboxes. The defined constant is located in: includes/languages/english/extra_definitions/mytemplate/testimonials_manager_defines.php. It's as if it can't find any of the defined vars. Any ideas? Is there something that could get messed up during my site copy process that would make the testimonial manager scripts lose their defined vars? By the way, I tried uninstalling the entire testimonial add on, then reinstalling it. It still acts the same way. Suggestions? Thanks!!!
    url for your site

  3. #3
    Join Date
    Aug 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    hi, i can't will my chinese code in the testimonials,, do u have any latest version to support UTF-8, i have code converter software but i dun know which files to effect this..

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

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by guitarmong View Post
    hi, i can't will my chinese code in the testimonials,, do u have any latest version to support UTF-8, i have code converter software but i dun know which files to effect this..
    All of the information for Testimonial Manager is stored in the database table so there are no files to edit.

  5. #5
    Join Date
    Aug 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    oh my god,, so will u issue a latest version to support UTF-8? i looking forward on this,, thanks!

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

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by guitarmong View Post
    oh my god,, so will u issue a latest version to support UTF-8? i looking forward on this,, thanks!
    run this sql patch using the Zen-Cart Sql Patches tool (admin -> tools -> install sql patches)

    copy and past this code into the text area and click the send button.

    Code:
    DROP TABLE IF EXISTS testimonials_manager;
    CREATE TABLE testimonials_manager (
      `testimonials_id` int(11) NOT NULL auto_increment,
      `language_id` int(11) NOT NULL default '0',
      `testimonials_title` varchar(64) NOT NULL default '',
      `testimonials_url`  VARCHAR( 255 ) NULL DEFAULT NULL,
      `testimonials_name` text NOT NULL,
      `testimonials_image` varchar(254) NOT NULL default '',
      `testimonials_html_text` text,
      `testimonials_mail` text NOT NULL,
      `testimonials_company` VARCHAR( 255 ) NULL DEFAULT NULL,
      `testimonials_city` VARCHAR( 255 ) NULL DEFAULT NULL,
      `testimonials_country` VARCHAR( 255 ) NULL DEFAULT NULL,
      `testimonials_show_email` char(1) default '0',
      `status` int(1) NOT NULL default '0',
      `date_added` datetime NOT NULL default '0000-00-00 00:00:00',
      `last_update` datetime NULL default NULL,
      PRIMARY KEY  (`testimonials_id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;

  7. #7
    Join Date
    Apr 2009
    Posts
    25
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hi there again,

    I was working on the site locally on my Windows PC (WAMP), when you asked for the URL, so I decided to upload what I had done at this point. What's interesting is that everything works correctly after I uploaded the whole site. The url to the correctly working, copied site is: http://pursebling.com. If you look at the bottom left sidebox, you will see that the testimonial box is displaying correctly. However, on my local machine it looks like this:


    So to recap:
    It's working in the following conditions:
    - Locally for my memoriesinchocolate.com site.
    - Production server for memoriesinchocolate.com
    - Production server for pursebling.com

    It's not working for my local version of pursebling.com (which I copied the entire site up to the production server a few minutes ago).

    Any ideas?

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

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by largomike1 View Post
    Hi there again,

    I was working on the site locally on my Windows PC (WAMP), when you asked for the URL, so I decided to upload what I had done at this point. What's interesting is that everything works correctly after I uploaded the whole site. The url to the correctly working, copied site is: http://pursebling.com. If you look at the bottom left sidebox, you will see that the testimonial box is displaying correctly. However, on my local machine it looks like this:


    So to recap:
    It's working in the following conditions:
    - Locally for my memoriesinchocolate.com site.
    - Production server for memoriesinchocolate.com
    - Production server for pursebling.com

    It's not working for my local version of pursebling.com (which I copied the entire site up to the production server a few minutes ago).

    Any ideas?
    Generally, it means that a language file is missing or was corrupted during the transfer/upload

    You should check includes/languages/english/extra_definitions/YOUR_TEMPLATE/testimonials_manager_defines.php

 

 

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 262
    Last Post: 26 Jun 2025, 10:42 AM
  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

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