December 15, 2007
Blog Scripts
No Comments
Gallina: just a GMail based blog
(Proof of concept)

This is an awesome idea to allow you to blog via GMail. Who needs an SQL database when you can save your posts to GMail?
Features
- Uses GMail messages as “entries” (the message star is the publish status)
- Replies to conversations are the “entry comments”
- Uses libgmailer (gmail-lite project) to connect to GMail
- Uses XML/XSLT
- Support jpeg/png attachments
- Support comments from the web
- Is free software
(GPL)
Documentation
Requirements
See libgmailer requirements: http://gmail-lite.sourceforge.net/
Installation
- Decompress the tarball
- Edit include/config.php
- Add write permissions to ./cache and ./gallina
- Load it from your web browser
Note: To post a message you’ll need to star it in GMail (it’s not automatic but you can create a GMail filter)
DEMO
Download
December 13, 2007
PHP Photo Galleries
No Comments
PHP Photo Album is easy to install and run PHP Photo Gallery script. No database required. Password directory protection, Logs, Automatic thumbnails generation. Caching of resized photos and thumbnails. Color and texts customizable. … new features comming soon , themes support and others … 
DEMO
Download
December 12, 2007
PHP Anti Spam Scripts
No Comments
“Creating this website I attracted lots of spambots to flood my forum, my programming resources, freelance database and other forms, but you probably know this situation very well. So I decided to create a simple PHP Class which could help me and probably other people to deal with the spam.” 
Download
December 11, 2007
PHP Anti Spam Scripts
No Comments
I. DESCRIPTION
Image Validator is a GPL CAPTCHA php script to stop spam on any form: comment areas, sign-ups, shopping carts - any area of your website where you fear the evil spammers may target.
II. REQUIREMENTS
1. Apache 1 or 2
2. PHP 4 or 5
3. GD 2 with truetype support
III. INSTALLATION
0. Unpack this package.
1. You may edit _config.php file located in imgval directory.
2. You may copy some TrueType fonts in imgval/fonts directory.
2. Upload or copy imgval directory to browsable directory.
3. Open imgval/index.php in your browser for testing.
IV. INTEGRATION NOTES
In <img> tag, ’src’ parametter should be linked with imgval/code.php.
Example: <img src=”imgval/code.php” />.
To prevent cache images you may add some unique parameter.
Example: <img src=”imgval/code.php?id=<?= time() ?>” />
Your should start a session in the response PHP file. In the valid action
PHP source code you should verify MD5 sum of the input-code-field-value
with session variable named __img_code__
Example:
if (md5($_POST[’code’]) == $_SESSION[’__img_code__’])
echo “Valid code”;
else
echo “Invalid code”;
Demo
Dowload