eCommerce
Social and Community Suite
Content Management
RSS Extensions
VirtueMart Extensions
(0)
|
Login
|
Register
|
Lost Password?
Username:
Password:
Home
Our Products
Joomla 1.7.x
(23)
& J!1.6.x
Joomla 1.5.x
(28)
Joomla 1.0.x
(17)
Factory Club Extensions
(7)
Drupal, Elxis, MODx
(6)
Windows Gadgets for J!
(11)
Free Templates
(4)
All Products
(92)
Documentation
Tweets
Forum
Contact Us
Terms & Conditions
How to Buy Guide
Customers FAQ's
Updates & Upgrades
About Us
Latest Tweets
Join us at the Joomladay UK!
The Factory Extensions Joomla Compatibility Chart
Love Factory 2.4 for Joomla 1.7
Love Factory - Memberships [VIDEO]
Love Factory - Custom Fields Integration [VIDEO]
Love Factory - Google Maps Integration [VIDEO]
Love Factory - Administrator Guide [VIDEO]
Love Factory - Memberships
Collection Factory for Joomla 1.6 with CB support
Reverse Auction Factory 1.5.9
Home
Help
Search
Login
Register
The Factory
>
Forum
>
eCommerce Factory Suite
for Joomla CMS.
>
Auction Factory
>
FAQ and Tutorials
Pages: [
1
]
2
« previous
next »
Print
Author
Topic: FAQ and Tutorials (Read 19826 times)
Andy - The Factory
Administrator
Hero Member
Posts: 1636
FAQ and Tutorials
«
on:
September 29, 2007, 04:15:33 pm »
Check out our FAQ's, Documentation and Tutorials:
Auction Factory Features list - version 1.0.0
Upgrade Informations
-
Please check each topic for each Release!
Here an example for Version 1.0.3
Installing and Configuring Auction Factory
Auction Factory CRON setup - FAQ
Bulk Uploading Auctions into your system
User's "HOW TO" Guide?
* How to Create a New Auction?
* How to BID or view BIDs?
* How to Buy using BIN or BID?
* How do I ask the seller a Question?
* How to Rate Seller/Buyer?
* Private Messages
* How to Relist an Auction?
* Changing an Auction
Glossary explaining BID, BIN, Proxy, etc.
«
Last Edit: February 05, 2008, 03:29:31 pm by Erik
»
Logged
Erik
Administrator
Hero Member
Posts: 3120
Re: FAQ and Tutorials
«
Reply #1 on:
February 05, 2008, 03:23:43 pm »
updated
User's "HOW TO" Guide?
with the the following topics:
* How to Create a New Auction?
* How to BID or view BIDs?
* How to Buy using BIN or BID?
* How do I ask the seller a Question?
* How to Rate Seller/Buyer?
* Private Messages
* How to Relist an Auction?
* Changing an Auction
Special thanks to
www.fresno-auction.com
«
Last Edit: February 05, 2008, 03:28:24 pm by Erik
»
Logged
Erik
Administrator
Hero Member
Posts: 3120
Re: FAQ and Tutorials
«
Reply #2 on:
February 08, 2008, 04:32:51 pm »
bodojo Auction
Here is a small tutotial on how to add a New Auction Item:
http://www.bodojo.com/add_item_2.html
Logged
Andy - The Factory
Administrator
Hero Member
Posts: 1636
Re: FAQ and Tutorials
«
Reply #3 on:
May 11, 2008, 10:13:58 pm »
New Auction Factory 1.4.x tutorial regarding Templating and using Smarty
http://www.thefactory.ro/support/documentation/auction-factory-1.4-templating-tutorial.html
Logged
Erik
Administrator
Hero Member
Posts: 3120
Photo box arrows
«
Reply #4 on:
April 21, 2009, 02:37:58 pm »
Q:
In the description page of each auction item, there's a box for photos. There are two arrows in this box, even if there is only one photo (so no navigation). Can this be removed?
A.
YES. This will imply only older versions since we added this also to our release.
Solution: add in bids.html.php at auctiondetails
after $auction->gallery=$gallery->getGallery();
if(count($gallery->imagelist)==1)
$auction->gallery=$gallery->getThumb(0,0);
«
Last Edit: April 21, 2009, 09:41:07 pm by Erik
»
Logged
Erik
Administrator
Hero Member
Posts: 3120
Category, Subcategory fix.
«
Reply #5 on:
April 21, 2009, 09:39:33 pm »
Q:
Fixed for the category wherein the contents of the subcategory is also displayed at the parent category?
A:
Yes. A similar fix will be also in the next release included. Here a quick solution: edit bids.php by replacing
and a.cat=$filter_category
with
and (a.cat=$filter_category or cats.parent=$filter_category)
«
Last Edit: April 21, 2009, 09:41:26 pm by Erik
»
Logged
Erik
Administrator
Hero Member
Posts: 3120
Creating Auction websites using PHP and Auction Factory
«
Reply #6 on:
June 07, 2009, 06:08:22 pm »
http://softmarket.ro/joomla-tips/creating-auction-websites-using-php-and-auction-factory.html
Logged
Erik
Administrator
Hero Member
Posts: 3120
country mysql table
«
Reply #7 on:
August 12, 2009, 09:22:42 am »
Q:
When i go to frontend and click on Search Ads, this screens shows me the dropdowns for country / city / adtype etc. which i'm not able to find in the admin. From where i can add countries / cities and more adtypes?
A:
Countries are all added when installed. There is a Mysql table "#__ads_countries".
City list is generated from the cities the users declare themselves in...
Logged
Erik
Administrator
Hero Member
Posts: 3120
Re: FAQ and Tutorials
«
Reply #8 on:
August 17, 2009, 08:50:57 am »
Q:
I want to put the 3 popular auction in an table like
auction_1 auction_2 auction_3.
(1 row 3 column)
Can you please explain in an example how to do this?
A:
Please edit :
/modules/mod_bids/mod_bids.php
around line 116 begins the HTML output.
remove the Field header:
<tr>
<?php if ($display_image) { ?>
<th> </th>
<?php } ?>
<th><?php echo bid_title;?></th>
<th><?php echo bid_max_bid;?></th>
</tr>
and add before the for loop a <tr> like this
<tr>
<?php
for($i=0;$i<count($rows);$i++){
then remove the tr on line 153 ( <tr class="<?php echo $alt_class;?>"> )
and move the /tr from line 176 out of the for loop (right before the /table line)
Logged
Erik
Administrator
Hero Member
Posts: 3120
YUI gallery
«
Reply #9 on:
October 05, 2009, 11:07:03 am »
If you are experiencing any issues with the image display with the version 1.6.0 like auction detail image does not fully appear - only a small sliver on the left side, although the settings are like for ex. 200 x 200, then edit the file
gl_yui.php at the method getGallery
Search for:
<li>
<a href="'.$this->_pathToImages.'/'.$this->imagelist[$i].'" class="'.$css_class.'" ><img src="'.$this->_pathToImages.'/middle_'.$this->imagelist[$i].'"></a>
</li>';
and replace with:
<li>
<a href="'.$this->_pathToImages.'/'.$this->imagelist[$i].'" class="'.$css_class.'" ><img width="'.$width.'" src="'.$this->_pathToImages.'/middle_'.$this->imagelist[$i].'"></a>
</li>';
This issue was also modified in the current release so 1.6.5 users are not required to modify it.
Logged
Erik
Administrator
Hero Member
Posts: 3120
SSL tips
«
Reply #10 on:
December 11, 2009, 11:10:57 am »
Here some tips for SSL usuage:
If YUI is used then download all the YUI dependencies and upload them on your server, so that gl_yui will include also the local sources, not the ones on yahoo.
If lytebox is used, it should be ok
Also edit startcounter.js like in the following thread:
http://www.thefactory.ro/joomla-forum/reverse-auction-factory/https-r-a-f-2916.0.html.html
The rest implies template validation, like images which are on other sites, displayed with http not https,
JS which are modifying the DOM, etc.
The images from the galeries are put with https, no need for htaccess.
Logged
Erik
Administrator
Hero Member
Posts: 3120
Editor width
«
Reply #11 on:
April 15, 2010, 03:20:26 pm »
Q:
When posting a new auction the editor extends past the right margin. How can I fix this?
A:
This depends on the existing site template. You can adjust the editor width
in views/adsman/view.html.php edit()
$lists["description"] = $editor->display('description', $add->description, '
100%
', '400', '70', '15');
Logged
Erik
Administrator
Hero Member
Posts: 3120
only ver. 1.6.7 - Custom fields in listing tasks snippet
«
Reply #12 on:
July 27, 2010, 01:49:48 pm »
This topic regards Auction Factory 1.6.7 holder who want to list multi option type of custom fields in the listing tasks.
In bids.php this concerns the methods listAuctions, listMyWonBids,
listMyAuctions,listMyWatchlist,listMyBids,listMySuggestions,showSearchResults.
The following snippet must be added in the above methods ( if does'nt exist allready! ) before the listing query is executed.
// => BLOCK FIX IN 1.6.7
$JoinList = array();
$SelectCols = array();
$Fi = & FactoryFieldsFront::getInstance();
$Fi->getCustomFieldsJoin($JoinList, $SelectCols, null, array("#__bid_users"=>"prof","#__bid_auctions"=>"a"));
$fields_join = @implode($JoinList);
if(count($SelectCols)>=1)
$fields_cols = ", ".implode(",",$SelectCols);
// <= BLOCK FIX IN 1.6.7
Add in the existing listing query (the query that fills $rows) $fields_cols and $fields_join:
So you should have from:
$query = "SELECT ....... FROM ...... LEFT JOIN ....."
$query = "SELECT ....... $fields_cols FROM ...... $fields_join LEFT JOIN ....."
Logged
Erik
Administrator
Hero Member
Posts: 3120
Language Files
«
Reply #13 on:
September 24, 2010, 02:22:39 pm »
http://www.thefactory.ro/joomla-forum/auction-factory/language-files-1218.0.html.html
Logged
Erik
Administrator
Hero Member
Posts: 3120
Update proceedings
«
Reply #14 on:
July 20, 2011, 01:58:34 pm »
NOTE: Before upgrading do a FULL backup of your website (including database).
Run also the Auction Factory backup option under the component backend (tools/backup and restore buttons) so you can restore your auctions onto the new version.
To upgrade from a minor version (where no DB changes) do this:
1. get new kit under:
http://www.thefactory.ro/upgrade-table.html
2. unzip the new version.
3. FTP to your server
4. Overwrite the following folders on your server with the ones in the unzipped folder on your computer:
a. /administrator/components/com_bids
b. /components/com_bids
c. /modules/mod_bids
To do a full upgrade do the following, first uninstall Auction Factory:
1. get new kit under:
http://www.thefactory.ro/upgrade-table.html
2. Log into the back-end and navigate to the Extension Manager: Install/Uninstall
3. Click on the "components" tab, uninstall "Bids"
4. Click on "Modules", uninstall "mod_auctioncattree", "mod_auctionfulltree", and "mod_bids"
5. Click on "Plugins", uninstall "Search - Auctions", "Auction Factory Plugin", and "System - UDDEAuction"
6. Now you can do a clean install, navigate back to the "install" tab and upload the zip file to do a fresh install of Auction Factory. Attention, a backup is MANDATORY, since the clean install is erasing old data.
Additional information:
1. any template change should be saved separately
components/com_bids/templates/
2. if any modifications to the CSS files, dont forget to have a copy
3. settings file of the component is located under:
components/com_bids/options.php
Logged
Pages: [
1
]
2
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Forum
-----------------------------
=> News & Announcements
===> Community News
===> General Discussion
===> Unlisted Products
=> eCommerce Factory Suite
for Joomla CMS.
===> Auction Factory
===> Reverse Auction Factory
===> Raffle Factory
===> Collection Factory
===> Ads Factory
===> Media Mall Factory
=> Social & Community Factory Suite
for Joomla CMS.
===> jAnswers Factory
===> Love Factory
===> Chat Factory
===> Deluxe Blog Factory
===> HOT or NOT Deluxe Factory
===> Photo Battle Factory
===> HOT or NOT Factory
=> Content Management Suite
for Joomla CMS.
===> Advertisement Factory
===> Briefcase Factory
===> eBook Factory
===> Article Factory Manager
===> Content Image Factory
=> RSS Factory Suite
for Joomla CMS.
===> rss Factory PRO
===> rss Factory
===> rss to Image Factory
===> rss Context Factory
=> VirtueMart Extensions & Payment Facilities
===> VM Factory Reports
===> VM Factory Orders & Reviews
===> VM Tree Factory
===> VM ePayment Factory
=> Miscellaneous Extensions & Modules
for Joomla.
===> eBay Factory Module
===> Top Movies Factory
===> Exchange Rates Factory
===> Factory Calculators
===> Lava Factory Menu
===> Feedback Factory
===> Awards Factory
=> Other CMS Extensions
===> DRUPAL Extensions & Modules
===> ELXIS Extensions & Modules
===> MODx Extensions & Modules
=> Windows Gadgets
=> Template Factory
===> Joomla Business Template #01
===> Joomla Business Template #02
Loading...