Habbo uses a whole other approach, through their flash client. Since you wan't to prevent spam in an PHP application, it's a whole other story. It's not easy to make sure a user doesn't spam with just Javascript (it's client-side, don't trust your users in anything) so you will use PHP as your...
I found this useful StackOverflow thread
Blocking comment spam without using Captcha
Basically you set a token for the user when he visit the page with the form. The token is set in a <input type="hidden"> element and once the user submits the form, the token is validated on the server...
Oh sorry, my real name is Christian Petersen :) By the way I should propably warn you already that the rounded style might look similar to Colgate Palmolive this was not intended, nor did I get the inspiration from any source - just a coincidence.
It's been a while since I last posted anything on DevBest, and it's time to get your opinions on some new stuff I'm currently in work with.
I needed a new identity, since the current (moustache man) felt a little outdated, too similar to the moustache-cult so on and so forth.
My idea was to...
Why not just use MySQLi or PDO - better security, less work & cleaner code (using a wrapper) - With COUNT() function in SQL you can get the number of rows of the column
e.g. SELECT COUNT(`ip_addr`) WHERE `ip_addr` = ?
Most Popular: RastaLulz
Funniest User: -
Most Inspirational: Kryptos
Most Hated: -
Cockiest User: -
Most Professional: RastaLulz
Most Missed: Kryptos
Biggest Nerd: Kryptos
All-Time Legend: -
Biggest Fag: -
Staff Member of the Year: Kryptos
Friendliest: Kryptos
Best Newbie: Adildo
Biggest...
This is a common error, happens to me too. We're currently looking at the installation process that might make a mistake. Until then you can use this string;
<?php if(!defined('IN_INDEX')) die;
return 'O:8:"stdClass":8:{s:4:"site";O:8:"stdClass":10:{s:4:"name";s:3:"Rev";s:5:"title";s:9:"Rev...
Hey! The source is free and open source. This means that you can help us fixing bugs and such. If we find your fix working best, we will merge it to the original repository.
The CMS is not released for production use yet. We know there are bugs, if there weren't I would be very surprised...
Best way is just to ship them with the software as is. Since it is a BETA an installation wizard is not required and not recommended either, but ship them with the software. If you used .NET do NOT include ANY .NET DLL's, because the end-user should have .NET - put that in requirements of where...
Wordpress is the easiest, most used blog system - This means there are a lot... I mean A LOT of extensions, add-ons, templates and whatnot. Of course there are others like Tumblr, which is not downloaded and set up by yourself, but just managed from Tumblr's website, setting your DNS settings to...
It is really easy compared to other methods. Making good games is not easy (story telling, graphic, coding) and not to talk about if you would make a game in a native language like C++, Java or anything else - come back when you have tried that. Unity is made for developers who wan't to learn to...
Im not really a wanted hacker running from the feds, because I hacked into REDACTED when I discovered REDACTED being the course of REDACTED. My name is not REDACTED and I am not an REDACTED. I do not do this for a living and I do not live with REDACTED where I'm hiding from REDACTED.
Im just...
It's because you are trying to download ALL images synchronous from this URL http://puffet.org/r63/c_images/Top_Story_Images. Use AJAX to get the content asynchronous.
EDIT:
And I realized that the domain it's hosted on is not responding either, so if it's your domain you need to fix that...