vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - VBay! Transform your vbulletin into an auctionhouse! (https://vborg.vbsupport.ru/showthread.php?t=132544)

Blaine0002 02-11-2007 07:04 PM

Thx for the info, pm system is working. also i have one question, what options should be able to be edited while editing an auction?

misticjeff 02-11-2007 08:59 PM

Quote:

Originally Posted by Blaine0002 (Post 1180105)
Thx for the info, pm system is working. also i have one question, what options should be able to be edited while editing an auction?

Is the PM system new? As in just added within the last 12hrs? How do I get it working?

Editing - Should be able to edit any part of the auction up until the point a bid is made. I'm no coding guy but I should think that an "if/then" query could take care of it.

murekhalir 02-11-2007 10:12 PM

If there is a bid, description should not be editable. (Is that possible?)

Or all in all just do not allow description to be editable.

-Paypal support will kick this one up as a mod.
-Image Support

But you've already heard all of that.

Well.

I look forward for completion, willing to pay when it comes out too.

Blaine0002 02-12-2007 12:31 AM

PM system has been out for a bit, it will automaticly pm the seller and buyer on completion of auction.

Thanks for the info guys :D

angeljs 02-12-2007 06:35 AM

Really looking forward to this being completed. I'd be more than willing to pay for a finished version as it has tons of potential!
:)

Marit 02-12-2007 06:54 AM

I ran a test auction after I installed it, and instead of being over, it now says time left: -1D 10H 13M 6S and no PM has been sent out to either seller or buyer. Did I miss something during the installation? TIA!

Blaine0002 02-12-2007 03:51 PM

I seemed to have missed somthing, for some reason the cron is not running every 10 minutes.. To into your schedualed tasks and see when your Close Auctions task is running. somone said it was only running every sunday or somthing o.O

Marit 02-12-2007 04:03 PM

Thanks! It was set for Sundays at 00.00 so that was probably it! Will try a new test now before I go live :)

Blaine0002 02-12-2007 07:57 PM

hmm. i think i accadently set it to sunday in an older version, andif you upgraded it probably didnt overwrite the cron, so it was still at sunday. it seems to be correct in the newest version, or am i wrong? :-/

Adult SEO 02-13-2007 08:48 AM

Hi!

Thanks a lot for this mod. I've been extending it with SEO and AJAX features.

Btw, I would recomend to spend some time on learning to optimize MySQL as it's not very fast right now, I needed to rewrite most of it ;)

http://www.papegaaienforum.nl/marktplaats.html

Best Regards,
Jan Jaap

Blaine0002 02-13-2007 10:11 AM

thx for the reccommendation, i havent read any books or looked at any tutorials on php or mysel, i just kind of taught myself :D

rjmjr69 02-13-2007 11:05 AM

Quote:

Originally Posted by Adult SEO (Post 1181355)
Hi!

Thanks a lot for this mod. I've been extending it with SEO and AJAX features.

Btw, I would recomend to spend some time on learning to optimize MySQL as it's not very fast right now, I needed to rewrite most of it ;)

http://www.papegaaienforum.nl/marktplaats.html

Best Regards,
Jan Jaap


Well since you did spend the time to rework it and get it to run faster would you mind sharing with the rest of us with the permission of the author? The author would do good to look threw the changes to learn whats going on. And the rest of us can benefit from your work...

What exactly have you done to it anyhow....lol

Adult SEO 02-13-2007 11:19 AM

Hi!

I changed a lot, also the admin. More integration into vBulletin and also functions specificly for selling parrots. (see screenshot)

To work with the code will cost a few days 12+ hours per day so I don't know if the author has time for it or is interested in it at all ;)

It also uses some advanced technology that requires PHP 5.2 and since vBSEO requires Zend Optimizer and PHP5.2 and Zend Optimizer has a fatal bug (returning 404 errors randomly by a segmentation fault) and also other functions require advanced knowledge of Javascript and AJAX I don't know if the author is interested or able to do it (as then it might cost weeks to do it).

But I am willing to share some of the code if he is interested.

Best Regards,
Jan Jaap

Adult SEO 02-13-2007 11:25 AM

Btw one anti-hacking tip which is really important to know:

Users are able to execute MySQL queries if you do not escape posted data. E.g. if you have the folowing query:

Code:

"SELECT * FROM `table` WHERE `field`='{$postedinfo_x}' LIMIT 1"
Then a user could alter the code by submitting the folowing text:

Code:

' AND 1
Resulting in a return of all data. But also more harmfull queries could be performed like DROP TABLE or DROP DATABASE etc.

To protect against this, simply use the PHP function addslashes():

Code:

"SELECT * FROM `table` WHERE `field`='".addslashes($postedinfo_x)."' LIMIT 1"
Best Regards,
Jan Jaap

Blaine0002 02-13-2007 04:12 PM

