Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > vbBux / vbPlaza
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools
eBux / eStore's Future Details »»
eBux / eStore's Future
Version: , by CMX_CMGSCCC CMX_CMGSCCC is offline
Developer Last Online: Sep 2014 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 03-05-2006 Last Update: Never Installs: 0
 
No support by the author.

I'm sure people have all read about the 'ebux' being Trademarked in the USA & Canada.

First off, let me start off by saying that this really sucks. But it's really my own fault for not researching it before creating eBux / eStore. It will cause a lot of headaches I'm sure in the future.

SO if you have been following the progress at http://www.ps2hits.com/forums/ then you will notice that eStore is no longer in existance. Now before you start to cry, you would also have noticed that vBux / vStore is in place of the old eBux / eStore.

vBux / vStore v1.5.0 is up and running at the above test forums. Now I can not stress the magnitude of the testing thats needed before this version is released out in the wild to the public.

I'm doing everything I can to make it save as MUCH as possible. But there will be some things that you will have to resetup. I have done a lot of the conversion coding already. I must say that the conversion I've done so far is gearing up quite NICELY. I'm proud of the coding for the update, which I can say a lot, I am usually not proud of coding that I make, but it gets the job done normally as well.

I have added a revolutionary change to the forum table that all vB mod coders will take note of. I do not think that this was ever done before, if I am wrong, I apologize. I have added a "bitfield" to the forum table. Yes, just like the <bitfield inside of bitfield_xxx.xml for the Usergroups.

It took 4 plugins to do this and when v1.5.0 is released, we may see other hacks start to use settings like this. So what does this mean to you, the end user?? Instead of eBS using 11 fields inside of the forum table, vBS will only use 4 fields inside of the forum table, aka less data to cache and save. And now that the foundation is layed for this, I could add some more forum options that should make things interesting as well.

The fact is, vB.com could do some modifications to make this more streamlined in the future, check out the following code:

Inside admincp/forum.php
Code:
	foreach ($vbulletin->GPC['forum'] AS $varname => $value)
	{
		if ($varname == 'options')
		{
			foreach ($value AS $key => $val)
			{
				$forumdata->set_bitfield('options', $key, $val);
			}
		}
		else
		{
			$forumdata->set($varname, $value);
		}
	}
This code is inside the block where it checks $_POST['do'] == 'update'. Instead of checking if the varname is equal to options. They should check if the field type is a bitfield type. If they would check if the field was a bitfield and then run ->set_bitfield for the varname found, it would mean 1 less plugin and/or hack has to be done.

SO if you use a bitfield with the current vBulletin 3.5.4, it will save all of the fields as separate variable names. SO I have devised a very small chunk of code to do the following:

Code:
	// process all of the vbsforumoptions
	foreach($vbulletin->GPC['forum']['vbsforumoptions'] AS $key => $val)
	{
		// set this bitfield
		$forumdata->set_bitfield('vbsforumoptions', $key, $val);

		// unset the one set previously by vBulletin
		unset($forumdata->forum['vbsforumoptions'][$key]);
	}
With this, you can see my custom bitfield is named vbsforumoptions, and you will notice it does UNSET the previous one that is set by vBulletin, so it will function properly. vBulletin.com, if you could update that code in forum.php to allow mod makers to use bitfields, that would be great

Even if they do not add this ability in the future, the fact remains that the above code will work and it is fairly optimized.


So the bottom line........

When you see the coding for the new Product XML sheet for vBS. You might look at it and say "its HUGE", but in reality is quite small for a task of this magnitude. I have renamed all of the phrases, all of the template variables, all of the variables/tables/fields inside of the PHP files. Basically any and all reference to ebux/estore have been changed to vbux/vstore and the tables/fields have been changed to vbs_table or vbs_field to better recognize which fields are for use with the new vBS. It's a MUCH better organized system and should allow for much easier to understand core code to build addons for.

I know this post seems a little long winded, but its necessary for me to tell you that when the aftermath settles for vBux / vStore .... everyone will be coming out on TOP.

-CMX

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 03-06-2006, 02:30 AM
Ilovechase Ilovechase is offline
 
Join Date: Feb 2006
Location: Arizona
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am sorry about all the trademark stuff . I know vbux will be awesome and I am so excited to install it... I think I told you already that you are awesome and I totally appreciate your hard work and dedication

Monie
  #13  
Old 03-06-2006, 02:52 AM
Rickie3's Avatar
Rickie3 Rickie3 is offline
 
