quickbooks api php集成

I am new to quickbooks integration, i read some documents saying there is two ways to connect quickbooks, one is quickbooks online and the other way is quickbooks windows.

i am trying to connect quickbooks windows, for this i got download "quickbooks-php-master" inside there is "example_web_connector.php" where i change $dsn as $dsn = 'mysql://root@localhost/quickbooks'; i dnt hav db password

and i load example.sql(it was given by quickbooks-php-master) for this quickbooks database.

and they saying to install web connector, i download this and install, its asking .qwc file

i given qwc file as

<?xml version="1.0"?>
<QBWCXML>
  <AppName>QuickBooks Integrator</AppName>
  <AppID></AppID>
  <AppURL>localhost/quick/books/quickbooks-php-master/docs/web_connector/example_web_connector.php</AppURL>
  <AppDescription></AppDescription>
  <AppSupport>localhost/</AppSupport>
  <UserName>test user</UserName>
  <OwnerID>{90A44FB7-33D9-4815-AC85-AC86A7E7D1EB}</OwnerID>
  <FileID>{57F3B9B6-86F1-4FCC-B1FF-967DE1813D20}</FileID>
  <QBType>QBFS</QBType>
  <Scheduler>
    <RunEveryNMinutes>2</RunEveryNMinutes>
  </Scheduler>
  <IsReadOnly>false</IsReadOnly>
</QBWCXML>

And then i given above qwc file its saying QWC1039 error, error 80040154

can you give me the procedure steps, am I missing anything

In "example_web_connector_qwc.php" there is

$appurl = 'https://your-domain-name/path/to/soap/server.php';   
$appsupport = 'https://your-domain-name/get-help-here.php'; 

What i can give for these two lines

Is there any mistakes in my grammar, please forgive me...

regards

Narendra

Make sure you're following the quick-start guide located here:

Some specific feedback:

i dnt hav db password

If you don't have your MySQL database password, then you need to contact your web hosting provider and ask them for it. No one on StackOverflow is going to be able to provide this for you. Contact your web host.

and i load example.sql(it was given by quickbooks-php-master) for this quickbooks database.

You don't need example.sql if you follow the quick-start guide.

localhost/quick/books/quickbooks-php-master/docs/web_connector/example_web_connector.php

That URL from your .QWC file is not a valid URL. URLs have either http:// or https:// at the beginning of them. That doesn't. You need to specify a valid URL.

localhost/

This is also not a valid URL. See notes above. Specify a valid URL.

In "example_web_connector_qwc.php" there is ...

If you use the .QWC file you created already, but fix the URLs, then you don't need example_web_connector_qwc.php at all.

And then i given above qwc file its saying QWC1039 error, error 80040154

If you continue to get errors, you need to post your Web Connector log file, or look in the log file and find the actual error message. The Web Connector will throw the same error code for many different reasons, so without an actual error message, we're not going to be able to help you.