Wow that looks great, if you were to send code to me (which i would greatly appreciate) i would need to remove the SEO, because not everyone uses it. but yea, i would greatly benefiet from the code, it seems you have completed some aspects i have failed, (nice wysiwyg BTW.)

oh, and click install :D

Adult SEO 02-13-2007 04:20 PM

Hi, hereby some of the code.

Please note, you did not yet use the vBulletin Phrase system. I have fully converted the script to use vBulletin phrases so you will need to add them to your product.

Best Regards,
Jan Jaap

Blaine0002 02-13-2007 04:25 PM

Thanks for the info, its going to be hard without some of the templates though :D

Blaine0002 02-13-2007 04:28 PM

Where did you get your javascript for the WYSIWYG editor? or did you make that?

MTVSlick 02-14-2007 11:07 AM

I installed Vbay and it works in every way but, how do we upload pictures to the auction?

Mark,

Blaine0002 02-14-2007 04:07 PM

Image function not yet implimented

random question for SEO, why did you make your own dotip2long when you can just use the default php ip2long()?

Never mind, i see its not even being used.

but i do have nother question, i do not know how SEO works, but how would i go about removing it.

Adult SEO 02-15-2007 07:17 AM

Quote:

Originally Posted by Blaine0002 (Post 1182505)
Image function not yet implimented

random question for SEO, why did you make your own dotip2long when you can just use the default php ip2long()?

Never mind, i see its not even being used.

but i do have nother question, i do not know how SEO works, but how would i go about removing it.

Hi!

I think it's best to folow your own plan, and just use my code as reference.

The editor is the vBulletin default editor.

Best Regards,
Jan Jaap

BarryoBrien 02-15-2007 08:59 AM

Do you think you intrgrate paypal in to this like ebay? I'd pay for a paypal version!

Adult SEO 02-15-2007 09:02 AM

Hi!

I've already implemented it. Users are already able to pay via PayPal for paid ads (e.g. when they add a link it will cost 2.50 euro).

My MSN is adultseo@gmail.com

Best Regards,
Jan Jaap

weitalia 02-15-2007 01:12 PM

description's editor does appear on the page

Blaine0002 02-15-2007 05:26 PM

does or does not.

BarryoBrien 02-16-2007 08:18 PM

Ive installed it but its not showing up on the nav bar or anywhere else can you help?

Blaine0002 02-16-2007 08:40 PM

You will need to install it manually by editing your Navbar template.

BarryoBrien 02-17-2007 07:30 AM

Quote:

Originally Posted by Blaine0002 (Post 1184166)
You will need to install it manually by editing your Navbar template.

how do I do that? Sorry for asking but this hack looks amazing!

Blaine0002 02-17-2007 05:21 PM

go to your template manager and edit the template called 'navbar'.

mat.knott 02-18-2007 12:47 PM

hi all, im looking for an auction script to run on my site to make some money for charaty... does this script work ok for biddin? buy it now is not needed as its a auction for charaty.

Blaine0002 02-18-2007 01:16 PM

this will work just fine :D

mat.knott 02-18-2007 01:38 PM

ok cool.. was just unsure as its beta at moment

BarryoBrien 02-19-2007 12:21 PM

Quote:

Originally Posted by Blaine0002 (Post 1184695)
go to your template manager and edit the template called 'navbar'.

Im not to sure what code to put in to nav bar template!

Cornie 02-19-2007 12:52 PM

Go in your ACP > navbar template

find:

<td class="vbmenu_control"><a href="memberlist.php$session[sessionurl_q]">$vbphrase[members_list]</a></td>

Below add:

<td class="vbmenu_control"><a href="vbay.php$session[sessionurl_q]">vbay</a></td>

cerulean 02-20-2007 04:20 PM

Any news on when we might be able to use pictures?

PhilForce 02-20-2007 06:51 PM

Great mod! I have it installed and it seems to work great.

However, the three tables on my "Help" page for vBay turn out black bg with black lettering so you can't read it. Im no PHP buff at all but I tried simple HTML to make bg white and font black and when I previewd it things looked fine, but when I save and check it on my live site its still black on black. Any help would be appreciated.

Blaine0002 02-21-2007 12:13 AM

it is probably an issue with your css, are you using a customized template?

BarryoBrien 02-21-2007 02:13 PM

is there any way I can charge members to sell there stuff?

PhilForce 02-21-2007 03:18 PM

Quote:

Originally Posted by Blaine0002 (Post 1187114)
it is probably an issue with your css, are you using a customized template?

Yeah I am but I dont know enough about coding to know where to begin to look to fix it.

BarryoBrien 02-22-2007 08:22 AM

Quote:

Originally Posted by cerulean (Post 1186815)
Any news on when we might be able to use pictures?

If its the main page of the vbay try <img src="images/misc/paypal_verified.gif" width="100" height="100" this worked for me

rather than <img src="http://yoursite.com/images/misc/etc"


All times are GMT. The time now is 04:21 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02205 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete