Page 60 of 62 FirstFirst ... 10505859606162 LastLast
Results 591 to 600 of 614
  1. #591
    Join Date
    Nov 2008
    Posts
    3
    Plugin Contributions
    0

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    have they come up with an inventory report by model yet??? The inventory report or low on inventory report not great for over 2000 items. would love to narrow it down by model or category/model

  2. #592
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,949
    Plugin Contributions
    96

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    Quote Originally Posted by Renee Mott View Post
    have they come up with an inventory report by model yet??? The inventory report or low on inventory report not great for over 2000 items. would love to narrow it down by model or category/model
    DbIo provides a category-filter for its Products export. Using that in conjunction with the quantity_only DbIo "template" should yield you close to what you're looking for.

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    FWIW

    Soon to be updated 1.5.7d with PHP 7.4.33.

    After initial install, clicking on Tools >> Database I/O Manager threw a 500

    Code:
    [09-Oct-2025 13:45:00 America/New_York] PHP Parse error: syntax error, unexpected '|', expecting '{' in /******/includes/functions/dbio_manager_functions.php on line 10
    
    [09-Oct-2025 13:45:00 America/New_York] Request URI: /******/index.php?cmd=dbio_manager, IP address: 216.177.186.199
    --> PHP Parse error: syntax error, unexpected '|', expecting '{' in /yakmaster/includes/functions/dbio_manager_functions.php on line 10.
    Changing line 10 from:

    Code:
    function dbioGetFieldValue(string $field_name): array|string
    to

    Code:
    function dbioGetFieldValue(string $field_name)
    allows operation with no problems found so far.
    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.

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    Right, the array|string type hint isn't supported on PHP versions prior to 8.0.

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    After reviewing the docs, wiki, and template creation info, I wonder if it is possible to join tables for the query.

    I need to have the ID, Model, Price, and Price_W, which are all available in the products table, but I would also like to include the product's name, which is in the products_description table.

    Is this possible without munging code or creating a joined table?
    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.

  6. #596
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,949
    Plugin Contributions
    96

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    Quote Originally Posted by dbltoe View Post
    After reviewing the docs, wiki, and template creation info, I wonder if it is possible to join tables for the query.

    I need to have the ID, Model, Price, and Price_W, which are all available in the products table, but I would also like to include the product's name, which is in the products_description table.

    Is this possible without munging code or creating a joined table?
    The default DbIoProduct export (er) exports all fields in the products and products_descriptions tables (a couple of others, too).

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    I guess what threw me was that the items are apparently sorted by table, other than alphabetically.

    I found what I needed and learned a little. Check Mark for the day.

    THANX
    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.

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    Attempting to do an update for FEATURED is failing with the latest dbio. If I do an EXPORT of the featured data, then an upload and an Import (Full), I get this log:

    [04-Nov-2025 14:38:58 America/New_York] Request URI: /admin/index.php?cmd=dbio_manager&action=file, IP address: ::1, Language id 1
    #0 [internal function]: zen_debug_error_handler()
    #1 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(667): trigger_error()
    #2 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(634): queryFactory->show_error()
    #3 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(275): queryFactory->set_error()
    #4 /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIoHandler.php(1029): queryFactory->Execute()
    #5 /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIo.php(274): DbIoHandler->importCsvRecord()
    #6 /Users/scott/Sites/mmpgamers/admin/dbio_manager.php(242): DbIo->dbioImport()
    #7 /Users/scott/Sites/mmpgamers/admin/index.php(11): require('/Users/scott/Si...')
    --> PHP Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SE WHERE p.products_model = 'NSG-FTE' AND f.products_id = p.products_id' at line 1 :: UPDATE zen_products p SE WHERE p.products_model = 'NSG-FTE' AND f.products_id = p.products_id ==> (as called by) /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIoHandler.php on line 1029 <== in /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php on line 667.
    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.

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    Quote Originally Posted by swguy View Post
    Attempting to do an update for FEATURED is failing with the latest dbio. If I do an EXPORT of the featured data, then an upload and an Import (Full), I get this log:

    [04-Nov-2025 14:38:58 America/New_York] Request URI: /admin/index.php?cmd=dbio_manager&action=file, IP address: ::1, Language id 1
    #0 [internal function]: zen_debug_error_handler()
    #1 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(667): trigger_error()
    #2 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(634): queryFactory->show_error()
    #3 /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php(275): queryFactory->set_error()
    #4 /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIoHandler.php(1029): queryFactory->Execute()
    #5 /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIo.php(274): DbIoHandler->importCsvRecord()
    #6 /Users/scott/Sites/mmpgamers/admin/dbio_manager.php(242): DbIo->dbioImport()
    #7 /Users/scott/Sites/mmpgamers/admin/index.php(11): require('/Users/scott/Si...')
    --> PHP Fatal error: 1064:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SE WHERE p.products_model = 'NSG-FTE' AND f.products_id = p.products_id' at line 1 :: UPDATE zen_products p SE WHERE p.products_model = 'NSG-FTE' AND f.products_id = p.products_id ==> (as called by) /Users/scott/Sites/mmpgamers/admin/includes/classes/dbio/DbIoHandler.php on line 1029 <== in /Users/scott/Sites/mmpgamers/includes/classes/db/mysql/query_factory.php on line 667.
    Shoot a copy of the import csv to my direct email; I'll see what's going on in the morning.

    Zen Cart version? DbIo version (latest doesn't cut it)?

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

    Default Re: Database I/O Manager (DbIo) Plugin [Support Thread]

    File Sent - Versions are ZC 1.5.8a and DbIo 2.0.2.
    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.

 

 

Similar Threads

  1. Support Thread for CKEditor Plugin
    By DivaVocals in forum Addon Admin Tools
    Replies: 213
    Last Post: 18 Nov 2024, 04:17 AM
  2. Back to Top Plugin [Support Thread]
    By picaflor-azul in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 6 Feb 2016, 10:52 PM
  3. v151 Plug 'n' Pay plugin [Support Thread]
    By KetchRescue in forum Addon Payment Modules
    Replies: 5
    Last Post: 28 Nov 2015, 04:56 AM
  4. Justuno Plugin [Support Thread]
    By JustunoApp in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 24 May 2015, 11:00 PM
  5. VendingBox Plugin Support Thread
    By vb_support in forum All Other Contributions/Addons
    Replies: 31
    Last Post: 10 Feb 2013, 07:24 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