Join Date: Nov 2004
Location: Australia/Tasmania
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what if i dont want to upgrade to vBux / vStore,and continue using ebux/estore,will it be illegal to have it on my site,i hate the thought of having to trace down template edits,then having to redo temp edits again.Have you seeked legal advise on the name ebux/estore has there been a injunction to force you to stop using said name,i cant see a problem if the name of your hack has not been questioned legally.Wouldnt it be easier just to change E to a V
  #14  
Old 03-06-2006, 03:04 AM
caimakale's Avatar
caimakale caimakale is offline
 
Join Date: Nov 2004
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Rickie3
what if i dont want to upgrade to vBux / vStore,and continue using ebux/estore,will it be illegal to have it on my site,i hate the thought of having to trace down template edits,then having to redo temp edits again.Have you seeked legal advise on the name ebux/estore has there been a injunction to force you to stop using said name,i cant see a problem if the name of your hack has not been questioned legally.Wouldnt it be easier just to change E to a V
It has been questioned legally. It truly is a legally trademarked name and CMX as well as each of you need to change it to protect yourselves from possible trouble.

The store isn't going away by any means. Everything will be identical, acutally better with some bug fixes and a few new options, than it is right now.
  #15  
Old 03-06-2006, 03:26 AM
Rickie3's Avatar
Rickie3 Rickie3 is offline
 
Join Date: Nov 2004
Location: Australia/Tasmania
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well the same could have been said for Ucash/Ushop,this is going to have a huge impact on so many forums out there already running ebux/estore,there is always some bastard out there that cant help themselves by dobbing someone in for something as simple as using a name in a hack,no wonder this worlds in a bloody mess
  #16  
Old 03-06-2006, 03:37 AM
JsnakeJ JsnakeJ is offline
 
Join Date: Mar 2005
Location: Pennsylvania
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vB.org should make an announcement for the people using it to upgrade aswell.
  #17  
Old 03-06-2006, 03:42 AM
caimakale's Avatar
caimakale caimakale is offline
 
Join Date: Nov 2004
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Rickie3
well the same could have been said for Ucash/Ushop,this is going to have a huge impact on so many forums out there already running ebux/estore,there is always some bastard out there that cant help themselves by dobbing someone in for something as simple as using a name in a hack,no wonder this worlds in a bloody mess
Truthfully, this update shouldn't be much different from any other update as far as we are concerened. We will have to redo template edits, but it may not be that difficult. I am not going to jump the gun and say anything yet because I haven't seen the new package, but it may end up being easier than we think.

Don't lose faith in CMX now just because of a problem with the name...because of this we will end up with a better store than 1.2.6.
  #18  
Old 03-06-2006, 04:33 AM
Rickie3's Avatar
Rickie3 Rickie3 is offline
 
Join Date: Nov 2004
Location: Australia/Tasmania
Posts: 770
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by caimakale

Don't lose faith in CMX now just because of a problem with the name...because of this we will end up with a better store than 1.2.6.
oh i havent lost faith in CMX at all,you must have missunderstood my post,i feel sad for all the hard work CMX has put in and his dedication to everyone involved,just to have it stalled for whats in a name
  #19  
Old 03-06-2006, 05:00 AM
proxx proxx is offline
 
Join Date: Oct 2003
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

CMX,

since you're going to be re-branding it.

I recommend chosing something different.

a) vBux is fine, I checked and it is NOT trademarked
b) vStore IS trademarked, so maybe you can use something different?

use http://tess2.uspto.gov/bin/gate.exe?...ate=6hu8dp.1.1 to search and see if a trademark is taken.

Since you're writing a nice software, and in future it might 10 times more features and have much more value, you don't want these trademark owners coming and say stop using it, or you don't want them to benefit from the positive image created by your software.

Just my two cents.
  #20  
Old 03-06-2006, 10:48 AM
Gizmo5h1t3's Avatar
Gizmo5h1t3 Gizmo5h1t3 is offline
 
Join Date: Aug 2005
Location: ROCHDALE LANCS UK
Posts: 650
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

these trademarks are a complete bummer....why should it matter when i expect your version of "vstore" bears no relation to the other one?????

excellent work yet again mate.....
  #21  
Old 03-06-2006, 03:13 PM
JsnakeJ JsnakeJ is offline
 
Join Date: Mar 2005
Location: Pennsylvania
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Laws are laws man. Would you want someone to copy your product or even name and make a good bit of money off of what was supposedly your idea? Just because some of the people that are using this modification do not live in the United States or Canada doesn't mean that we shouldn't take trademarks lightly.

What about making it vBstore & vBux, since theres a trademark on vStore.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:51 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.05181 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete