
KDawg08
Members-
Posts
294 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by KDawg08
-
MCCodes/VBulletin registration integration help
KDawg08 replied to KDawg08's topic in General Discussion
Thank you that almost explains it. That's exactly what i kept trying to search for but couldn't find a copy of it that made sense. -
MCCodes/VBulletin registration integration help
KDawg08 replied to KDawg08's topic in General Discussion
Screw it, forget it completely. This was pointless to post... I miss back when NYNA use to be around as she would explain it step by step or say, well if you do this it'll cause an error BUT you can do this to correct it etc... She actually SHOWED you how to do it not just say "connect this and add stuff to it" Thanks anyways... -
MCCodes/VBulletin registration integration help
KDawg08 replied to KDawg08's topic in General Discussion
You aren't talking to an expert here, So a little instructions or detail might be helpful. otherwise you're just wasting your time. I don't know how to set it to connect to multiple databases for registration, and I don't know how i would set it up. And so far you're just criticizing and it's kind of rude. -
MCCodes/VBulletin registration integration help
KDawg08 replied to KDawg08's topic in General Discussion
I'm sorry we're not perfectly inclined to learn this stuff like you, but i cannot see how i can make it work with SEPERATE databases... -
So I have a copy of vbulletin I purchased for a site i'm running. I'm revamping the site and was curious if ANYONE has found a setup to setup the registration with vbulletin to auto register you for the games or vice versa?
-
I want to create a footer on my site that states copyright blah blah blah etc. How would i do this so it's not just on one page but on ALL PAGES like my header is?
-
not hard to do... just remove the items etc from them and if u search the forums you'll find TONS that do that...
-
i think you can go eat shit with your "If you'd stop moaning" bullshit. I made a suggestion and explained why, if you don't like it, Go fuck yourself and don't post. no need to come in here and be a dickhead just because you don't like my comment.
-
Why not make it optional?
-
Reopen the mccodes mod section, putting the mccodes mods in the marketplace is going to look tacky and lame, and means we'll have to SEARCH alot just to find a mod... Personally, I won't search for them anymore than I already have to, and being in the mccodes section as that's what they're for was the best place for them..
-
I'm also jobless currently and anything i get goes to baby stuff. Just moved to New Mexico, searching is a bitch in this economy lol
-
I have a 5 month old baby. saving money is a bitch rofl...
-
i'd love to buy this but i'm poor lol.
-
Want an easy $10? Can you do the simplest job?
KDawg08 replied to BoGFx's topic in Paid Modifications
i'd help but i'm lazy lol. -
Want an easy $10? Can you do the simplest job?
KDawg08 replied to BoGFx's topic in Paid Modifications
is this the stuff i spliced up for you? -
wrong section and u dont need 2 post everyday that ur doin custom mods in a new thread
-
Sent a pm, Just message me whenever you have time. :)
-
A small security tutorial, hope its somewhat helpful.
KDawg08 replied to a topic in Tips and tutorials
Lol yeah, Plus anything i find useful or that i like i usually make a wordpad format of it so i have a folder of saved wordpad documents, seperated in folders such as "Game Addons" "Tutorials" "Security" etc. -
any suggestions on how to do this? with maybe a small tutorial?
-
A small security tutorial, hope its somewhat helpful.
KDawg08 replied to a topic in Tips and tutorials
Thanks i saved this in wordpad for future reference :) -
DEFINATELY not signing up now... Decio helped you lol....
-
That's basically all i'm looking for, how would i code something like that? (All my sites are md5 encrypted etc, for now til i change it to sha512 or somethin) my subdirectory site that is mccodes, the login looks like this <script language="JavaScript" type="text/javascript"> var usr; var pw; var sv; function getme() { usr = document.login.username; pw = document.login.password; sv = document.login.save; if (GetCookie('player') != null) { usr.value = GetCookie('username') pw.value = GetCookie('password') if (GetCookie('save') == 'true') { sv[0].checked = true; } } } function saveme() { if (usr.value.length != 0 && pw.value.length != 0) { if (sv[0].checked) { expdate = new Date(); expdate.setTime(expdate.getTime()+(365 * 24 * 60 * 60 * 1000)); SetCookie('username', usr.value, expdate); SetCookie('password', pw.value, expdate); SetCookie('save', 'true', expdate); } if (sv[1].checked) { DeleteCookie('username'); DeleteCookie('password'); DeleteCookie('save'); } } else { alert('You must enter a username/password.'); return false; } } </script> so the login is at gamesite.com/gamefolder/login.php the login i want to work for that and one other subdirectory is at http://www.gamesite.com/ (root/public_html) how would i make it see that one and one other one that is coded in phpbb3? (Similar and also md5 encrypted)
-
any suggestions?
-
Who's database crons are you selling because they are posted all over the site for free ;)
-
I have this login form for the MAIN PAGE of my site... <h2>Login Form</h2> <form id="login-form" action=""> <div><input type="text" value="Name" class="input"/></div> <div><input type="text" value="Password" class="input"/><input type="image" src="images/login-button.gif" /></div> </form> How would i make it login to multiple games on one site? (2 games in sub directory folders and my forums) This form is setup in my MAIN public_html directory but i want it to auto log people into my forums/games (mostly the forums the games part i can figure out later if needed) but yeah... how to i make a login form in a ROOT DIRECTORY log users into multiple sub folder scripts/games/forums/etc.