
HauntedDawg
Members-
Posts
476 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Events
Everything posted by HauntedDawg
-
Check the error log's. Or if you have firebug, see if it gives a "500 internal server error". The error logs will tell you where the fault is.
-
Please show me where I said "plaintext". Also, did I not somehow say, to be able to access my account from multiple location's? Even if dropbox is a unsafe solution to store an encrypted file. But if the hacker wanted to. He could decrypt it. I see your theory, but for a game, email & anything web related (as I'm sure that is what illusions meant), just won't be user friendly having to keep a file with you at all times.
-
My opinion on having a Password file to be uploaded to access my account is ABSURD! What if i wanted to access the site from my iPhone? Or Jump onto my friend's iPad quickly. Which in theory mean's if i want to have my account with me at all time's, it would either need to be on an encrypted USB (Which can not be plugged into the iPhone/iPad), and would only be able to use it on a PC. Which render's Mobile technology useless. My approach(but sure there are better): Function/Class that can encode & decode. a uniqid() that would be passed thru the Encode&Decode function (Stored in the DB encoded). Using phpass. So how does everything interlock? When registering, create a uniqid() as a salt to your password along with phpass. Encode the uniqid and store that in the DB. If a hacker get's the DB, he still has to decode each uniqid before cracking the password, unless he/she grabs the entire DB and Code, but its a simple extra layer. When login in, decode the uniqid, add it as a salt to the input password and pass it thru phpass. PHPASS CheckPassword function will check that password along with the decrypted uniqid. What's nice about phpass is that you can specify the iteration count. And if set at 15, take's approx 30 second's to check the password. The longer it takes the system to check/generate the password = longer the hacker takes to run thru rainbow table's. Obviously, every approach on the internet is hackable. But it's time consuming that drives the hacker to the next target. As i believe, make it challenging for the hacker :P
-
-- deleted-- --tooshort--
-
Before you assume it's the mother board. If you have a laptop that power's on. Try your screen on it. If screen work's. Then you can start the following: If CPU, RAM OR HDD are at fault, you would hear your motherboard go crazy. Yes, that little beep you hear when you first turn it on, or restart, will stay active the hole time if one of those 3 are at fault. Do this: - Pull out ram - Unplug HDD - Unplug CD ROM (And anything else that might be sitting there) - Pull out GFX Card if it is installed. What you want to be running is just the monitor, motherboard & psu. Because the ram is not installed, you will hear the continuous BEEP i mentioned earlier. This is a good sign. Now we follow by putting back the HDD & Ram. Start it up and see if you get to the bootup screen. No Bootup Screen? Follow LINK. You see bootup screen? Either GFX Card or ROM is faulty. Test either by plugging them in and see if you can then start it up. Chances that it's your VGA cable are most probably the cause. Ask a mate to borrow you one, or go buy one. Those kettle cords are so cheap! Max it will cost you is 20 pounds.
-
Not everyone has crappy jobs :P For me. Hmmm, breakfast every morning provided by company. Start at 9am and finish at 3pm. And part of a company that is getting their name around the world :) On topic, good luck Ian.
-
I think what he is trying to do is to slide it. Something like http://jsfiddle.net/KxXs9/4/ perhaps? Or even center the current year? (Could be done better. But currently in a rush) http://jsfiddle.net/KxXs9/5/
-
Lol, service? No. We "The community" provide a service to your clientele to fix your issue's where you can not provide. Yet it seems in each post you state you do provide support. But why is it that we have user's on this forum that have waited DAYS (if not MONTHS) for a support ticket to be answered. It's as simple as this, if you sell a product, then support it. If you can not support it, discontinue it. Don't thrive off the fact that you have a community (that's pretty much dying) to give support to these people for your idiotic mistakes. Tell me, when you even launched a new version, or even to this day when you fix bug's on mcc v2, do you turn on error reporting? Sure as hell you don't. As soon as error reporting is turned on, you'll soon see a **** load of undefined constant's. Fix them you lazy bags!
-
Your initial code run's a check against the DB if $_POST['page_mode'] is not set. Look at my code for reference.
-
$page_mode = isset($_POST['page_mode']) ? $_POST['page_mode'] : ''; $error_string = ''; if( $page_mode == 'Login' ) { $username = $_POST['username']; $password = $_POST['password']; if( trim($username) == '' || trim($password) == '' ) { $error_string .= '<font color=red>You have left either the username or password field blank!</font>'; } else { $result = $mysqli->query("SELECT PlayerID, Username, Password FROM Persons WHERE Username='" . mysql_real_escape_string($username) . "'"); if( ! ($row = mysql_fetch_assoc($result)) || $row['password'] != sha1($password)) { $error_string .= 'Please check your email address or password. Your details weren\'t correct '; } } } Give it a try, post back.
-
Bull****. You can't just say "You know exactly how much a website is worth". I can give you one of the most basic of the basic css1 plain text website's, and it can still have much revenue, but then you'll say "Its worth only $50 because of the design", When in fact it can be bringing in revenue of $25 a day. Which means, in 4 day's I would have surpassed your offer twice. So before you run your mouth and set your budget at $2,000. Rather advertise that you are looking for an established game, and that you have money to spend. Then you would not have arrogant responses such as Alain's telling you, your budget is too low. There are many thing's to consider before even evaluating a website.
-
Stupid, that post is when peter was hiring. Which i came took the position. We then scrapped mccode's and started from scratch. I started in February/March 2012.
-
Actionscript/Flash is still widely used.
-
Ha, custom made + planning should not take you longer than a year. With only 1 developer. As I have coded year1920.com from scratch in an 8 month period.
-
I don't even see a reason to backup my file's if i have Version Control, where beanstalk store's a backup for me, and I can access it when ever I want. Also, there are many good solutions to database backup's that can be useful for a large user base.
-
Me three --tooshortforyou-
-
Most people with dyslexia, try harder than what this person does. I have 3 friends who are, yet they can type much clearer than this *****.
-
Text Editors OSX
HauntedDawg replied to The Spirit's topic in Programming Tools, Software and much more
Notepad++ has been in stage of porting it to mac for awhile now, no updates as of late. I use Smultron (Free version), and i love it. It has a Compile Java function under: Tools -> Commands -> Other. -
Export Module Package [ FIX ] for Templates and Fonts
HauntedDawg replied to Uridium's topic in New Worlds Engine
Well, its not letting you download it because $_POST['moduleName'] is not in $modules. And if what i gave you is not displaying anything for you but just an empty Array( ) then $modules, might just be empty, or being unset somewhere. But dont take my word for it, i have not even looked over the engine :P -
Export Module Package [ FIX ] for Templates and Fonts
HauntedDawg replied to Uridium's topic in New Worlds Engine
Where you commented out your if statement, place the print_r()'s there. -
Export Module Package [ FIX ] for Templates and Fonts
HauntedDawg replied to Uridium's topic in New Worlds Engine
Illusions, do an print_r($modules); print_r($_POST); And post it up. -
How is it going to cost you to get a business plan? You create one yourself silly.
-
How many accounts do you plan on hosting on that poor server? VPS are meant to be where you can host your own sites without needing to pay extra each time to add an additional project. GET A PROPER BUSINESS PLAN!
-
Paid Request (inventory Dropdown menu)
HauntedDawg replied to sixsens's topic in Requests & In Production
Wasn't your challenge, but nicely done :) -
And people who try to create their own english sometimes ;) Not to mention, all the duck faces come out of there too. Raven, how can you even think the usa is full of fat people? Because they do have majority of obese people. I have seen far more UK obese people, than US obese people when i traveled.