Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 52
  1. #21
    Join Date
    Nov 2017
    Location
    Athens, Georgia, USA
    Posts
    99
    Plugin Contributions
    0

    Default Re: Mod List Support Thread

    Quote Originally Posted by soxophoneplayer View Post
    I had a few of these show up in the Mod List that were holdovers from previous templates I had used (with the same database). I manually deleted the applicable tables in the database via phpMyAdmin (after backing up of course).
    Awesome. I did as swguy said, and used the Dev Tool Kit to find the leftover strings, but that didn't clean up the mod list (yeah, I know that doesn't REALLY matter, my boss wants a nice clean file though, so we can keep track when we next upgrade ZC). Plus I just want to debloat some of the files. we've got backups and archives (saved to the same server!) from 2011, and there's a lot of files that have just been disabled and over written a dozen times, so I've got like, config.php, config~, configbckp, config~~~, etc... And of course they all show in a file search.

  2. #22
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,672
    Plugin Contributions
    123

    Default Re: Mod List Support Thread

    Updated for 1.5.6.
    Please note that "Categories" in New Admin Pages is a false positive. @dbltoe has reported here:
    https://www.zen-cart.com/showthread....ries-in-1-5-6c
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #23
    Join Date
    May 2011
    Location
    Tennessee
    Posts
    377
    Plugin Contributions
    0

    Default Re: Mod List Support Thread

    How did you determine which tables to delete to fix the "Link cannot be created" messages in the Mod List

  4. #24
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,672
    Plugin Contributions
    123

    Default Re: Mod List Support Thread

    This message means you are missing an entry from admin_pages. You can create it in Admin > Tools > Install SQL Patches or using Admin > Admins > Admin Page Registration.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #25
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Mod List Support Thread

    Or... If it is left over from a former site and not brought in with the upgrade, you might see it under New Admin Pages as all caps. You can delete it from the admin_pages table.

  6. #26
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Mod List Support Thread

    1.5.7 - PHP 7.3.19 with Quick Updates, Clone, OPC, news box, Sales Report.

    Getting huge files with repetition of
    Code:
    [12-Jul-2020 17:34:51 UTC] Request URI: /******/index.php?cmd=mod_list, IP address: *************
    #1 in_array() called at [/zc_plugins/ModList/1.4.0/admin/mod_list.php:75]
    #2 require(/zc_plugins/ModList/1.4.0/admin/mod_list.php) called at [/******/index.php:23]
    --> PHP Warning: in_array() expects parameter 2 to be array, null given in /zc_plugins/ModList/1.4.0/admin/mod_list.php on line 75.

  7. #27
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,672
    Plugin Contributions
    123

    Default Re: Mod List Support Thread

    Thanks for this report, @dbltoe. A number of changes were required for correct interoperation with Plugin Manager, and some issues were found in Plugin Manager itself that will be addressed soon.

    1.5.7 users who installed Mod List version 1.4.0 ONLY:

    Please run these commands in your Tools > Install SQL Patches screen:

    DELETE FROM plugin_control WHERE unique_key = 'ModList';

    DELETE FROM plugin_control_versions WHERE unique_key = 'ModList';

    Then grab Mod List 1.4.1 from the Plugins Library and install it.
    Last edited by swguy; 16 Jul 2020 at 12:45 PM.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #28
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,682
    Plugin Contributions
    9

    Default Re: Mod List Support Thread

    i am playing with 1.4.1 using the plugin manager on a base 1.5.7 system. i have a few comments. considering, we are in a 1.5.7 system, i would prefer the following change:

    PHP Code:
    <?php
    //from:
    ?>
    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html <?php echo HTML_PARAMS?>>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET?>">
    <title><?php echo TITLE?></title>
    <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
    <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
    <script language="javascript" src="includes/menu.js"></script>
    <script language="javascript" src="includes/general.js"></script>
    <script type="text/javascript">
      <!--
      function init()
      {
        cssjsmenu('navbar');
        if (document.getElementById)
        {
          var kill = document.getElementById('hoverJS');
          kill.disabled = true;
        }
      }
      // -->
    </script>
    </head>
    <body onLoad="init()">
    <!-- header //-->
    <?php require(DIR_WS_INCLUDES 'header.php'); ?>
    <!-- header_eof //-->
    <?php

    //to:
    ?>
    <!doctype html>
    <html <?= HTML_PARAMS?>>
    <head>
        <?php require DIR_WS_INCLUDES 'admin_html_head.php'?>
        <script src="includes/general.js"></script>
    </head>
    <body>
    <!-- header //-->
    <?php require(DIR_WS_INCLUDES 'header.php'); ?>
    <!-- header_eof //-->
    in addition, i am not sure i understand this plugin. why does it have all of the base 1.5.7 things listed here? see:

    Click image for larger version. 

Name:	Screenshot from 2020-08-06 10-16-32.jpg 
Views:	64 
Size:	52.0 KB 
ID:	19127

    are those items supposed to be there? those do not seem new to me....

    the payment modules seem correct, but why are the shipping modules and the order total modules listed? see:

    Click image for larger version. 

Name:	Screenshot from 2020-08-06 10-19-21.png 
Views:	71 
Size:	19.9 KB 
ID:	19128

    what might i be doing wrong? or reading incorrectly?
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  9. #29
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: Mod List Support Thread

    Not only are we getting everything in every menu, we are getting
    Code:
    [06-Aug-2020 18:11:43 UTC] Request URI: /jetmar/index.php?cmd=mod_list, IP address: 216.177.186.199
    #1 require(/zc_plugins/ModList/1.4.1/admin/mod_list.php) called at [/jetmar/index.php:23]
    --> PHP Warning: Use of undefined constant BUILT_IN_BOXES - assumed 'BUILT_IN_BOXES' (this will throw an Error in a future version of PHP) in /zc_plugins/ModList/1.4.1/admin/mod_list.php on line 75.
    for every listing.

    This winds up making a HUGE log file.

    Looks like the system is not really picking up the admin/includes/extra_configures/modlist.php even though the define is there.

    Lines 71 - 79 of admin/mod_list.php
    Code:
    <?php    } else { 
           while (!$pages->EOF) {
              $key = $pages->fields['language_key']; 
              if (in_array($key, BUILT_IN_BOXES)) { 
                 $pages->MoveNext();
                 continue;
              }
       ?>

  10. #30
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,682
    Plugin Contributions
    9

    Default Re: Mod List Support Thread

    yeah, i did not notice the log files, that makes sense now. i thought updates to the plugin manager had addressed this problem.

    guess not.

    who approved this plugin?!?
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

 

 
Page 3 of 6 FirstFirst 12345 ... LastLast

Similar Threads

  1. Printable Price list :: support thread
    By paulm in forum All Other Contributions/Addons
    Replies: 724
    Last Post: 13 Jan 2024, 04:19 AM
  2. Local Sales Tax Mod - Support Thread
    By LadyHLG in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 634
    Last Post: 8 Dec 2023, 06:59 PM
  3. Multi Cross Sell mod [Support thread]
    By gilby in forum All Other Contributions/Addons
    Replies: 475
    Last Post: 11 Apr 2020, 10:44 PM
  4. Just another Cross-Sell mod (support thread)
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 702
    Last Post: 3 Nov 2012, 04:30 AM
  5. SplitTaxLines mod support thread
    By pdprenty in forum All Other Contributions/Addons
    Replies: 80
    Last Post: 19 Dec 2009, 10:01 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