Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.
Having run various successful and the odd unsuccessful forum in the last 15 years, these are (in no particular order) the keys to getting a forum off the ground:
Content & Search Engine Optimisation (SEO)
You might have the greatest content in the world, but if nobody can find it then it is...
In order to insert the single quote as part of the value it has to be escaped otherwise MySQL will think that the quote delimits the end of the value.
You have a call to mysql_escape_string but this seems to be redundant as it is not operating on any of the data.
Something like this will...
All my forums run on vBulletin, so unfortunately I can't help you with that part of it as I have never used PHPBB in that way.
It might be worth putting a post onto one of the PHPBB mod forums, in VB adding this question is trivial so I imagine that there is also an easy way to do it with PHPBB
The majority of spammers use scripts to mass register these you can stop by making your registration process different to the default. Doing this would require somebody to create a custom script for your site and most won't bother.
On my forum I have added a question/answer - that a human can...
Something like the following pseudo code would do the trick:
if (submit)
{
validate inputs
construct error messages if validation fails
if (inputs all valid)
{
insert into DB
create successful update message to display to user
}
else
{
create full...
Without actually using one of the IIS mod_rewrite libraries out there does anybody know if the following is possible:
I need to create X number of "virtual" endpoints in IIS, for example:
http://www.mysite.com/path/12345.ext
http://www.mysite.com/path/67890.ext...
Forget about the [H] rules as this will only result in thread deletion and maybe account banning here.
The request for "clicks" in the post is against Adsense TOS and will result in the termination of the Adsense accounts.
After a fashion
I am looking to start adding some articles to my site, and obviously the biggest reference source is other public articles on the net. However I do not intend to copy, rewrite, paste a single article rather take bits from here and bits from there and then write them up into a...
Summary:
Is it "legal" to copy an article from X website, rewrite it and then republish on Y website?
Example:
Lets say X website has the following article:
FreddieWebmaster "copies" this article and rewrites and repulishes as follows:
Although using different words, the two...
Unless I have completely misunderstood what is going on here I would absolutely advise agaisnt create seperate tables for each DVD type.
I would create the following tables:
DvdArchive
id [int]
CategoryId [int]
Name [varchar]
..
whatever other fields you need
..
DvdCategories...
As the title asks, how do you manage passwords?
I currently have username/password combinations for enough places to make it impossible to remember every single password. As such I have deliberately fallen foul of being lazy and alot of my username/password combination are the same for...
Oddily enough I have been reading through some very similar links, as such I have the following htaccess already (which sits in the root of the subdomain)
RewriteEngine on
RewriteCond %{REQUEST_URI} !index\.php
RewriteCond %{REQUEST_URI} /([^/]+)
RewriteRule (.*)...