Closed (fixed)
Project:
Ubercart Auction
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
2 Jul 2011 at 09:12 UTC
Updated:
21 May 2016 at 20:34 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
jepster_Hi,
thanks for your lovely words. Currently I have no plans to port this module to d7. Because I'm using this module in D6 websites. If you've experienced in modle development, you can do this. :-)
Comment #2
shenagarg commentedAnyone else making any efforts for the same?
Thanks
Comment #3
jepster_Have you started? Maybe I can help you. Currently I have no time, to do this by my own. Feel free to write me an message with your ideas.
Comment #4
jepster_status update
Comment #5
Starminder commentedsubscribe
Comment #6
KirstenLangholz commentedAnother person who would love to use it, but has no programming skills. Throwing in some bucks can help?!? ;)
Comment #7
IKE0088 commentedI just got done porting this module to D7, using the coder module and have a few errors to work out, but don't know how to do it. Anyone have any ideas on how to fix the following?
Line 143: Potential problem: FAPI elements '#title' and '#description' only accept filtered text, be sure to use check_plain(), filter_xss() or similar to ensure your $variable is fully sanitized.
'#description' => $is_curr_auction ? t('Warning: Unchecking this box will stop this product from being auctioned and its bid history will be erased.', array('!blink' => url("node/{$form['#node']->nid}/bids"))) : '',
This is the same error I am getting on a couple of the modules, but if I know how to fix this one, I can clear the rest. Please review and let me know.
Comment #8
IKE0088 commentedFixed it. Looks like a clean version now. See attached.
Comment #9
IKE0088 commentedok, sorry 3rd time is a charm.
Comment #10
IKE0088 commentedSpoke too soon. Now i am throwing up the following:
Error message
Notice: Undefined index: access in _menu_translate() (line 778 of /home/public_html/includes/menu.inc).
Notice: Undefined index: access in menu_local_tasks() (line 1892 of /home/public_html/includes/menu.inc).
Any thoughts?
Running Drupal Core 7.7
Comment #11
salientknight commentedI get the following error when trying to install this:
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'nid, time' doesn't exist in table: CREATE TABLE {uc_auction_bids} ( `bid` INT unsigned NOT NULL auto_increment COMMENT 'The ID number of the bid.', `nid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid of the product.', `uid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The user.uid of the bidder.', `time` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The time the bid was placed.', `amount` DECIMAL(15, 3) unsigned NOT NULL DEFAULT 0 COMMENT 'The amount that was bid.', PRIMARY KEY (`bid`), INDEX `nid_time` (`nid, time`), INDEX `nid` (`nid`), INDEX `uid` (`uid`) ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COMMENT 'Keeps tracks of bids on products.'; Array ( ) in db_create_table() (line 2686 of
Comment #12
KirstenLangholz commentedAn AJAX HTTP error occurred. HTTP Result Code: 200 Debugging information follows. Path: /batch?id=62&op=do StatusText: OK ResponseText: {"status":true,"percentage":"2","message":"Trying to check available update data ...\u003cbr \/\u003eChecked available update data for \u003cem class=\"placeholder\"\u003eCKEditor\u003c\/em\u003e."} Warning: Cannot modify header information - headers already sent by (output started at /is/htdocs/wp10608178_FVPFCFFV00/www/7-commerce/includes/common.inc:2567) in /is/htdocs/wp10608178_FVPFCFFV00/www/7-commerce/includes/bootstrap.inc on line 1207 Recoverable fatal error: Argument 2 passed to db_query() must be an array, integer given, called in /is/htdocs/wp10608178_FVPFCFFV00/www/7-commerce/sites/all/modules/uc_auction/uc_auction.module on line 699 and defined in db_query() (line 2311 of /is/htdocs/wp10608178_FVPFCFFV00/www/7-commerce/includes/database/database.inc).This is the error message I recieved. Which integer do I have to replace by which array?
Comment #13
IKE0088 commentedKirsten, are you using commerce or Ubercart?
Comment #14
KirstenLangholz commentedHi Ike,
I tried out commerce first, but now shifted back to Ubercart simply because of the auction module. The 7-commerce that is in the paths has nothing to do with the installation. It is the name of the folder, Drupal 7.8 is installed in.
Thanks for asking!
Comment #15
IKE0088 commentedTried porting 6x-1.0 and am getting the same thing. Need help.
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1072 Key column 'nid, time' doesn't exist in table: CREATE TABLE {uc_auction_bids} ( `bid` INT unsigned NOT NULL auto_increment COMMENT 'The ID number of the bid.', `nid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The node.nid of the product.', `uid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The user.uid of the bidder.', `time` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The time the bid was placed.', `amount` DECIMAL(15, 3) unsigned NOT NULL DEFAULT 0 COMMENT 'The amount that was bid.', PRIMARY KEY (`bid`), INDEX `nid_time` (`nid, time`), INDEX `nid` (`nid`), INDEX `uid` (`uid`) ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8 COMMENT 'Keeps tracks of bids on products.'; Array ( ) in db_create_table() (line 2657 of /home/public_html/includes/database/database.inc).
Comment #16
IKE0088 commentedI figured out a way around the PDOException in my last post. It involved doing an export from a D6 version of the four auction tables in PHP MyAdmin and importing the SQL tables into D7. Now I am left with four error messages (that I can tell at this point).
Error message
Notice: Undefined index: access in _menu_translate() (line 778 of /home/public_html/includes/menu.inc).
Error message
Notice: Undefined index: access in menu_local_tasks() (line 1892 of /home/public_html/includes/menu.inc).
Fatal error: Unsupported operand types in /home/public_html/modules/user/user.admin.inc on line 696
Error message
Recoverable fatal error: Argument 2 passed to db_query() must be an array, integer given, called in /home/public_html/modules/uc_auction/auto_restart_auctions/auto_restart_auctions.module on line 25 and defined in db_query() (line 2282 of /home/public_html/includes/database/database.inc).
Any assistance in clearly these out would be appreciated.
Comment #17
KirstenLangholz commentedWith version provided in #9 here in this thread, I receive the following error message in the footer:
In addition running the cron job is impossible. When I deactivate uc_auction the error messages disappear.
Comment #18
salientknight commentedRecoverable fatal error: Argument 2 passed to db_query() must be an array, integer given, called in /var/www/site/html/sites/all/modules/uc_auction/auto_restart_auctions/auto_restart_auctions.module on line 25 and defined in db_query() (line 2311 of /var/www/site/html/includes/database/database.inc).
Notice: Undefined index: access in _menu_translate() (line 778 of /var/www/site/html/includes/menu.inc).
Notice: Undefined index: access in menu_local_tasks() (line 1892 of /var/www/site/html/includes/menu.inc).
Since installing this, I get errors on every page, and my site theme is pink instead of black. (no joke)
Comment #19
salientknight commentedAnd more ...
An AJAX HTTP error occurred. HTTP Result Code: 200 Debugging information follows. Path: /batch?render=overlay&id=46&op=do StatusText: OK ResponseText: {"status":true,"percentage":"2","message":"Trying to check available update data ...\u003cbr \/\u003eChecked available update data for \u003cem class=\"placeholder\"\u003ePixture Reloaded\u003c\/em\u003e."}Recoverable fatal error: Argument 2 passed to db_query() must be an array, integer given, called in /var/www/site/html/sites/all/modules/uc_auction/uc_auction.module on line 699 and defined in db_query() (line 2311 of /var/www/site/html/includes/database/database.inc).
Comment #20
IKE0088 commentedDoesn't appear as though this is working out the way I thought it would. Tried re-running coder module, porting again to clean site and getting the same. Need to bring in the big dogs. Sorry, but my specialty is not module development.
Comment #21
KirstenLangholz commentedDear Ike,
thank you for starting out with it at all!!! I found that on the module page it says version 6.x .. maybe this has to change, too.
I already adjusted this issue and also enabled the auction API module. Now I found out by this error message:
that obviously the corresponding tables are not created. So far, the noob I am, couldn't figure out where the table creation is triggered during installation process. Anybody who can help me out with that information?
Comment #22
KirstenLangholz commentedHere are my adjusted version attached.
Comment #23
KirstenLangholz commentedDatabase tables are not created!
So, I figured out that the databases are not created at all for this module. Just importing the D6 tables will not work as structure has been changed for D7.
Guess we have to fix that first! Any suggestions?
Comment #24
KirstenLangholz commented@IKE0088
can you please post the SQL statement to create the four tables here, so I can go on working with them? Have no D6 running to get them myself. Thanks a lot!
Comment #25
IKE0088 commentedThanks Kirsten! Nothing like two noobs moving into unchartered territory. Here is the sql statement.
Comment #26
KirstenLangholz commentedThank you back! Sorry was in meetings all day long. Will look into it tomorrow when I have my day off.
You are right. Feels a little bit like the blind talking to the deaf here... ;)
Comment #27
mangiok commentedI am following you two because my knowledge here is limited, I am trying drupal after some good time with another CMS. I doubt I can do much but I will check your work
Comment #28
IKE0088 commentedI think I have pinned it down to six db_query in the uc_auction dev version but coder is not generating any patch files for me. Can someone try running coder on the dev version to see if patches get produced?
Comment #29
mangiok commentedAny progress?
Comment #30
KirstenLangholz commentedHello everybody,
coder is not working properly as it tells me about 7 db_query errors it cannot fix. Unfortunately not tell which queries are causing troubles. I found out, that only the uc_auction table is not created upon activation. I will check the query changes manually.
Any support is highly appreciated.
Comment #31
IKE0088 commentedHello Kirsten. When you ran coder did it produce blank patch files also?
Comment #32
KirstenLangholz commentedHello Ike,
before it ran, it told me that there are 7 db_query errors in there that cannot be fixed during conversion. This was the point where I decided not to invest the USD 150 for conversion. ;)
Comment #33
KirstenLangholz commentedThis is how the result looked like!
Comment #34
IKE0088 commentedGood news! Finished all of the db_query issues. Finishing clean up. Will post shortly.
Comment #35
KirstenLangholz commentedHello my dears,
please find attached the error messages I was given by the coder module regarding the uc_auction module including uc_auction_now. Hopefully this will help.
Comment #36
KirstenLangholz commentedOkay, I used the coder module to let it run through all modules in the auction package. Here are the results as an pdf file.
I will start from top and fix it one by one, hoping this would do the trick. If somebody of you has already fixed some of the errors, please post them here.
Comment #37
IKE0088 commentedCloser, but not quite there. Databases get updated with this version. Need to look at the hook_alter_form code in uc_auction.module. Doesn't appear to generate options when creating content to show product is auctioned.
There is one PHP error message I have come across with new install:
Notice: Undefined index: uc_auction_notify_outbid_subj in uc_get_message() (line 1645 of /home/a5754896/public_html/sites/all/modules/ubercart/uc_store/uc_store.module).
I have removed auto_restart module and will come back to it later. Sorry, it was killing me...
Comment #38
KirstenLangholz commentedHi Ike,
we are hitting the right road, I guess. Personally I think we can live without the auto_restart module at all.
Comment #39
IKE0088 commentedAgreed ;)
Comment #40
IKE0088 commentedFixed he outbid error message. It was commented out. Will post new version soon.
Comment #41
IKE0088 commentedIf at first, you don't succeed, try, try again...
Almost done. They actually changed the product_types in Ubercart D7 to uc_product_types. It is always the little things, that will drive you crazy. That is why it wasn't rendering in the Add Product Form. Please test, looking for feedback.
Comment #42
IKE0088 commentedTrouble with 2 lines out of the uc_auction.module file starting line 402:
$bids_already = db_query("SELECT bid FROM {uc_auction_bids} WHERE nid = %d", $form_state['values']['nid']);
$bids_already = db_fetch_object($bids_already);
Any thoughts on a rewrite? Please let me know.
Comment #43
IKE0088 commentedFixed it. Will post shortly.
Comment #44
IKE0088 commentedNeed to fix some of the views functionality, and am receiving a strange parameter error message:
Notice: Undefined index: #parameters in uc_auction_now_form_alter() (line 102 of ...uc_auction_now.module)
Notice: Trying to get property of non-object in uc_auction_now_form_alter() (line 102 of ...uc_auction_now.module)
Any thoughts?
Comment #45
KirstenLangholz commentedHello Ike,
just a short message to inform you that I am too busy to test today. I will test it tomorrow afternoon (MET) and get back to you then. Right now - you are too fast for me ;))
Appreciate your enthusiasm.
Comment #46
IKE0088 commentedDoesn't appear to be saving the new product as an auctioned item.
Comment #47
basicmagic.net commentedsubscribe
Comment #48
IKE0088 commentedStill running same error messages, but caught another uc_product_types. Updated version attached. Need another set of eyes.
Comment #49
IKE0088 commentedI think it is the nodeapi changes affecting the uc_auction_now.module file. Need some help, please.
Comment #50
KirstenLangholz commentedIke,
you are not alone. I have downloaded your latest zip file and installed it on a fresh installation. Will only have time to go into it on the weekend (sat, sun). Please be patient with me ;)
Comment #51
nohup commentedGuys,
I did a d7 port of uc_auction few months ago. Had a need for a project at that time. The uc_auction module works but views and other modules still have bugs.
I hope it is not too late to post it here, may be you all can integrate it or use it in some way. I haven't had a chance to keep up with the issue queue, sorry about that.
Thanks.
Comment #52
KirstenLangholz commentedThank you nohup,
Ike's version still has a bug - will look into your code and see how we can use it to fix it. Thanks for your contribution.
Comment #53
IKE0088 commentedWorks fine but is throwing up the following whenever a basic page is created and it treats the page like an auction as well.
Error message
Notice: Undefined index: bid_count in uc_auction_bid_table_form() (line 804 of /home/public_html/sites/all/modules/uc_auction/uc_auction.module).
Notice: Undefined index: bid_count in uc_auction_bid_table_form() (line 810 of /home/public_html/sites/all/modules/uc_auction/uc_auction.module).
Notice: Undefined index: start_price in uc_auction_bid_table_form() (line 810 of /home/public_html/sites/all/modules/uc_auction/uc_auction.module).
Notice: Undefined index: expiry in uc_auction_bid_table_form() (line 815 of /home/public_html/sites/all/modules/uc_auction/uc_auction.module).
Notice: Undefined index: expiry in uc_auction_bid_table_form() (line 842 of /home/public_html/sites/all/modules/uc_auction/uc_auction.module).
Notice: Undefined index: expiry in uc_auction_now_node_view() (line 205 of /home/public_html/sites/all/modules/uc_auction/uc_auction_now/uc_auction_now.module).
Comment #54
KirstenLangholz commentedI can reproduce this error.
Comment #55
nohup commentedReplace the uc_auction_now.module with the attached file.
Comment #56
KirstenLangholz commentedOkay,
after implementing #55 I have reinstalled the module on a fresh installation and so far the module runs without any errors.
I am still testing, but I think the time has come to make this version a 7.x-1.x-dev version so more people can test.
Most of my test auctions will be done by the end of the week. I will then publish a final report about it here.
IKE, I know I wasn't the support I hoped I could be, so my heartfelt thanks for all you have done to port this module for me and the community. THANK YOU!
Comment #57
nohup commentedjepSter,
Attached is a patch against 6.x-1.x-dev to generate a 7.x-1.x branch.
Please create a new branch for 7.x and tag it or you can give me access and I will create and maintain it.
Comment #58
jepster_hey,
nice that you've pushed effort into porting this module. I'll make a branch for you soon.
Comment #59
jepster_I wanted to use this patch, but I get the following in my command line (inside the uc_auction dev folder).
Comment #60
nohup commentedYou have to use git apply
git apply uc_auction-7.x-1207108-56.patchYou can read more about it here
http://drupal.org/node/1054616#applying-patches
Comment #61
KirstenLangholz commentedHello jepSter,
please find attached the version with all patches etc. I tested it on the weekend it it seems to work perfectly.
On DrupalCenter.de though another user asked, if it is still possible to change the amount of the item auctioned in the cart. I haven't checked this so far. Can only test it tonight maybe tomorrow.
Can somebody confirm this behavior?
Comment #62
IKE0088 commentedI've been testing the functionality on nohup's version fairly extensively. Whenever loading a new basic page I am getting the following:
MESSAGE Notice: Undefined property: stdClass::$is_auction in uc_auction_node_insert() (line 480 of /home/public_html/modules/uc_auction/uc_auction.module).
MESSAGE Notice: Undefined property: stdClass::$is_auction in uc_auction_node_validate() (line 469 of /home/public_html/modules/uc_auction/uc_auction.module).
I have found that this can be easily corrected by clearing all caches.
To Kirstens point, you cannot edit the quantity on checkout. You could on the development version I was trying to port, but not on nohup's version.
I have also found that you cannot uncheck a current auction to make edits to the sale price, even if no bids have been placed. You have to delete the entire product and re enter it.
Would love it if jepster or nohup could take a peek at #48 at some point to move the development version of 6 to a stable release for 7.
Comment #63
jepster_@ KirstenLangholz
I'm the user who asked you on drupalcenter.de/forum. :]
how you limited the possible amount of auction-products in the cart?
Comment #64
jepster_tried to patch with git apply, but it isn't possible:
Comment #65
lasdjfk commentedsubscribe
Comment #66
lasdjfk commentedI used the KirstenLangholz-version above and updated tokens handling to use Drupal 7 hook_tokens(). Also made a tiny adjustment in the e-mail generation (got an error there).
So this one seem to be working very well for me.
Comment #67
KirstenLangholz commented@JepSter
I didn't have to limit it via the system. If the items offered are solely unique specimen this is not necessary. Seems you are German, too. How about talking on Skype with each other? Will send you a mail via drupalcenter.de
Comment #68
jepster_@ KirstenLangholz:
So you mean, that when you have 1 car at home (for example), the system will automatically know, that the user cannot change the quantity in cart? sorry, but telepathy isn't implemented in the system, yet. *lol*
I've wanted to create a new 7.x-1.x branch with git instructions here on drupal.org, but that sucks:
I can work on the 6-branch but not create the 7. Has anybody an idea? In the #drupal-gitsupport irc channel I cannot get an answer.
Comment #69
jepster_OK, I've uploaded it to d.o. I had to change the remote url via git.
Comment #70
IKE0088 commentedI am still throwing up some errors on a fresh installation. I will post those shortly. As far as the process goes, seeing some major flaws using #66:
Admin loads new product for auction:
Sell Price: $20.00
Start Price: $5.00
User 1 logs in and places Buy it Now Order. Receives confirmation email for $20.00.
User 1 places bid on same product and it is accepted for $6.00.
User 2 signs in and places Buy it Now Order.
Receives confirmation email for $20.00.
User 2 places bid on same product and it is accepted for $7.00.
User 1 receives Outbid Notification Email showing high bid of $7.00.
Admin tries to remove checkbox for "This is an Auctioned Product". File saves however still shows as an auctioned product, check included in checkbox.
User 2 receives email at auction expiry showing they won the auction with high bid of $7.00.
When adding to cart, it shows checkout amount of $20.00, not the high bid.
Comment #71
IKE0088 commentedInstalling and activating uc_auction:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 71 bytes) in /home/public_html/includes/bootstrap.inc on line 955
Installing and activating Antisnipe and Buy Now:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 100 bytes) in /home/public_html/includes/database/query.inc on line 1850
After adding second auction and a new user signs in:
Notice: Undefined index: form_token in theme_uc_auction_now_table() (line 249 of /home/public_html/sites/all/modules/uc_auction/uc_auction_now/uc_auction_now.module).
Click on Buy it Now from Front Page:
Fatal error: Call to undefined function uc_auction_now_submit() in /home/public_html/includes/form.inc on line 1430
Comment #72
jepster_@ IKE0088:
change the memory limit in your php.ini file. for drupal you need 128 MB.
NEW BRANCH FOR DRUPAL 7 VERSION:
I've setted up a new branch of my module via git, but it isn't visible on the project page. there was no error message in git. see the output of my terminal:
Has anybody an idea?
Comment #73
jepster_OK, I've hat to click on "Add new release" at the bottom of the project page.. thanks to chx in #drupal-gitsupport in IRC.
Comment #74
IKE0088 commentedJepster, what about the errors in #70. Doesn't appear to be working as intended. It is not taking the high bid upon checkout and it is not disabling it as a current auction if the item was bought via Buy it Now.
Comment #75
shenagarg commented@Jespter: Sorry, I didnt get time in between. But now I have time to work on it. I see this thread already going on for D7 and am glad to know that. :)
Please let me know if I can be of any help. Thanks.
Comment #76
IKE0088 commentedCreate new basic page:
•Notice: Undefined property: stdClass::$is_auction in uc_auction_node_validate() (line 469 of /home/a3709328/public_html/sites/all/modules/uc_auction/uc_auction.module).
•Notice: Undefined property: stdClass::$is_auction in uc_auction_node_insert() (line 480 of /home/a3709328/public_html/sites/all/modules/uc_auction/uc_auction.module).
Creating View for Current Auctions:
PDOException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'auctions' for key 'name': INSERT INTO {views_view} (name, description, tag, base_table, human_name, core) VALUES (:db_insert_placeholder_0, :db_insert_placeholder_1, :db_insert_placeholder_2, :db_insert_placeholder_3, :db_insert_placeholder_4, :db_insert_placeholder_5); Array ( [:db_insert_placeholder_0] => auctions [:db_insert_placeholder_1] => [:db_insert_placeholder_2] => default [:db_insert_placeholder_3] => node [:db_insert_placeholder_4] => Auctions [:db_insert_placeholder_5] => 7 ) in views_db_object->save_row() (line 2009 of /home/a3709328/public_html/sites/all/modules/views/includes/view.inc).
Creating New Account:
Notice: Undefined index: form_token in theme_uc_auction_now_table() (line 249 of /home/a3709328/public_html/sites/all/modules/uc_auction/uc_auction_now/uc_auction_now.module)..
When Logging Out:
PDOException: SQLSTATE[HY000] [2013] Lost connection to MySQL server at 'reading initial communication packet', system error: 111 in lock_may_be_available() (line 167 of /home/a3709328/public_html/includes/lock.inc)...
Also, scenario:
Admin loads new product for auction:
Sell Price: $20.00
Start Price: $5.00
User 1 logs in and places Buy it Now Order. Receives confirmation email for $20.00.
User 1 places bid on same product and it is accepted for $6.00.
User 2 signs in and places Buy it Now Order.
Receives confirmation email for $20.00.
User 2 places bid on same product and it is accepted for $7.00.
User 1 receives Outbid Notification Email showing high bid of $7.00.
Admin tries to remove checkbox for "This is an Auctioned Product". File saves however still shows as an auctioned product, check included in checkbox.
User 2 receives email at auction expiry showing they won the auction with high bid of $7.00.
When adding to cart, it shows checkout amount of $20.00, not the high bid.
Comment #77
IKE0088 commentedIs anyone experiencing the same issues?
Comment #78
jepster_it's a pitty that the porters of the 7 version aren't answering. But the error message seems to point on the views module. You should ask in the views issue queue.
Comment #79
nohup commentedIKE0088,
Please take the latest code from git. Today morning (PST), some of the issues you had reported where fixed and updated in git. You can read the git instructions at http://drupal.org/project/uc_auction/git-instructions
Following issues could not be reproduced
- Creating View for Current Auctions
- Creating New Account
- When Logging Out
In the 6.x branch uc_auction_now had an unimplemented function
uc_auction_now_submit, which got carried over to the 7.x branch. This function has been implemented in the 7.x branch. uc_auction and uc_auction_now should work.Comment #80
nohup commentedAll,
Please don't use this issue for any further bug reports on the 7.x branch.
For each new bug you find, open a new issue. Let us keep one bug per issue.
Thanks for your support.
Comment #81
jsulmar commentedDoes anyone know of a website that employs the JavaScript-powered countdown timer ?
Comment #82
jsulmar commentedI'm planning to fire up drupal+ubercart+ubercartAuction to try it out but I'm confused about which versions to use.
Am I correct in understanding that UC2 only works with drupal6 and UC3 works with drupal7?
If I want to use ubercartAuction 7.x-1.x-dev, do I need UC2 or UC3?
thanks--
Comment #83
b2rana commentedHi All,
I have updated ubercart_auction module which have following functionality:
1. Auto bidding on behalf of user
2. Also add new functionality to update user credit limit amount ( create a credit_limit field for user )
3. And also add a new module that will check if current user is outbid in any product and give him an alert message.
I think you guys love this.
B2rana
Comment #84
harings_rob commentedHi there,
I'm looking into your module B2rana but i'm getting some errors on "field_credit_limit_value"
These fields do not get created.
Comment #85
b2rana commentedHi tortelduif,
Actually you have to create this field i.e. "field_credit_limit" field for user.
Let me explain..
1. Go to "Home » Administration » Configuration » People » Account settings"
2. Click on "Manage fields"
3. Add new field i.e. label name is "Credit Limit" and machine name is "field_credit_limit".
That's it.
Comment #86
harings_rob commentedYes i figured that out. Is this module still actively maintained or not?
Comment #87
useraa commentedComment #88
b2rana commentedI don't think so. Because there is no new released after 2011-Dec-11 of this version. Still there are some peoples who are updating this module according to their requirment and share this with others. I am one of them...:D
Comment #89
nohup commentedShort answer - no.
Comment #90
jepster_is anybody wanting to maintain this module? I can add someone as maintainer. but we've wrote auction module for d7 from scratch, without dependency to any shop module: http://drupal.org/project/auction
Comment #91
jepster_*changed status*
Comment #92
apetrail commentedhow to add rule event for place bid in auction d7
Comment #93
SeanA commented#80
b2rana, you should open a new issue and post your code as a patch... maybe a separate issue for each feature. Thanks!