Page 68 of 74 FirstFirst ... 18586667686970 ... LastLast
Results 671 to 680 of 740
  1. #671
    Join Date
    Mar 2013
    Posts
    1
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Quote Originally Posted by andy2295 View Post
    Yes thats what i did first, rewrote the install process. I have been a php, java and ajax programmer for many years now
    Guys, thanks for the hard work you have put into this issue...Unfortunately, I have tried to follow all the tips mentioned to instlall Product Auction in Zen Cart v 1.5.1 and only have mixed success.

    I was finally, after creating a missing file, and getting the auctions manager page to register, to see Auctions Manager in the configuration menu. BUT, the page only lists products, and does not have admin controls as shown in the illustration that came with the install documantation.

    I figure that I have not done everything right, but cannot figure it out. I am new to Zen Cart, php, and ecommerce. Any suggestions would be appreciated.

  2. #672
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Auction Product Type

    I download the product auction type to Zen Cart 151, the auction manager and the product auction is not showing in the admin configuration group. I tried adding the pages to the Admin Page Registration and get these errors The language key entered has not been defined. Please check that it has been spelt correctly.
    Error The filename definition entered does not exist. Please check that it has been spelt correctly. I have it running on another site v139h its ok.

  3. #673
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Is the Auction Product Type abandoned, no support here.

  4. #674
    Join Date
    Jun 2012
    Location
    Phoenix, AZ
    Posts
    7
    Plugin Contributions
    1

    Default Re: Auction Product Type

    I took the auction module and made it compatible to Zen Cart v1.5.0. De-installed and re-installed several times with an existing Zen Cart store with other modules as well as with fresh new Zen Cart installs. The module seems to be working great.
    The class file needed some tweaking as the cron jobs didn't really work for me.
    Here is my configuration:
    Zen Cart v1.5.0
    PHP v5.3.10
    SQL v5.5.2

    In addition to adding code, I made several changes to the product page, product list view, and the sidebox.
    The update will be available in the Plugin area under Product Types once approved.

    Thanks for putting this great module together in the first place!
    Richard

  5. #675
    Join Date
    Jun 2012
    Location
    Phoenix, AZ
    Posts
    7
    Plugin Contributions
    1

    Default Re: Auction Product Type

    I noticed there was an issue in the SQL install script of the Auction module v2.0. The SQL installation was not able to complete w/o errors. Line 116 of the SQL install script was missing a single quote towards the end of the line.

    Sorry folks.

  6. #676
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Unzipped the files etc. Copied the auctions sql file thru notepad to the "install sql patches" portion under tools. When I run this script I get the following error....
    WARNING: An Error occurred, please refresh the page and try again...

    This is the first step so I have not gone any further...I am using version 1.51..

    Click image for larger version. 

Name:	sql1.JPG 
Views:	97 
Size:	72.3 KB 
ID:	12542Click image for larger version. 

Name:	sql2.JPG 
Views:	67 
Size:	12.6 KB 
ID:	12543

  7. #677
    Join Date
    Jun 2012
    Location
    Phoenix, AZ
    Posts
    7
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Hi Inserterprises,
    I double checked, and the install script works even after uninstall and re-install. If you had the previous version of the product auction module installed, run the uninstall script (the one from the newest version), and then rund the new install script again.
    Let me know if it works.

    Richard

  8. #678
    Join Date
    Jun 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Auction Product Type

    If someone clicks Buy Now, and then continues shopping and goes back and clicks Buy Now again it increments the quantity in the cart, any ideas on how to prevent that from happening.

    George

  9. #679
    Join Date
    Jun 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Auction Product Type

    Also there is no delete option in the Cart to remove the item should the shopper decide to not continue with a Buy Now option.

    Any ideas on how to fix that?

    George

  10. #680
    Join Date
    Jun 2012
    Location
    Phoenix, AZ
    Posts
    7
    Plugin Contributions
    1

    Default Re: Auction Product Type

    Hi George,

    if the Buy Now option is enabled, it will allow adding the product multiple times to the cart. Zen Cart updates the product quantity when the checkout process completes. Until then, the item is still "available" for adding to the cart.

    The Buy Now option is a bit sticky for the auction products, because it will require a lot more coding:
    - the acution needs to be closed prior to the actual end date/time
    - there is an extra email required to notify all bidders that the auction closed due to a "buy now"
    - if the auction closes with the regular end date/time, there needs to be a system routine to remove the item from a customer's cart if it was added as "buy now", but not checked out
    - you will probably want to notify that customer that the item is no longer in their cart.
    And there is probably more to it...

    For the issue with the delete option after the item was added to the cart through "Buy Now", please open the following file:
    /includes/modules/page/shopping_cart/header.php and go to line 103.

    Replace the following 4 lines:
    if ($p_type_2 == 'product_auction' && AUCTION_INFO_DISPLAY_CART_REMOVE == '0') {
    $buttonDelete = false;
    $checkBoxDelete = false;
    }

    With this code:
    if ($p_type_2 == 'product_auction') {
    $sql = "SELECT auction_closed
    FROM " . TABLE_PRODUCT_AUCTION_EXTRA . "
    WHERE products_id='" . (int)$products_id . "'";
    $pae_closed = $db->Execute($sql);
    $aclosed = $pae_closed->fields['auction_closed'];
    }
    if ($aclosed == 'Y' && AUCTION_INFO_DISPLAY_CART_REMOVE == '0') {
    $buttonDelete = false;
    $checkBoxDelete = false;
    }

    Hope that helps.
    Richard

 

 
Page 68 of 74 FirstFirst ... 18586667686970 ... LastLast

Similar Threads

  1. Auction Product type
    By Andreas1211 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 14 Aug 2014, 02:13 PM
  2. Auction Product Type: Can't add a product of the type.
    By sw0rdz in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 5 Sep 2009, 02:11 AM
  3. Auction Product Type
    By chinthana in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Jun 2009, 10:33 AM
  4. Auction Mod. Product Type
    By wilt in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 15 Feb 2007, 07:35 AM

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