Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8669169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T18:24:22+00:00 2026-06-12T18:24:22+00:00

I’m tasked with coming up with an e-commerce solution for a small, local business.

  • 0

I’m tasked with coming up with an e-commerce solution for a small, local business. My client uses Intuit/Quickbooks point of sale software. I’ve just discovered that Intuit has a series of PHP 5+ classes that allow interoperability (link for anyone else that may stumble on this: https://code.intuit.com/sf/sfmain/do/viewProject/projects.php_devkit).

The website will be hosted on shared hosting, so the two systems are split quite literally. Her desktop does have internet access.

So, my questions:

  1. Is there a way for me to connect to her desktop via curl?
  2. If so, is there a way for me to do it securely if I can’t create a VPN on my host?
  3. Now that I think about it, is there a VPN service I could use?
  4. Any other security things I should be aware of?

Payment processing will be handled through Stripe (http://www.stripe.com). This is really just for inventory/order synching.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T18:24:23+00:00Added an answer on June 12, 2026 at 6:24 pm

    Your best bet is the QuickBooks Web Connector, along with that set of PHP classes you mentioned. See my specific comments below:

    I’ve just discovered that Intuit has a series of PHP 5+ classes that allow interoperability (link for anyone else that may stumble on this: https://code.intuit.com/sf/sfmain/do/viewProject/projects.php_devkit).

    It’s worth noting that that library is NOT developed by Intuit (disclaimer – I’m the developer of that library). Intuit hosts our Subversion repository, but we’re a separate company, and Intuit does not contribute to the actual PHP code. Intuit provides a Windows COM-based API only, we provide the actual PHP components so you can talk to QuickBooks from a remote server via the Web Connector, without the need to muck with COM.

    We have a ton of information on our QuickBooks integration wiki which might be helpful – specifically the QuickBooks integration with PHP section and this overview of the QuickBooks Web Connector.

    Consider grabbing the latest nightly build from the link you posted, and taking a look at this file:
    * docs/example_web_connector_point_of_sale.php

    It illustrates exchanging data between PHP and QuickBooks Point of Sale.

    The website will be hosted on shared hosting, so the two systems are
    split quite literally. Her desktop does have internet access.

    This ^^^ is just fine, and a typical scenario. It’s exactly what the Web Connector was designed for. The Web Connector essentially acts as a “dumb proxy” between a PHP SOAP service, and QuickBooks itself – it relays messages from your PHP app, over HTTP(S), to QuickBooks.

    Is there a way for me to connect to her desktop via curl?

    Not with Curl, no (though you could build one… but why reinvent the wheel?). The Web Connector is SOAP based, but your PHP components will be the SOAP server half, not the SOAP client half.

    If so, is there a way for me to do it securely if I can’t create a VPN on my host?

    The Web Connector can use SSL via HTTPS to keep the data secure while in transit across the net.

    Now that I think about it, is there a VPN service I could use?

    Just buy an SSL certificate, it’s easier. 🙂

    Any other security things I should be aware of?

    Not beyond the typical web application security guidelines that you could find elsewhere on Stackoverflow.

    If you’re going to sync to a system like Quickbooks, don’t do it real-time, do it in a batch process that is resilient to things like her desktop being turned off, the crappy office internet (compared to a datacenter) being slow or down, etc.

    This ^^^ is great advice, and is exactly how the Web Connector works.

    If you need real-time, Quickbooks running on a desktop is NOT the way to go.

    In fact, if you need real-time, QuickBooks period is not the way to go. QuickBooks is a great small to medium business accounting software… but is slow and not reliable enough for consistent real-time communication. With that said… what you’re talking about does not require real-time communication, so this shouldn’t bother you.

    Batching the orders isn’t a problem, but how would I make even a batch process resilient?

    The PHP code uses a queue with a status, so you can track what got processed, what didn’t, what you got back from QuickBooks as a response (“Added a customer successfully!” vs. “Ooops, failed to add a customer because …”), what error messages QuickBooks threw, etc. and then react appropriately with your code, or manually.

    You won’t need cron – the Web Connector can be scheduled to run, and it’ll relay all errors and a ton of other information back to you so that you can handle errors, send out warnings, build reports to show to people about what failed/succeeded, etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I have a small JavaScript validation script that validates inputs based on Regex. I
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I have an array which has BIG numbers and small numbers in it. I
I am currently running into a problem where an element is coming back from
Let's say I'm outputting a post title and in our database, it's Hello Y’all
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
That's pretty much it. I'm using Nokogiri to scrape a web page what has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.