• 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.

Recent content by BuddhistPunk

  1. B

    How do you get a forum rolling?

    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...
  2. B

    CSV with Apostrophe into MySQL using PHP

    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...
  3. B

    PHPBB3 Addons and Spammers

    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
  4. B

    PHPBB3 Addons and Spammers

    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...
  5. B

    need a help on designing a simple email forwarding script

    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...
  6. B

    IIS mod_rewrite eseque functionality

    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...
  7. B

    SEO Tools?

    I quite like and use this Firefox plugin http://tools.seobook.com/firefox/seo-for-firefox.html
  8. B

    Trying out Adsense

    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.
  9. B

    A question of copyright? Or maybe morality?

    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...
  10. B

    A question of copyright? Or maybe morality?

    At the moment nobody has written it and this is just a hypothetical situation.
  11. B

    A question of copyright? Or maybe morality?

    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...
  12. B

    Looking for some direction/help on a personal project

    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...
  13. B

    How do you manage passwords?

    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...
  14. B

    Any suggestions? - Web Redirects

    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 (.*)...
Back
Top