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 8074861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:47:55+00:00 2026-06-05T14:47:55+00:00

Originally, I was searching how to use php to retrieve book information from amazon.

  • 0

Originally, I was searching how to use php to retrieve book information from amazon. and I found this question:

How can I use Amazon's API in PHP to search for books?

I think this works, but I am having stupid question. I am not able to install and use Zend Service Amazon. I downloaded the software of around 60 MB but, was corrupted.

May be, I actually want some php files to implement it. but, its giving some kind of exe file.

so, here my question is;

Where do I download Zend framework?
How do I install it?
How do I use it?

  • 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-05T14:47:57+00:00Added an answer on June 5, 2026 at 2:47 pm

    The official download for Zend Framework can be found here. Since you intend to use ZF more as a library than an MVC application framework, you only really need to download the much smaller minimal package.

    From looking at the Amazon files you are interested in, I think the list of the following files are all you would need to copy into your application in order to use the Zend Framework Amazon Service APIs (when I use ZF as a library, I always try to only include the actual files I will be using, rather than the whole package, but for starters you can just copy the entire Zend folder to get going):

    Zend/Exception.php
    
    Zend/Loader.php
    Zend/Loader/Autoloader.php
    Zend/Loader/Exception.php
    
    Zend/Uri.php
    Zend/Uri/Exception.php
    
    Zend/Service/Abstract.php
    Zend/Service/Amazon.php
    Zend/Service/Exception.php
    
    Zend/Service/Amazon/Abstract.php
    Zend/Service/Amazon/Accessories.php
    Zend/Service/Amazon/Authentication.php
    Zend/Service/Amazon/CustomerReview.php
    Zend/Service/Amazon/EditorialReview.php
    Zend/Service/Amazon/Image.php
    Zend/Service/Amazon/Item.php
    Zend/Service/Amazon/ListmaniaList.php
    Zend/Service/Amazon/Offer.php
    Zend/Service/Amazon/OfferSet.php
    Zend/Service/Amazon/Query.php
    Zend/Service/Amazon/ResultSet.php
    Zend/Service/Amazon/SimilarProduct.php
    
    Zend/Rest/Client.php
    Zend/Rest/Client/Result.php
    Zend/Rest/Client/Result/Exception.php
    
    Zend/Crypt.php
    Zend/Crypt/Exception.php
    Zend/Crypt/Hmac.php
    Zend/Crypt/Hmac/Exception.php
    

    If I missed any, forgive me; you should get an exception saying class not found if I left any out, and that should be pretty straightforward to resolve which additional file(s) you need to include.

    In order to use Zend Framework I recommending doing the following:

    First and foremost, add Zend Framework’s files to your PHP include_path. In order to use the ZF files, you need to preserve the directory structure they use, at the very least, you need a Zend folder with all the ZF files in there.

    Add to your include path like this:

    set_include_path(get_include_path() . PATH_SEPARATOR . '/zf/folder/path');
    

    zf/folder/path should be the path to the folder that the Zend directory is in, but make sure not to actually include the Zend folder in the include path (since Zend does require_once 'Zend/File.php';

    Secondly, set up the autoloader if possible. If you decide to use the Zend Framework autoloader, you won’t have to manually ‘require_once’ many of the ZF files.

    To set up their autoloader, all you have to do is get an instance of it:

    require_once 'Zend/Loader/Autoloader.php';
    $autoloader = Zend_Loader_Autoloader::getInstance();
    

    You don’t need to save or do anything with $autoloader. Just that call is enough to register the Zend autoloader. Since the ZF files are in your path, it will automatically know how to load and locate all ZF files.

    After you perform those steps, you are able to use the Amazon services via Zend Framework in your PHP application.

    As for the details of using that, hopefully you can find all the details and help you need here, Zend_Service_Amazon Reference Guide. The reference guide should be your best bet, but you can always find the phpDocumentor class documentation here.

    Hope that helps! Feel free to ask if you need clarification on anything.

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

Sidebar

Related Questions

Originally posted on Server Fault , where it was suggested this question might better
I originally started this question in another thread, but that thread was sorta, kinda
I originally used JQuery for this project, but now I'm having to use Prototype,
This question relates to an ASP.NET website, originally developed in VS 2005 and now
Update: My original intention for this question was to determine if PHP actually has
I have been searching and searching for an answer to this question but with
Edit: After receiving more information from DCoder, the phrase I was searching for here
Originally I had two tables in my DB, [Property] and [Employee]. Each employee can
I've been having trouble searching for this answer because I am not quite sure
I'm searching for an implementations of the Damerau–Levenshtein algorithm for PHP, but it seems

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.