Page 25 of 26 FirstFirst ... 1523242526 LastLast
Results 241 to 250 of 258
  1. #241
    Join Date
    Jun 2021
    Posts
    41
    Plugin Contributions
    2

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by twitchtoo View Post
    The error only seemed to be relevant during manual upgrade (Un-Install then Install new version) automatic upgrade with the plugin manager button has been unsuccessful and also causes the headers already sent error - which also blanks the right configuration sidebox completely.


    I assume the plugin manager Clean Up button is not working as a result of the processActionDoCleanup in the PluginManagerController.php being empty (stock 1.57c) which is a Zen Cart problem not a Testimonials Manager problem - the function is empty.
    Plugin Manager's upgrade functionality is not implemented in ZC 1.5.7x (there is the button but it does nothing). I think the same applies for the Clean Up feature (I don't remember if it works)

  2. #242
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    bug Testimonial Manager 2.5.1

    Indeed there are a collection of things missing from the Plugin Manager however that hasn't stopped me from updating this module to Testimonial Manager 2.5.1 with all the corrections needed to prevent any errors with the current stock Plugin Manager!
    I'll package it up later this week and submit


    Fixed:
    - Install - Stock Zen Cart Plugin Manager errors
    - Uninstall - Missing defines errors causing page load and sidebox load errors
    - Failed star rating display
    - CSS updates - mobile friendly
    - FontAwesome - unsupported version errors
    - Missing heading title error
    - Corrected various spacing issues and spelling errors


    Now built into Twitch Base7 [Sapphire] - a demo link is available for anyone wanting to see it in action - just email me directly and I'll send the link!
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  3. #243
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: Testimonial Manager 2.5.1

    Just Submitted:


    Testimonial Manager
    Version 2.5.1 for Zen Cart 1.57c
    Mar 28.2022 - Twitchtoo Media


    Updates from my previous post have been included to ensure no errors when installed or uninstalled using the Zen Cart Plugin Manager.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  4. #244
    Join Date
    May 2005
    Location
    England
    Posts
    626
    Plugin Contributions
    0

    Default Re: Testimonial Manager 2.5.1

    Thanks for updating this. I just wonder if perhaps the add testimonial only works if another captcha isn't present? I can see it has non-captcha observer file, on the add testimonial page it doesn't show the boxes to add entries. I have Google Captch so perhaps this is the reason, but just wondered. Thanks :-)

  5. #245
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: Testimonial Manager 2.5.1

    Quote Originally Posted by HeathenMagic View Post
    Thanks for updating this. I just wonder if perhaps the add testimonial only works if another captcha isn't present? I can see it has non-captcha observer file, on the add testimonial page it doesn't show the boxes to add entries. I have Google Captch so perhaps this is the reason, but just wondered. Thanks :-)

    Yes I noticed this module was hit and miss with that block of code. I left it in as it was useful in previous versions, however in the next release I'll be sure to rework it from the ground up.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  6. #246
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    bug Testimonial Manager 2.5.1 - not installed widget error when uninstalled

    Update for anyone that has not installed or perhaps uninstalled the new plugin based Testimonial Manager 2.5.1...

    YOUR_ADMIN/ includes/modules/dashboard_widgets/TestimonialsDashboardWidget.php

    old:
    $tm_plugin = $db->Execute("SELECT status FROM " . TABLE_PLUGIN_CONTROL . " WHERE unique_key = 'TestimonialManager'");
    $tmStatus = ($tm_plugin->fields['status'] == '2') ? 'off' : 'on';

    //if ($tmstatus == 'on') {

    $sql = "SELECT * FROM " . TABLE_TESTIMONIALS_MANAGER . " ORDER BY date_added DESC";
    $testimonials = $db->Execute($sql, (int)$maxRows, true, 1800);

    $totalTM = $db->Execute("select count(*) as count from " . TABLE_TESTIMONIALS_MANAGER . "");



    ?>




    <div class="panel panel-default reportBox">



    new:
    $tm_plugin = $db->Execute("SELECT status FROM " . TABLE_PLUGIN_CONTROL . " WHERE unique_key = 'TestimonialManager'");
    $tmStatus = ($tm_plugin->fields['status'] == '1') ? 'on' : 'off';

    if ($tmStatus == 'on') {
    $sql = "SELECT * FROM " . TABLE_TESTIMONIALS_MANAGER . " ORDER BY date_added DESC";
    $testimonials = $db->Execute($sql, (int)$maxRows, true, 1800);

    $totalTM = $db->Execute("select count(*) as count from " . TABLE_TESTIMONIALS_MANAGER . "");
    ?>

    <div class="panel panel-default reportBox">



    then at the bottom of this file...



    change this:
    </script>

    <?php //} ?>



    to this:
    </script>

    <?php } ?>




    If you're using the manager this error will not present itself.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  7. #247
    Join Date
    Feb 2022
    Location
    Redcliffe QLD AU
    Posts
    5
    Plugin Contributions
    1

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Hi everyone. I'm hoping someone can help with an issue I'm having.
    I've installed installed Testimonial Manager v1.5.4. Fresh install to Zencart 1.5.7d, PHP 7.4.29 (Zend: 3.4.0)

    Everything is working except the links that access to testimonials_add

    The following error appears in my logs. Unfortunately I don't have the skills to resolve.

    All help appreciated.
    Thanks Greg


    PHP Fatal error: require(): Failed opening required 'includes/languages/english/html_includes/define_testimonials_add.php' (include_path='.:/opt/alt/php74/usr/share/pear') in /home/MY_DIR/public_html/includes/templates/MY_TEMPLATE/templates/tpl_testimonials_add_default.php on line 32

  8. #248
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Hoops1122, That error is saying the file doesn't exist. check that the file is actually on the sever and if uploading it doesn't work, delete it, and upload it again.

    includes/languages/english/html_includes/define_testimonials_add.php
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  9. #249
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    I have run into a couple of issues after installing this on 1.5.7d

    First one is that the All Testimonials Page does not display any testimonials.

    https://theengravingshop.co.uk/index...l_testimonials

    Second One:

    In the admin Configuration > Testimonials Manager - the page loads but doesn't have anything in it. It is completely blank.

    I don't have any error logs either so I have no idea what is causing these issues.
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  10. #250
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,149
    Plugin Contributions
    11

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)


 

 
Page 25 of 26 FirstFirst ... 1523242526 LastLast

Similar Threads

  1. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  2. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 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