Welcome to grabtemplates.com your #1 free premium download we have over 1981 premium templates, graphics and more. - To see the dounload links you must register it is free
Sponsor
Sponsor
Sponsors
Sponsor
Ads 150×100

Sponsor
Ads 160 x 150

Sponsor
Sponsor
Sponsor

Archive for the ‘PHP Scripts’ Category

Create, store, and authenticate generated keys with this easy to use class.

Features:

  • Customizable key pattern
    • Add a Prefix and/or Suffix to your keys.
    • Define key length with two variables, length of each chunk, and number of chunks in each key.
    • Change the chunk separator, default of ”-” works well but maybe you want a seamless key.
  • MySQL based key storage
    • Store, Activate, and Deactivate Keys via the database or included class functions.
  • Time sensitive keys
    • Set a key to expire in one minute, or 10 years, its up to you.
  • One time use keys
    • User validation.
    • One time use promotion keys.
  • KeyMatch system for an extra layer of authentication.
    • Store the clients email, username, domain, server ip, possibilities are endless.
  • An easy to use API .
    • Integrate authentication into any programming language.
    • Use for scripts, desktop applications, mobile applications, etc.

Deploy this in your own products to ensure they are only used by whom has the right.

Ensure your product is not stolen with this easy to use system. Integrate the generation system in with your billing software and supply your customers with an authentication key. With this they can authenticate there script or software via the net. Key authentication does not require the Keyauth PHP Class, so you can deploy the keys on any platform or scripting language.

With the addition of a match string as a second level of security, the end-user would be required to supply a valid key along with the corresponding match key. This match key could be the domain or IP address of the server where the script lives. With this, you can ensure its used only on a single server, by a single user.

Examples

With just a few lines of code, you can create a fully unique key.

include("keyauth.class.php");

$keyauth = new Keyauth;
$keyauth->key_unique = TRUE;
$keyauth->key_store = TRUE;

$key = $keyauth->generate_key();

echo $key;

This is how easy it is to implement client side.

$key = "81I3-MD1F-DJRL-5D6N-9551";

$auth_url = "http://yoursite.com/auth/server.php?key={$key}";
$data = file_get_contents();
$result = json_decode($result);

if($result['valid'] != true){
    die("Invalid Key.  Script Stopped!")
}

Please note, these are very crude examples and are kept small for the sake of this page. Much more can be accomplished in a real environment.

Updates

If you purchased the class before the latest update date below, visit your downloads section and download the newest version.

  • June 24th, 2010
    • Added Key Activation and Deactivation
    • Added One Time Use Keys
  • June 20th, 2010
    • Item listed on CodeCanyon

Please Login or Register to read the rest of this content.

VN:F [1.9.3_1094]
Rating: 5.0/5 (5 votes cast)
VN:F [1.9.3_1094]
Rating: +4 (from 4 votes)

This search tool is perfect if you want a quick an easy way to search your dynamic websites. Simply upload the search.php file and make a form on your website like below and you’re done! It couldn’t be easier!

<form action="search.php" method="GET">
<input name="search" type="text" />
<input name="go" type="submit" value="Search Website" />
</form>

Features include:

  • Easy to install and configure
  • Searches all pages on your website (even search multiple websites!)
  • Super fast searching!
  • No database required – even easier to install!
  • Finds matching file names (eg: searching for ‘report’ will find a file called ‘latest report .doc‘)
  • Finds matches in HTML META tags
  • Finds matches in url’s (eg: searching for ‘products’ will find a file called ‘/website/my- products .html‘)
  • It will even search INSIDE PDF DOCUMENTS!
  • The results are sorted by relevance in a page-by-page view similar to Google.
  • The text that displays under each search result is trimmed to a certain length so it fits on the page nicely.
  • Any matching keywords in the results are highlighted so the user can see why that result was returned.
  • Advanced users:
    A custom callback function is included so you can insert your own results in with normal HTML results (eg: by querying a database of products for a match). This makes for great search integration between different products on an existing website.

Note: pdf document support is only available on Linux hosting accounts that have “pdftotext” installed. Please contact your hosting provider to check if pdftotext is installed.

