Results 1 to 10 of 52

Hybrid View

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

    Default Re: Mod List Support Thread

    Note: The following is not a bugfix nor a major change to the mod's operation. Just a minor modification that made comparing listings easier for me.

    I was trying to compare two sites and found that the listing is ordered by the FIFO (first in , first out) method that really made it difficult for these trifocals of mine.

    So... I got the YOUR_ADMIN/mod_list.php file out and added an ORDER BY to the query on line 66:
    Code:
        $pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES;
    becomes
    Code:
        $pages_query_raw = " SELECT * FROM " . TABLE_ADMIN_PAGES . " ORDER BY menu_key ASC ";
    That way, the listings are arranged close to the same as the menu items in the admin.

    Makes it a little easier to compare.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  2. #2
    Join Date
    Jan 2018
    Posts
    165
    Plugin Contributions
    4

    Default Re: Mod List Support Thread

    I like to suggest something; is there away to add this?

    Checks for deleted files and changed files in both admin and catalog? like an automatic compare. I am guessing you can make a reference file on GitHub for the version. Mods can have a line to add the actual mod its from. Just a suggestion not sure if this can be done.

  3. #3
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,536
    Plugin Contributions
    127

    Default Re: Mod List Support Thread

    You can do this offline. Download your files, then download a pristine copy of the version you based your site on. Compare all files.
    That Software Guy. My Store: Zen Cart Support
    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.

  4. #4
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,948
    Plugin Contributions
    96

    Default Re: Mod List Support Thread

    Sweet little plugin; thanks @swguy!

  5. #5
    Join Date
    Nov 2017
    Location
    Athens, Georgia, USA
    Posts
    99
    Plugin Contributions
    0

    Default Re: Mod List Support Thread

    In the case of plugin's that do NOT have an uninstall.sql included... How do we go about removing the loose entries? I don't have any databases or configs still showing that shouldn't be, but I do have these:

    (BOX_CATALOG_ADVANCED_XSELL_PRODUCTS) catalog Y Link cannot be created
    (BOX_CONFIGURATION_MOBIZENCART_CONFIG) configuration Y Link cannot be created
    (BOX_CATALOG_XSELL_PRODUCTS) catalog Y Link cannot be created
    (BOX_SITEMAPXML) tools Y Link cannot be created
    (BOX_CONFIGURATION_SITEMAPXML) configuration Y Link cannot be created
    (BOX_CONFIGURATION_ONEALLSOCIALOGIN) tools Y Link cannot be created
    (BOX_CONFIGURATION_ONEALLSOCIALOGIN) configuration Y Link cannot be created
    (BOX_ADDON_GV_DASHBOARD) gv Y Link cannot be created
    (BOX_CONFIGURATION_DEFAULT) configuration N Link cannot be created

    And I have no idea what or where these are. One All Social Login, and Mobizencart I know I have removed everything for, and nothing is triggering as broken, but there are files left for XSell and Sitemap, and I don't want to touch something and trigger a crash, because I don't know what or where they originally came from, or if anything is still pointing to them.

  6. #6
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,536
    Plugin Contributions
    127

    Default Re: Mod List Support Thread

    These are defined constants in PHP files in your admin. You can use the developer's toolkit to track them down.
    That Software Guy. My Store: Zen Cart Support
    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.

  7. #7
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: Mod List Support Thread

    Quote Originally Posted by Lordzoabar View Post
    In the case of plugin's that do NOT have an uninstall.sql included... How do we go about removing the loose entries? I don't have any databases or configs still showing that shouldn't be, but I do have these:

    (BOX_CATALOG_ADVANCED_XSELL_PRODUCTS) catalog Y Link cannot be created
    (BOX_CONFIGURATION_MOBIZENCART_CONFIG) configuration Y Link cannot be created
    (BOX_CATALOG_XSELL_PRODUCTS) catalog Y Link cannot be created
    (BOX_SITEMAPXML) tools Y Link cannot be created
    (BOX_CONFIGURATION_SITEMAPXML) configuration Y Link cannot be created
    (BOX_CONFIGURATION_ONEALLSOCIALOGIN) tools Y Link cannot be created
    (BOX_CONFIGURATION_ONEALLSOCIALOGIN) configuration Y Link cannot be created
    (BOX_ADDON_GV_DASHBOARD) gv Y Link cannot be created
    (BOX_CONFIGURATION_DEFAULT) configuration N Link cannot be created

    And I have no idea what or where these are. One All Social Login, and Mobizencart I know I have removed everything for, and nothing is triggering as broken, but there are files left for XSell and Sitemap, and I don't want to touch something and trigger a crash, because I don't know what or where they originally came from, or if anything is still pointing to them.
    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).

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

  9. #9
    Join Date
    May 2011
    Location
    Tennessee
    Posts
    510
    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

 

 

Similar Threads

  1. Local Sales Tax Mod - Support Thread
    By LadyHLG in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 658
    Last Post: 22 Dec 2025, 05:29 PM
  2. Printable Price list :: support thread
    By paulm in forum All Other Contributions/Addons
    Replies: 740
    Last Post: 18 May 2025, 02:23 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

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