Page 1 of 2 12 LastLast
Results 1 to 10 of 1501

Hybrid View

  1. #1
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Testimonial Manager Support Thread

    Hmm, I'm wondering how many other admin plugins are going to have this same problem. The issue is in the file /YOUR_ADMIN/includes/extra_datafiles/testimonials_manager.php:
    Code:
    <?php
    /**
     * Testimonials Manager
     *
     * @package Template System
     * @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.5.0 4-9-2012 CountryCharm $
     */
     
      define('TABLE_TESTIMONIALS_MANAGER', DB_PREFIX . 'testimonials_manager');
      define('FILENAME_TESTIMONIALS_MANAGER', 'testimonials_manager.php');
      define('BOX_CONFIGURATION_TESTIMONIALS_MANAGER', 'Testimonials Manager');//for 1.5
    ?>
    Looks fine, right? Unfortunately, the process in /YOUR_ADMIN/includes/init_includes/init_admin_auth.php strips the .php from the filename when doing the compare for authorization. That is, for this case, the comparison is between testimonials_manager.php and testimonials_manager ... resulting in a miscompare and ultimately resulting in the authorization denied message you received.

    To correct, change the above testimonials_manager.php file to:
    Code:
    <?php
    /**
     * Testimonials Manager
     *
     * @package Template System
     * @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.5.0 4-9-2012 CountryCharm $
     */
     
      define('TABLE_TESTIMONIALS_MANAGER', DB_PREFIX . 'testimonials_manager');
      define('FILENAME_TESTIMONIALS_MANAGER', 'testimonials_manager');
      define('BOX_CONFIGURATION_TESTIMONIALS_MANAGER', 'Testimonials Manager');//for 1.5
    ?>

  2. #2
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by lat9 View Post
    Hmm, I'm wondering how many other admin plugins are going to have this same problem. The issue is in the file /YOUR_ADMIN/includes/extra_datafiles/testimonials_manager.php:
    Code:
    <?php
    /**
     * Testimonials Manager
     *
     * @package Template System
     * @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.5.0 4-9-2012 CountryCharm $
     */
     
      define('TABLE_TESTIMONIALS_MANAGER', DB_PREFIX . 'testimonials_manager');
      define('FILENAME_TESTIMONIALS_MANAGER', 'testimonials_manager.php');
      define('BOX_CONFIGURATION_TESTIMONIALS_MANAGER', 'Testimonials Manager');//for 1.5
    ?>
    Looks fine, right? Unfortunately, the process in /YOUR_ADMIN/includes/init_includes/init_admin_auth.php strips the .php from the filename when doing the compare for authorization. That is, for this case, the comparison is between testimonials_manager.php and testimonials_manager ... resulting in a miscompare and ultimately resulting in the authorization denied message you received.

    To correct, change the above testimonials_manager.php file to:
    Code:
    <?php
    /**
     * Testimonials Manager
     *
     * @package Template System
     * @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.5.0 4-9-2012 CountryCharm $
     */
     
      define('TABLE_TESTIMONIALS_MANAGER', DB_PREFIX . 'testimonials_manager');
      define('FILENAME_TESTIMONIALS_MANAGER', 'testimonials_manager');
      define('BOX_CONFIGURATION_TESTIMONIALS_MANAGER', 'Testimonials Manager');//for 1.5
    ?>
    Thanks again for your support.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by countrycharm View Post
    Thanks again for your support.
    It's my pleasure, as I'm using this plugin myself.

  4. #4
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Testimonial Manager Support Thread

    Thanks to all who help support this module.

    I have updated and uploaded
    Testimonial Manager with the latest fixes mention above. The new version number of Testimonial Manager is v1.5.4
    I will let you know when it is approved.

    NOTE: Testimonial Manager for Zen Cart version 1.5.x is NOT backwards compatible (won't work with v1.3.x versions of Zen Cart)

    The NEW thread for the latest version Testimonial Manager for Zen Cart v1.5.x is here.

    Please go to the new support thread for any question regarding Testimonial Manager v1.5.4


    Last edited by countrycharm; 26 Oct 2012 at 05:13 PM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #5
    Join Date
    Sep 2006
    Posts
    142
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Thank you VERY VERY MUCH for responding to this issue.

    As I said previously, I have been posting on here off and on, trying to get a resolution to this problem, and what you have posted above for the fix worked like a CHARM!

    I can now get my other administrators the access needed for this mod, without having to overwhelm them with Super User access.

  6. #6
    Join Date
    Dec 2011
    Posts
    92
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hi all,

    I wonder if anyone can help me? When customers write a new testimonial on our site, they receive an email thanking them for their submission. When this email is delivered the display name is the store owners name and not the store name. All other Zen Cart emails have the store name as the display name in emails. Is there a way of amending this email so it follows the same format as the rest of Zen Cart?

    Thanks in advance for your help

  7. #7
    Join Date
    Dec 2011
    Posts
    92
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hi,

    Sorry, one more question. I cannot seem to find where to edit the format of the html emails that are sent via the testimonials module. Can anyone point me in the right direction? I would have expected the email template files to be in the email folder within Zen Cart although this doesn;t appear to be the case. Can anyone point me in the right direction?

    Many thanks

  8. #8
    Join Date
    Jan 2012
    Location
    New England
    Posts
    238
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Just to me sure I don't break it... do I just change the line in that file? Or do I have to change it anywhere else/rename a file somewhere/do some voodoo dance/anything else?

    Quote Originally Posted by lat9 View Post
    To correct, change the above testimonials_manager.php file to:
    Code:
    <?php
    /**
     * Testimonials Manager
     *
     * @package Template System
     * @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.5.0 4-9-2012 CountryCharm $
     */
     
      define('TABLE_TESTIMONIALS_MANAGER', DB_PREFIX . 'testimonials_manager');
      define('FILENAME_TESTIMONIALS_MANAGER', 'testimonials_manager');
      define('BOX_CONFIGURATION_TESTIMONIALS_MANAGER', 'Testimonials Manager');//for 1.5
    ?>

  9. #9
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Testimonial Manager Support Thread

    Just change the one line in the one file, changing testimonials_manager.php to testimonials_manager.

  10. #10
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Testimonial Manager Support Thread

    Testimonial Manager with the latest fixes - Version: 1.5.4 is now in the Plugin and Addons area.

    NOTE: Testimonial Manager for Zen Cart version 1.5.x is NOT backwards compatible (won't work with v1.3.x versions of Zen Cart)

    The NEW thread for the latest version Testimonial Manager for Zen Cart v1.5.x is here.

    Please go to the new support thread for any question regarding Testimonial Manager v1.5.4

    No support will be given if you ask about
    Testimonial Manager v1.5.4 in this thread.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 
Page 1 of 2 12 LastLast

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