Configuration:

You can control the following options:

  • Which website addresses (URL’s) to search
  • Which file names to ignore and never display in search results
  • How many results to display on each page
  • Plus many more advanced settings in the config.php file
  • There is an easy to use admin page which helps you configure these.

Advantages

The advantages of something like this over a google integrated solution

  • You can style it the way you want
  • Instant search results (no waiting weeks for Google to index your new website)
  • Customers don’t bug you that the search isn’t picking up the latest results
  • Control over exactly when the indexer will scrape your updated website content again
  • It can index “every” page of your website, something that Google may not do or take a long time to do
  • Custom callback function so advanced users can integrate a mysql query and inject custom results into the list
  • No advertising (customers don’t like ads on their professional looking websites)
  • It has an awesome highlighting feature

Requirements

  • PHP5
  • Linux hosting account (have not tested on Windows but it should work)
  • “pdftotext” utility installed if you wish to search PDF files (contact your hosting provider to see if it is installed)
  • Know how to upload files to your website (eg: with FTP )
  • Know some basic HTML /CSS so you can style the search results page (to suit your look & feel) if the defaults do not work.

How to install:

  1. Unzip the file from CodeCanyon
  2. Upload search.php to your website (eg: yourwebsite.com/search.php)
  3. Upload phpsearch_files/ folder to your website (eg: yourwebsite.com/phpsearch_files/)
  4. Visit the administration page by going to yourwebsite.com/phpsearch_files/admin.php
  5. Set “write” permissions via FTP remote view on the phpsearch_files/search_cache/ folder (contact me if you get stuck doing this)
  6. Create a form on your website like this:
  7. Done
    (replace yourwebsite.com with your actual website address above)

How to style the search results page:

  1. Open the phpsearch_files/header.php file in Notepad or your favorite HTML editor (eg: Dreamweaver)
  2. Delete any default HTML content from this file.
  3. Copy & Paste any HTML code you would like to display above the search results into this file.
  4. Open the phpsearch_files/footer.php file in Notepad or your favorite HTML editor (eg: Dreamweaver)
  5. Delete any default HTML content from this file.
  6. Copy & Paste any HTML code you would like to display below the search results into this file.
  7. Advanced users: you can do PHP includes eg: <?php include(“your_header_file.php”);?> into these two files.
  8. Advanced users: you can also <?php include(“search.php”);?> from one of your existing files to display results there.
  9. You can edit the CSS in phpsearch_files/phpsearch.css to match the colours to your website design if the defaults do not work.
  10. Done.

Please Login or Register to read the rest of this content.

VN:F [1.9.3_1094]
Rating: 5.0/5 (4 votes cast)
VN:F [1.9.3_1094]
Rating: +3 (from 3 votes)

A quick and easy Image Upload and Resize form and script. This file includes a PHP script (class) that will let you easily resize in ratio and proportion form-uploaded or pre-uploaded images in your server, will also let you create high quality thumbnails of uploaded images.

Please Login or Register to read the rest of this content.

VN:F [1.9.3_1094]
Rating: 5.0/5 (2 votes cast)
VN:F [1.9.3_1094]
Rating: +1 (from 1 vote)

With this easy to use and fully featured Download Manager, you can keep track of your files.

DownloadManager fully supports multi-part downloads, streaming support, download pausing, and download accelerators (like DownThemAll or SpeedBit DAP ).

DownloadManager also has the option to force a limited download speed per file or through a unique, limited download speed link.

DownloadManager has the option to create a one time use download link, download once, and the link is no longer valid.

DownloadManager keeps track of all downloads and the amount of bandwidth used. DownloadManager will graph downloads for all files or for the selected using Flot.

DownloadManager has support for multiple users, create, edit, and delete users.

Features

  • Built on the very powerful CodeIgniter Framework
  • File uploading with upload progress
  • Support for download managers and download accelerators
  • Easily Upload, Edit, and Delete files
  • Get an overview of all your files with the dashboard
  • Generate 4 dynamic download link types
    • Standard Download
    • One Time Download
    • Ignore Bandwidth Throttle Download
    • Force Bandwidth Throttle Download
  • Create multiple users

