Page 1 of 2 12 LastLast
Results 1 to 10 of 614

Hybrid View

  1. #1
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    Goodmorning all,

    I have a question about importing csv-files with new products. I have downloaded a product-csv file with the dbio manager, and then I changed the products and I have uploaded it to the webstore throught the dbio manager, but then I received the following message:

    Code:
    Foutmelding The current import-file is missing these (v_products_id, v_products_model) required columns; the import is disallowed.
    But when I check the file on the missing columns, they are just there into the file..

    Click image for larger version. 

Name:	screenimagedbio.jpg 
Views:	232 
Size:	146.0 KB 
ID:	17326

  2. #2
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

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

    Quote Originally Posted by LadyoftheCave View Post
    Goodmorning all,

    I have a question about importing csv-files with new products. I have downloaded a product-csv file with the dbio manager, and then I changed the products and I have uploaded it to the webstore throught the dbio manager, but then I received the following message:

    Code:
    Foutmelding The current import-file is missing these (v_products_id, v_products_model) required columns; the import is disallowed.
    But when I check the file on the missing columns, they are just there into the file..

    Click image for larger version. 

Name:	screenimagedbio.jpg 
Views:	232 
Size:	146.0 KB 
ID:	17326
    I suspect you need to add a value for "v_products_model" to your products

  3. #3
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    Hi design75. I have tried to add 0, but it didn't worked..

  4. #4
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    I have also tried to double the model and id-colums, to change place of these columns and many other variables, but for some reason the manager doesn't see these two columns..

  5. #5
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    Could it maybe has something to do with this? (when I try to make a new template, the two missing columns are already there and cannot being moved). I have the impression that the manager sees only the manually attached template fiels, not the two that are already there, because these two columns are missing.....

    Click image for larger version. 

Name:	dbiotwomissingcolumns.jpg 
Views:	126 
Size:	88.9 KB 
ID:	17327
    Last edited by LadyoftheCave; 24 Sep 2017 at 12:00 PM.

  6. #6
    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 LadyoftheCave View Post
    Could it maybe has something to do with this? (when I try to make a new template, the two missing columns are already there and cannot being moved). I have the impression that the manager sees only the manually attached template fiels, not the two that are already there, because these two columns are missing.....

    Click image for larger version. 

Name:	dbiotwomissingcolumns.jpg 
Views:	126 
Size:	88.9 KB 
ID:	17327
    Nope, when you create a DbIo template, there are sometimes (like for the Products handler) database fields that are required. The Products handler requires that the v_products_id and v_products_model fields both be present in the import ... even though (as you found) the v_products_id value has no bearing when the product is being created.

  7. #7
    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 LadyoftheCave View Post
    Goodmorning all,

    I have a question about importing csv-files with new products. I have downloaded a product-csv file with the dbio manager, and then I changed the products and I have uploaded it to the webstore throught the dbio manager, but then I received the following message:

    Code:
    Foutmelding The current import-file is missing these (v_products_id, v_products_model) required columns; the import is disallowed.
    But when I check the file on the missing columns, they are just there into the file..

    Click image for larger version. 

Name:	screenimagedbio.jpg 
Views:	232 
Size:	146.0 KB 
ID:	17326
    When you are performing a product insert, the v_products_model column is what DbIo uses to determine that the product is new. The products_id values are automatically calculated by the database; you have no control over those for a product insert/create operation.

  8. #8
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    Quote Originally Posted by lat9 View Post
    When you are performing a product insert, the v_products_model column is what DbIo uses to determine that the product is new. The products_id values are automatically calculated by the database; you have no control over those for a product insert/create operation.
    Hi lat9, thank you for your answer. I am not completely sure what you mean, but do you know how I can insert product-files without this error? Do I have to remove the id column?

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

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

    You'll need to keep the v_products_id column (set that value for new products to 0) and supply a unique v_products_model value for a new product to be created.

    When creating a new product, you'll also want to make sure that you have the v_categories_name column set to identify the category "tree" associated with the to-be-added product's master-category.

    When you're performing any kind of import, I suggest that you first perform an Import (Check-only) first. That processing will do every step of the import ... except that the database is not updated. You can then see what will happen before actually committing the information to your database.

    Once the import is finished, a link shows next to the action-selection dropdown that reads View import details; click that link and a popup will display showing you the status of that import.

    After you've verified your import-csv using Import (Check-only), that's the time to use Import (Full) which will actually write the requested information to your database.

  10. #10
    Join Date
    Jan 2016
    Location
    Netherlands
    Posts
    150
    Plugin Contributions
    0

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

    thank you very much,

    I will try that out now :)

 

 
Page 1 of 2 12 LastLast

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