Page 146 of 151 FirstFirst ... 4696136144145146147148 ... LastLast
Results 1,451 to 1,460 of 1501
  1. #1451
    Join Date
    Sep 2006
    Posts
    142
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by WebKat View Post
    I created a "Manager" level user profile for my dad's site so he wouldn't be so overwhelmed by all the options, most of which he will never use. However, even when I give that profile access to "Testimonials Manager" in both Tools and Configurations, he gets a message saying he doesn't have access to it when he tries to click on it. What's wrong?

    I have had this same problem, have posted SEVERAL times on the site here requesting help on this issue, and so far, haven't gotten any help on why this issue is happening. If you find a resolution, can you please post back, so I can fix this issue on my site.

  2. #1452
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,384
    Plugin Contributions
    94

    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
    ?>

  3. #1453
    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

  4. #1454
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,384
    Plugin Contributions
    94

    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.

  5. #1455
    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

  6. #1456
    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.

  7. #1457
    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

  8. #1458
    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

  9. #1459
    Join Date
    Aug 2012
    Location
    Brigham City, UT
    Posts
    32
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    I had no problems when I added testimonials manager 1.5.3d to my test site, and no end to problems when adding it to my server. I've now got everything working except the admin functions at configuration > Testimonial Manager. The functions at tools > Testimonial Manager work fine, as does the site. However I want to control the number of random testimonials displayed, and although I have 3 testimonials loaded, nothing displays at configuration > Testimonial Manager. Can anyone point me in the right direction?

  10. #1460
    Join Date
    Aug 2012
    Location
    Brigham City, UT
    Posts
    32
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Ok, I'm updating my post...

    configuration > Testimonial Manager calls for url ...configuration.php?gID=31, and gets me nothing
    on a whim, I changed it to ...configuration.php?gID=32 in the browser address bar and that got me what I needed.

    So the question is still how do I fix that gID called by the link?

 

 

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