Showing posts with label generator. Show all posts
Showing posts with label generator. Show all posts

Friday, June 24, 2016

Anti spam Image Generator PHP Script Protect Your Blog From Spammers And Bots

Anti-spam Image Generator php script will render PNG image with code to protect your blog/comments/feedback section from spammers and bots (known as CAPTCHA).

Requirements:
  • PHP 4.0.6
  • GD 2.0.1 or later
  • TTF font to use for rendering code. By default it uses arial.ttf. You can find it online.

Features:
  • You can define characters set to use (by default 0123456789)
  • Customizable code length (default is 6)
  • Easy to use / light server load, not overloaded with features

Sample usage:
  • Add this html code where you want to place antispam image: <img src="http://www.website.com/path/to/antispam.php">
  • Add field to the html form to enter code, name it anti_spam_code: <input name="anti_spam_code">
  • Add following check in the php code to check if user entered CAPTCHA correctly:
@session_start(); // start session if not started yet
if ($_SESSION[AntiSpamImage] != $_REQUEST[anti_spam_code]) {
// set antispam string to something random, in order to avoid reusing it once again
$_SESSION[AntiSpamImage] = rand(1,9999999);

// here you add code to let user know incorrect code entered
...
}
else {
// set antispam string to something random, in order to avoid reusing it once again
$_SESSION[AntiSpamImage] = rand(1,9999999);

// everything is fine, proceed with processing feedback/comment/etc.

...
}

Download Anti-spam Image Generator PHP Script

Tuesday, May 31, 2016

Gallery Generator PHP Script Generate Picture Galleries On Your Web Site

Gallery Generator is the perfect and easy solution to generate picture galleries on your web site. It is all template based so just upload your templates and when you choose a template the script will automatically put the images where they are supposed to go.

Requirements

  •     PHP 5+ -http://www.php.net
  •     GD Library – http://www.libgd.org

Installation
  •     Open config.inc in the main folder and modify the settings to your liking
  •     Modify templates to suit your needs / design in the templates directory
  •     You may add new templates to the directory (they will show up automatically in the admin form)
  •     Upload to your server
  •     CHMOD the galleries directory and give it write access (this is where your galleries will be created)
  •     NOTE: You may want to limit access to your script directory by using .htaccess or other methods. If you do this however, make sure when you change settings in config.inc that you don’t place your gallery pages inside of this protected area unless you want it that way.
Download Gallery Generator PHP Script

Thursday, May 19, 2016

PHP Script Data Grid Generator

ApPHP DataGrid Wizard - utility script for generating PHP DataGrid pages. ApPHP DataGrid Wizard allows you easy creation of DataGrid pages. This operation does not require specific technical or programming knowledge.


Download Data Grid Generator

Wednesday, May 18, 2016

Sitemap Generator PHP Script

This class can be used to generate multiple sitemaps crawling sites. It can crawl one or more sites to retrieve its pages and follow links recursively and determine the addresses of all pages to include in a XML sitemap. It can ignore given URLs to avoid crawling and including in the sitemap. The class uses the Curl extension multi-request support to retrieve multiple site pages at the same time. You can also notify such services as Google, Yahoo, Bing, Ask and Moreover about your sitemap update. The class may also notify Google, Bing, Yahoo, Ask and Weblogs when the sitemap is updated.

Download Sitemap Generator PHP Script

Monday, May 9, 2016

Website Thumb Generator PHP Script Create Website Thumbnails With This PHP Script

Website Thumb Generator php script can be used to create website thumbnails for your needs, or start your own website thumbnail generation service.

Requirements:

  •     Windows hosting
  •     PHP GD library (installed on most hostings)
  •     Permissions to execute third-party applications (i.e. exe files)
  •     Permissions to execute Internet Explorer


How it works:
  •     Website Thumbnail Generator checks if it already has website image in the cache, and shows it in the browser.
  •     If no cached image then IECapt would be run from the script.
  •     IECapt would run Internet Explorer, grab full sized website screenshot from it, and save image into the folder you specified in script settings.
  •     Then Website Thumbnail Generator would resize image, and show it in the browser.


Installation:
  •     Download IECapt from http://iecapt.sourceforge.net or from our site: IECapt. Place it in some folder on your server.
  •     Download Website Thumbnail Generator using link below, and unzip it to the same folder.
  •     Update webthumb.php with your settings for thumbnails folder, cache time, default thumbnail size, etc.
Download Website Thumbnail Generator PHP Script