Coming Soon

  • User permissions
  • Per user bandwidth throttling
  • FTP Based File Uploads
  • XMLRPC Based File Information API
  • XMLRPC Based Upload API (Low Priority)

Updates

  • 2010 – 7 – 16
    • Fixed htaccess and a template file.
  • 2010 – 7 – 15
    • Fixed projects download. Corrupted zip file.
  • 2010 – 7 – 14
    • Initial Release

Please Login or Register to read the rest of this content.

VN:F [1.9.3_1094]
Rating: 5.0/5 (4 votes cast)
VN:F [1.9.3_1094]
Rating: +3 (from 3 votes)

PalmsForm takes all the hard work out of form building. You can get a form up and running within minutes. Form configuration and validation was never so easy. The best part about this library is that it is so flexible and convenient for you to customize your form, add / remove form fields, modify error messages, and extend core functionality of the library with minimal effort. As a result, you can use PalmsForm for all kinds of form, in all kinds of web sites and applications. It just works.

Live examples: http://palmsform.garyc40.com/examples/contact.php
http://palmsform.garyc40.com/examples/login.php
http://palmsform.garyc40.com/examples/register.php

Don’t forget to take a look at the documentation to get a feel of what PalmsForm is capable of:

Documentation

The easiest and most flexible way to create a Contact form

You can implement a contact form within 30 seconds, with all functions and validation rules automatically built in!

$form = new PalmsForm();

if ( isset( $_POST['submit'] ) ) {
    if ( $form->isValid() ) {
        $form->mail( 'your_email@domain.com', "Subject for email" ); // it automatically includes submitted data in the email body
    }
}

// to show the form:
<?php $form?>show(); ?>

Adding and customizing preset fields is a breeze!

PalmsForm is built with flexibility in mind. You can modify the default contact form in any way you want, adding more fields or changing fields property without hacking the library’s source code.

Easy to integrate into any websites and applications

You’re building a web app that requires creating lots of form? Let PalmsForm help! Within minutes, you can get a complicated form up and running. By buying an Extended License, you can also use it in an upcoming project that you want to sell on Envato marketplace!

Totally customizable

It’s unbelievably easy to customize PalmsForm. You can replace the default HTML markup with your own, or add your custom validation rules. You can even subclass PalmsForm to create various form templates for the sake of reusability.

Full and detailed documentation

PalmsForm comes with a fully detailed documentation that shows you everything it’s capable of. You can also take a look at PalmsForm in action by running those examples included in the package. Take a quick look at our example code, play around with it a little bit, and you’ll find out how easy it is to create forms using our library.

Please Login or Register to read the rest of this content.

VN:F [1.9.3_1094]
Rating: 5.0/5 (2 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 2 votes)

Smart Suggest is a “fancy” search suggestion plugin for jQuery (much like Apple’s site search). Smart Suggest takes auto-complete boxes to the next level.

Live Demo: Click here

Only one line of code to install! It will convert any HTML text input box to a powerful Smart Suggest box.

  • Ridiculously easy. A powerful search box with incredible capabilities, all from one line of code.
  • Category grouping. Display results from various categories, all in one box. For instance, show results from “web pages,” “downloads,” and “support articles” all from one search query.
  • Images. Optionally show a 40×40px image next to each of your results, adding some extra flare.
  • Run JS on click. Run any JavaScript code you’d like whenever a result is clicked on.
  • Completely customizable CSS . While Smart Suggest comes with a standard style, you can completely customize it to fit your site.
  • Compatible with all major browsers. Firefox (Windows & Mac), IE6 /7/8, Safari, Chrome.
  • Uses JSON for results. This makes it compatible with pretty much any language on the Internet today. Read more about JSON .

DOWNLOAD: Read the rest of this entry »

VN:F [1.9.3_1094]
Rating: 4.0/5 (4 votes cast)
VN:F [1.9.3_1094]
Rating: +1 (from 5 votes)

