Nicely made flash site for an ads agency: Big Ideas come out of Big Pencils
Check it out!
Author: pixeline
Date: August 31st, 2006
filed in: Design
Follow the discussion on this entry via RSS 2.0 feed.
| Click to react on this
And now, a word from the president
In the fight against spam, web developers couldn't do much except installing additional software like spamassassin on their webservers, which is really the webhoster 's job. And that doesn't stop all of it, far from it. Especially if you inherit a website that is all in html, contains thousands of pages, and a lot include your customer personal email address, the one he really can't change, you know? Like firstname(Replace this blurb with the @ sign)lastname.com or something... Like i just did
So i had to find an easy and efficient way to protect all these pages, blocking email harvesters and spambots BEFORE they could actually parse the pages and collect their victims.
Enters (again) one of your best spam-nuke weapons: Bad Behavior by Michael Hampton .
How to protect a html only website from spambots and email harvesters:
- Make sure your webserver has PHP 4.3.+ enabled
- Download Bad Behavior
- FTP to your site, create a folder that will contain bad behaviour core scripts (personally, i use a "_lib" library for all my scripts, and have my "badBehavior_antispam" folder inside. I name it like this so if another developer inherits the website, he gets what this folder contains without having to dig into the code)
- Create (or update) a .htaccess file, by adding this piece of code:
PHP:
-
# BAD BEHAVIOUR ANTISPAM INTEGRATION
-
AddHandler php-script .htm .html
-
-
php_value short_open_tag "Off"
-
php_value auto_prepend_file "local/absolute/path/to/your/badbehaviour/folder/bad-behavior-generic.php"
an example of the localpath:
PHP:
-
/var/www/vhosts/microshmock.com/httpdocs/v2/_lib/badBehavior_antispam/bad-behavior-generic.php
Don't know the absolute local path of your website ? Upload a php file containing the following bit of code and then browser to it, it will display the local path to the root of your site:
PHP:
-
<?php
-
echo $_SERVER['DOCUMENT_ROOT'];
-
?>
That's about it! Your site is protected from email harvesters and spam bots!
[UPDATE:] i've found out (the hard way) that this may break php script if your server 's php.ini file has short_open_tag = Off. (that is: < ? instead of < ?php)
So make sure you either always use < ?php or set the php.ini variable short_open_tag = On
Author: pixeline
Date: August 21st, 2006
filed in: Development, General, internet marketing
Follow the discussion on this entry via RSS 2.0 feed.
| Click to react on this
And now, a word from the president
Today, I redesigned the small Geo De Vlamynck website, one of my very first designed website (i was not earning a living out of it at the time). I had to do this because with the theft of my laptop in january, i lost all the flash source files. So i only kept the one SWF file that is not replaçable, and switched to a clean xhtml/css layout. I also used 4mir's Greybox script to launch a nice dhtml modal window . Unfortunately, i couldn't make it work with that old swf file, since i don't have the .fla anymore. Ah, Bugger.I started working on it at 22:06 and it is now 3:10 AM. From layouting and information architecture to developing the html/css/php files. Five hours, not too bad is it? But then, that's very simple material... Yet i had to retype all the texts, because they where also not accessible from within the bunch of swf... So no, really, 5 hour ain't too bad
Wouaoh, now to bed...
Author: pixeline
Date: August 17th, 2006
filed in: Design, Development, General
Follow the discussion on this entry via RSS 2.0 feed.
| Click to react on this
And now, a word from the president
C'mon guys, give that ajax script a rest and go back to the basics of what makes a good navigation system !
Read it all at A List Apart: Articles: Where Am I? by Derek Powazek
In short, make sure your navigation systems answers 3 questions:
- Where am i?
- Where have i been?
- Where can i go?
And Tips:
- Avoid links to the page you're on!
- Show where you are
- Think before you add a link to your main navigation, ask yourself: “Will users really need this link every single time they visit?”
Author: pixeline
Date: August 13th, 2006
filed in: Design, Development, General, Interfaces
Follow the discussion on this entry via RSS 2.0 feed.
| Click to react on this
And now, a word from the president