Page 119 of 122 FirstFirst ... 1969109117118119120121 ... LastLast
Results 1,181 to 1,190 of 1212
  1. #1181
    Join Date
    Jun 2012
    Posts
    1
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    Adam, I have a client who wants to proccess payments through quickbooks with zen-cart. I see the free version is outdated and since we are using 1.5 can you give me an idea of a cost for a plug-in that will work or will the free version work with 1.5.

    We want to make sure this will work without any issues for this client.

  2. #1182
    Join Date
    Jan 2005
    Location
    Oregon
    Posts
    515
    Plugin Contributions
    1

    Default Re: Quickbooks Import QBI

    QBI does not work with UK Quickbooks.

  3. #1183
    Join Date
    Jan 2005
    Location
    Oregon
    Posts
    515
    Plugin Contributions
    1

    Default Re: Quickbooks Import QBI

    Quote Originally Posted by vman570 View Post
    Adam, I have a client who wants to proccess payments through quickbooks with zen-cart. I see the free version is outdated and since we are using 1.5 can you give me an idea of a cost for a plug-in that will work or will the free version work with 1.5.

    We want to make sure this will work without any issues for this client.
    1) QBI does not import credit card information into Quickbooks. Most people process credit cards in real time inside of Zen Cart using a payment gateway, so it is not necessary for QBI to import this information.
    2) The old free version of QBI (almost 6 years old) works with ZC 1.3.x and probably also works fine with 1.5.x, however I have not tested it and don't offer help with that.
    3) The old free version may have some issues with PHP 5.x. I have not tested it on PHP 5 and can't offer help with that.
    4) I can't discuss non-free versions here, but try using Google to find out about it.
    Adam

  4. #1184
    Join Date
    Jun 2012
    Posts
    12
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    i have read most of the post, so my questions is, i have just opened up business in australia, so if it was to buy quickbooks to use as my tax information for the accountant, then i can transfer from zen cart into the quickbooks and this is automated from the zen cart. it will keep the books up to date with invoices and etc, i dont use a payment gateway only bank deposit as payment reference on the website

  5. #1185
    Join Date
    Sep 2012
    Posts
    1
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    No luck with installation at all. Nothing ever shows up. I've tried uploading to the "admin" directory and also the "zc_admin" directory and still nothing. I have yet to see a menu item for QBI anywhere in my store. I know I must be doing something wrong, but what I have no clue. And yes, I'm new to ZenCart.

  6. #1186
    Join Date
    Dec 2008
    Location
    Hanover Township PA, USA
    Posts
    122
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    Quote Originally Posted by Rathius View Post
    No luck with installation at all. Nothing ever shows up. I've tried uploading to the "admin" directory and also the "zc_admin" directory and still nothing. I have yet to see a menu item for QBI anywhere in my store. I know I must be doing something wrong, but what I have no clue. And yes, I'm new to ZenCart.
    If you are using ZenCart Version 1.50 or higher, the QBI Free Plugin will not function. You would need to spend well over $100.00 to BUY the Plugin for ZenCart Version 1.50 from the Author.
    Daniel Osko

  7. #1187
    Join Date
    Mar 2010
    Posts
    27
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    Quote Originally Posted by danielosko View Post
    If you are using ZenCart Version 1.50 or higher, the QBI Free Plugin will not function. You would need to spend well over $100.00 to BUY the Plugin for ZenCart Version 1.50 from the Author.

    However, after many hours of research and learning code on the way. I found out how to get Quickbooks Import QBI Version: 3.21b to work for my Zen Cart 1.3.9x since Adam is keeping most of us in the dark. I don't blame him. If I spent as many hours as he did working on an awesome plug-in, I would want to be compensated for my time as well instead of giving out free support.

    Anyways, anybody who wants Quickbooks Import QBI Version: 3.21b to work on at least Zen Cart 1.3.9x (have not tested v1.5x) need to update the following files:

    qbi_v3_21b_zen/catalog/admin/qbi_0_00_3-21.sql
    qbi_v3_21b_zen/catalog/admin/qbi_1_00_3-21.sql

    Look thru each file for this line of code:
    Code:
      updated timestamp(14) NOT NULL,
      added timestamp(14) NOT NULL,
    AND CHANGE IT TO (REMOVE THE (14)):
    Code:
      updated timestamp NOT NULL,
      added timestamp NOT NULL,
    Also you may need to change the following code depending on which version of phpMyAdmin/MySQL you are using from:
    Code:
    TYPE=MyISAM;
    To:
    Code:
    ENGINE=MyISAM;
    and Save changes and Install Databases.

    Let me know if this works for you!

  8. #1188
    Join Date
    Jan 2005
    Location
    Oregon
    Posts
    515
    Plugin Contributions
    1

    Default Re: Quickbooks Import QBI

    Hi,

    Quote Originally Posted by g00glethis1 View Post
    However, after many hours of research and learning code on the way. I found out how to get Quickbooks Import QBI Version: 3.21b to work for my Zen Cart 1.3.9x since Adam is keeping most of us in the dark. I don't blame him. If I spent as many hours as he did working on an awesome plug-in, I would want to be compensated for my time as well instead of giving out free support.
    Thank you! The current version has about 7,000 lines of code and people need help from time to time. It would be impossible (and I wouldn't want to!) do this for free! I had intended to make an updated "lite" free version at some point, but just haven't found the time.

    I haven't looked at 3.21 for quite some time, but I don't think any significant changes are needed for ZC v1.5. There were no changes needed in the paid version. QBI talks directly to the database, and the basic database structure in the relevant tables in ZC has had few changes over the years.

    The problems you may run into with QBI v3.21 are related to deprecated PHP and MySQL code, and have to do with the version of PHP and MySQL you are running.

    The changes mentioned in the previous post are needed if you are running MySQL v5.5 or later, and are not directly related to the version of ZC. You do need to remove the "(14)" after timestamp. As for "TYPE=MyISAM", you can change it as suggested to "ENGINE=MyISAM", or just leave it out entirely. If you leave it out, the table engine will be whatever your MySQL default is. It should work fine with either MyISAM or InnoDB.

    Thanks,
    - Adam (creator of QBI)

  9. #1189
    Join Date
    Mar 2010
    Posts
    27
    Plugin Contributions
    0

    Default Re: Quickbooks Import QBI

    As soon as my store starts making some money, I will invest into the paid version QBI. Just launched the website & it went live tonite!!!

  10. #1190

    Default Re: Quickbooks Import QBI

    Quote Originally Posted by lunabug View Post
    I've been using this add-on for several months and aside from a few minor issues has worked flawlessly, until today.

    When I exported my orders there is one missing, I've looked at the data, the qbi_imported field is set to 0 in the orders table. Does anyone know what other fields are in the query and what they need to be set to to show as a new order?

    Thanks for your help!

    Leslie
    I finally figured out what is happening here. If the "Orders.Orders_Status" field is not = 1 then the QBI add-on won't pull the record as being a new order. This happens if the invoice has no dollar value, I'm guessing the core code has something that sets zero dollar values to in process.

    Regardless, now before I use the QBI to download new invoices I run this simple code as a sql patch in the admin tools section:
    Code:
    UPDATE orders
    SET orders_status = 1
    WHERE qbi_imported = 0;
    QBI then sets the order status to whatever you have that configured to in the QBI configurations settings.

    YAY!
    I was floating in a peaceful sea...rescued by a sinking ship.

 

 

Similar Threads

  1. Quickbooks Import vs. Quickbooks Sync
    By sports guy in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 28 Oct 2011, 02:01 AM
  2. Quickbooks and QBI?
    By basia in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 30 Mar 2011, 03:59 PM
  3. Success using Zen/Paypal PPEC/QBI/Quickbooks?
    By swingandmiss in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 22 Jul 2007, 11:14 PM
  4. Problem with installation of quick book import(QBI)
    By kalyani in forum Installing on a Linux/Unix Server
    Replies: 0
    Last Post: 6 Mar 2007, 01:30 PM
  5. Import to Quickbooks?
    By opsrcs in forum General Questions
    Replies: 1
    Last Post: 3 Oct 2006, 06:05 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