Easy to use newsletter system written in PHP . Heaps of features which allow you to quickly send professional newsletters to your member database.

  • send to friend
  • iframe’able subscription form
  • bounce tracking
  • bug fixes
  • update your profile form
  • better support for large member databases
  • better installer
  • who opened what statistics
  • view online link now displays customised email
  • probably some other things
  • enjoy!

And many more… see more

DEMO:

  • To access the newsletter admin page please click here
  • To access a demo subscribe form, please click here

DOWNLOAD: Read the rest of this entry »

VN:F [1.9.3_1094]
Rating: 5.0/5 (5 votes cast)
VN:F [1.9.3_1094]
Rating: +2 (from 4 votes)

E-mail and jQuery powered attachment supported Help Desk, Online Customer Care, Ticket System. Provide your customers send their questions or problems to you by a professional system. Template system is fully customizable.

Features

• Your customers can sign up and add their contact details.
• E-mail activation after sign up.
• User Login
• Users can submit tickets,
• Add attachments to their tickets (jQuery and AJAX powered)
• Supported file types: JPG , PNG, GIF , DOC, DOCX , PDF, XLS , XLSX, PPT , PPS, PPTX and PPSX
• Save their tickets as drafts to continue later
• Engage in message conversation with admin inside the tickets
• When a new message is submitted, the system sends mail to recipients

Other Features

PHP based template system
Easily create your own templates without any knowledge of php.
The template system is quite similar to or even simplier than wordpress template system

DEMO: http://codecanyon.net/item/help-desk-customer-service-ticket-system/88126 Read the rest of this entry »

VN:F [1.9.3_1094]
Rating: 5.0/5 (7 votes cast)
VN:F [1.9.3_1094]
Rating: +8 (from 8 votes)

Includes all 10 Scripts and Twitter Backgrounds Pack


The Twitter Scripts Bundle Pack includes the following:

  1. Twitter Background Generator Script (retail: $60)
  2. Twitter Background Packs ( 200+ Backgrounds) (retail: $35)
  3. Mass Follow / Unfollow Script (retail: $25)
  4. Vacation Tweets Script (retail: $25)
  5. Update Box Widget site Script (retail: $25)
  6. Tweet Reminders Script (retail: $20)
  7. Auto Tweets Script (retail: $15)
  8. Twitter Match Script (retail: $25)
  9. Threaded Convo Script
  10. Twitter Buttons Script (retail: $15)
  11. Twitter Signature Generator Script (retail: $20)
  12. Twitter Anniversary Script (retail: $15)
  13. Twitter Score Script (retail: $25)
  14. Twitter Leet Tweet Script (retail: $10)

DEMO: http://twitterscripts.net/

DOWNLOAD: Read the rest of this entry »

VN:F [1.9.3_1094]
Rating: 4.6/5 (5 votes cast)
VN:F [1.9.3_1094]
Rating: +4 (from 4 votes)

This application helps you to create in no time a mobile version of a website. This script supports all major devices like iPhone, Blackberry, Android devices, PSP , Windows mobile, Opera mini devices and other generic devices.

With this script there is no need for you to create a subdomain for your mobile website. This script detects if the visitor is using a mobile device and then shows the right versions.

To implement this script on your website you only need to include one file in the index.php file of your website. This way it’s possible to use this on any kind of website: wordpress, joomla, drupal or just custom written.

  • Usable for every PHP website
  • Animated page transitions
  • Automatic phone detection
  • Very well PDF documentation
  • Uses templates (customizable)
  • Show news using an RSS feed
  • Contact page
  • Custom HTML pages

DEMO : http://codecanyon.net/item/mobile-site/full_screen_preview/63316
DOWNLOAD: Read the rest of this entry »

VN:F [1.9.3_1094]
Rating: 5.0/5 (9 votes cast)
VN:F [1.9.3_1094]
Rating: +6 (from 6 votes)
Donations


VIP Area

Should we start a VIP area

Loading ... Loading ...
invitation only

Should we make grabtemplates invitation only

Loading ... Loading ...
Forum Activity
Sponsor
Ads 160×150

Sponsors
Sponsors
Sponsor
Ads 100×150

Sponsor
Sponsor
Sponsor