1

私は最初の大規模な Ubercart サイトを開発しています。このサイトでは、既存の xBase (DBF 形式) から毎日製品データベースを更新する必要があります。DBF から MySQL/PHP への変換は、Drupal インストールと同じサーバーで処理され、私が行ったカスタム スクリプトを使用してうまく機能します。ただし、次のステップは、スクリプトで Drupal と通信し、価格/在庫レベルなどで製品ノードを更新することです。

少なくとも PHP に関しては、Google で検索してもあまりヒットしませんでした。

では、これについてどうすればよいでしょうか。Drupal の特定のページ、つまり RESTful に対して POST を使用できますか?

4

1 に答える 1

1

There's a couple ways to approach this. If you need to de-couple your import system from php you could create a api that would allow you products to be updated from an authenticated data provider.

http://drupal.org/project/services

The simpler method though is if your working in php you should bootstrap drupal and insert / update the nodes from php:

Here's a great howto on doing that: hxxp://www.group42.ca/drupal_command_line_script_template

于 2010-05-21T17:27:49.350 に答える