Page 44 of 151 FirstFirst ... 3442434445465494144 ... LastLast
Results 431 to 440 of 1501
  1. #431
    Join Date
    Dec 2007
    Posts
    61
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    That's very strange, The version of testimonials manager in the downloads section contains the correct define statement in includes/extra_datafiles

    In any case I'm glad you got it working.
    Hi Clyde,
    I've just downloaded a new copy, and the problem remains the same. Perhaps you might check?

    As you open up the zip file, new_installation>>>>admin>>>>includes>>>>extra_datafiles>>>>testimonials_manager .php

    you will find the code above. Since correcting it the module works on my site.

    And since you helped me upload the CSS file, it even looks nice too.

    Thanks for providing what looks like it might be a really useful mod for my site. (I didn't realise you were the author of the mod until I checked just now).


  2. #432
    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 chris parker View Post
    Hi Clyde,
    I've just downloaded a new copy, and the problem remains the same. Perhaps you might check?

    As you open up the zip file, new_installation>>>>admin>>>>includes>>>>extra_datafiles>>>>testimonials_manager .php

    you will find the code above. Since correcting it the module works on my site.

    And since you helped me upload the CSS file, it even looks nice too.

    Thanks for providing what looks like it might be a really useful mod for my site. (I didn't realise you were the author of the mod until I checked just now).

    Here's the contents of the file from a new download of the mod from the forum downloads section:

    PHP Code:
    <?php
    /**
     * Testimonials Manager - Filename Defines
     *
     * @package Pages
     * @copyright 2007 Clyde Jones
     * @copyright Portions Copyright 2003-2007 Zen Cart Development Team
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Testimonials_Manager.php v1.4.3.1 7-25-2007 Clyde Jones $
     */

      
    define('FILENAME_TESTIMONIALS_MANAGER''testimonials_manager');
      
    define('FILENAME_TESTIMONIALS_MANAGER_ALL''testimonials_manager_all_testimonials');
      
    define('FILENAME_TESTIMONIALS_ADD''testimonials_add');
      
      
    define('FILENAME_DEFINE_TESTIMONIALS_ADD''define_testimonials_add');

      
    define('TABLE_TESTIMONIALS_MANAGER'DB_PREFIX 'testimonials_manager');
    ?>

  3. #433
    Join Date
    Dec 2007
    Posts
    61
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Hi Clyde,
    That's not the file I changed. I believe that file is from:

    \new_installation\includes\extra_datafiles\testimonials_manager_filenames.php

    The file I had had to edit is this one:

    \new_installation\admin\includes\extra_datafiles\testimonials_manager.php

    It might just be my server settings though because nobody else seems to have this problem.

    Chris. :)

  4. #434
    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 chris parker View Post
    Hi Clyde,
    That's not the file I changed. I believe that file is from:

    \new_installation\includes\extra_datafiles\testimonials_manager_filenames.php

    The file I had had to edit is this one:

    \new_installation\admin\includes\extra_datafiles\testimonials_manager.php

    It might just be my server settings though because nobody else seems to have this problem.

    Chris. :)
    that file shouldn't effect the functioning of the mod on the "store" side. It would effect the functioning of things on the admin side though.

  5. #435
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Hello Clyde,

    Yeah sorry about that, I have regained my senses and found the right thread! ha.
    Basically, I get this error after I run the upgrade to update my existing testimonial manager install. I renamed template folders and made sure my files uploaded. I have experienced similar thing before and I don't know if it is to do with prefix. The SQL passed through perfectly though.

    1054 Unknown column 'language_id' in 'where clause'
    in:
    [select testimonials_id, testimonials_image, testimonials_title, testimonials_html_text, date_added from zen_testimonials_manager where status = 1 and language_id = 1 order by rand(), testimonials_title limit 5]
    Thanks in advance!

  6. #436
    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 HeathenMagic View Post
    Hello Clyde,

    Yeah sorry about that, I have regained my senses and found the right thread! ha.
    Basically, I get this error after I run the upgrade to update my existing testimonial manager install. I renamed template folders and made sure my files uploaded. I have experienced similar thing before and I don't know if it is to do with prefix. The SQL passed through perfectly though.



    Thanks in advance!
    run this sql statement.

    copy and paste into:

    admin -> tools -> install sql patches and click the send button

    Code:
    ALTER TABLE `testimonials_manager` ADD `language_id` INT( 11 ) NOT NULL DEFAULT '0' AFTER `testimonials_id` ;

  7. #437
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Many thanks Clyde,

    That stopped the error showing up. The sidebox doesn't seem to show at the moment, and I checked the page that shows the testimonials and that has the bottom icons only.

    http://www.thegemtree.com/index.php?...l_testimonials

    Do I have to use the ALTER TABLE for other of the sql components do you think?

  8. #438
    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 HeathenMagic View Post
    Many thanks Clyde,

    That stopped the error showing up. The sidebox doesn't seem to show at the moment, and I checked the page that shows the testimonials and that has the bottom icons only.

    http://www.thegemtree.com/index.php?...l_testimonials

    Do I have to use the ALTER TABLE for other of the sql components do you think?
    You'll need to update the testimonials to reflect the language id.

    run this sql statement:

    copy and paste into admin -> tools -> install sql patches and click the send button.

    Code:
    UPDATE `testimonials_manager` SET `language_id` = '1' WHERE `language_id` =0 ;

  9. #439
    Join Date
    May 2005
    Location
    England
    Posts
    675
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    WOW! Thanks that did the trick!

  10. #440
    Join Date
    Dec 2007
    Location
    Southern Maine
    Posts
    281
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Clyde,

    Quick question on the mod...When I try to activate it thru admin, I get two different scenarios. ( there is a testimonial written )

    1. when enabling for the right sidebox, nothing.
    2. when enabling for the left sidebox, everything disappears except the information box, but that ends up in the center of the page.

    If I knew how to post a screenshot, I would.
    Here is a link though....http://hiddenhillsnursery.com/Shopping Cart

    I have this mod working on two other sites, but for some reason, I cannot get this one to work on this site.

    Zen 1.3.8
    Mother Earth template
    PHP 4.4.8
    More Information sidebox mod
    Testimonials manager mod
    Information sidebox mod
    editable sideboxes mod

    Not that it has anything to do with this issue, but the ez pages won't show either, left or right....coincidence?????

 

 

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