Showing posts with label free. Show all posts
Showing posts with label free. Show all posts

Tuesday, June 28, 2016

Coordino A Free Stack Overflow Clone In PHP

Coordino allows you to create a question and answer system(much like that of stack overflow) for you and your users to enjoy.

Whether you are looking to create a niche question and answer site for comic book collecting or looking for a knowledge base solution for your intranet, Coordino is here for you.
Get Started Today!

  • Using Coordino you can utilize the community in your industry by combining their knowledge on your website. Over time your knowledge base can serve as a focal point for your niche or company. 
  • Keep your knowledge base secured on your system in your location. You have full control of the security of your users and your data.
  • Why have yourself or anyone else reinvent the wheel? By utilizing a question and answer based system you can reduce roadblocks by having the answers right at hand.

Features & Benefits:
  •     A Knowledge Platform
  •     User Rewards
  •     Tagging
  •     Site Administration
  •     Total Control
  •     Remote Authentication
  •     Source Code
  •     Selfhosted Solution
Download Coordino -FREE Stack Overflow Clone Script

Monday, June 27, 2016

Makeup Beautician Training Course in Urdu Free

Makeup Beautician Training Course in Urdu

Makeup Beautician Training Course book for u
Hey How are you man? today i am posting a makeup course in Urdu specially for Pakistani Females. Many female searching these types of books on the net but they do not success in their aims. In Urdu PDF Book is ready for download .


Saturday, June 25, 2016

Hazrat Adam A S History Free Download in Urdu

Hazrat Adam A.S History books
Hy Friends Once again I am Posting a nice Urdu PDF book For you. Title of  Book is HAzrat Adam A.s Written by Aslam Rahi. Before this I already Posted Prophets life books E.g  Hazrat Ibrahim as History in Urdu same thing is  Hazrat Sulaiman Aur Deegar Anbiya Kay Qissay

Download

PHP Login Script A Simple Free PHP Login Script

A simple home made PHP/MySQL login script to protect your web page content from spam and bot registrations so that only registered users can view the content of your site.. It is free of charge and you can use it on any commercial or personal projects!


Features
  • Quickly Integrate to any Website.
  • User Registration Form with reCaptcha feature.
  • Login with remember me feature.
  • Easy to customize for your needs.
  • Login protect your web pages
  • Login by either username or email.
  • Javascript validation of fields.
  • MyAccount area for users.
  • Username checkup and registration
  • Email confirmation code and activation of account
  • Admin area to manage users with Ban user option
  • Forgot password option (resetting password for users)
  • Change Password option for users
  • Neatly formatted error Messages
Requirements
  • MySQL Database 3+ 
  • Linux server Apache Web server 
  • PHP scripting language
  • reCaptcha Keys + php library (register for free) 
  • JQuery for javascript validation.
How it works

Registration:

User registers with their chosen username, email and password. The script checks for existing username or email, if exists, it denies them registering an account. The username is restricted to only alphabets, numbers and underscore. No special characters allowed.


And of course, they have to verify their captcha image.

The password is stored in md5 format during registration and we send an 4 digit random activation code to their email address.

Login:

The script determines whether username or email is entered and it checks for existing account. When the user enters his password, the script converts the password to md5 string and then compares this to the md5 of the password stored in the database. We never want to know or store the real password of users. That is why we are using md5.

Once logged in we are registering a session and a Cookie with remember me feature.

Admin area:

You can manage the users like activating accounts of pending users, create user and ban them. I have kept it so simple and nothing fancy in the admin area. You have to set admin login and password in the script to login. Most the admin functions are made to work with javascript.

Error Messages:

The error messages are neatly formatted for the users.


Integrate to your Website

I have left spaces for header, footer, left menu and right menu in table layout so that you can easily insert your logo, header and footers depending on your website.


Installation Instructions

Here is how you install the script in your website.

1. MySQL database setup

(i) Create database table


Download and unzip the php login script and you can import the whole dbsql.sql or open the file in notepad and copy the lines and paste into the SQL of database. It will create users table and your admin login.

If you have cpanel you can access phpmyadmin directly this way - point your browser to http://domain.com:2082/3rdparty/phpMyAdmin/

(ii) Database settings

Open dbc.php and set values inside the quotes for your mysql settings.

  •  database name
  •  database user
  •  database password

you will get these information from your hosting provider. Make sure you give full access rights to the database user. If you have cpanel, just login and create database and database user.

example:
define ("DB_HOST", "xxxxx"); // set database host
define ("DB_USER", "xxxx"); // set database user
define ("DB_PASS","xxxx"); // set database password
define ("DB_NAME","xxxx"); // set database name

3. Setting up reCaptcha for your Script

(i) Download recaptcha php library (https://developers.google.com/recaptcha/docs/php), unzip and copy the single php file recaptchalib.php into login script folder. This is very important, without which the login script will not work

(ii) Go to recaptcha.net, register a free account, and you will get public and private keys. Make a note of that and set it here inside dbc.php
$publickey = "xxxxxxxxxxxxxxxxxxxxxxxxxxx"
$privatekey = "xxxxxxxxxxxxxxxxxxxxxxxxx";

4. Configuration settings

Open dbc.php and you have to configure the php login script.

(i) Automatic or Manual registration
/* Registration Type (Automatic or Manual)
1 -> Automatic Registration (Users will receive activation code and they will be automatically approved after clicking activation link)
0 -> Manual Approval (Users will not receive activation code and you will need to approve every user manually)
*/
$user_registration = 1; // set 0 or 1

(ii) Other Settings (optional only)

These are the other settings in the script if you want you can change it like cookie expiry time, specify admin levels and much more..
define("COOKIE_TIME_OUT", 10); //specify cookie timeout in days (default is 10 days)
define(SALT_LENGTH, 9); // salt for password
5. Integrate to your website

I have left spaces for header,footer inside each of the pages. You can place there logos, footer or whatever you want depending on your website.

6. Thank you page.

Upon registering, the users will be taken to thankyou.php page and you can customize it to whatever that suits your needs.

7. Login protect a new page

Lets say you have a new page page1.php, and you want only the logged in users to access it. To get this done, just add this one line of code and it should be VERY TOP of your page1.php. Any other html code or php code should be below it.
<?php
include dbc.php;
page_protect();
?>
// place html or other php code below this.
If any users who have not registered and accesses this page1.php, they will be redirected to login page.

8. Display MyAccount menu to all logged in users

You want to show the myaccount menu to all those logged in users with links to change password, logout, settings etc... To show the menu place this code anywhere in your page1.php.

Only logged in users will see this menu.
<?
if (isset($_SESSION[user_id])) {?>
<div class="myaccount">
<p><strong>My Account</strong></p>
<a href="myaccount.php">My Account</a><br>
<a href="mysettings.php">Settings</a><br>
<a href="logout.php">Logout </a>
<p>You can add more links here for users</p></div>
<? } ?>
You can add more links you want like submit etc..
Take a look at myaccount.php and see how this menu shows up on the left side.

9. Access Admin area

Just login as administrator with username admin and password admin123 and you will see Admin CP link below your myaccount.

You MUST change the password for admin once logged in.



Download PHP Login Script

Thursday, June 23, 2016

Free PHP Theme

Free php theme that is SEO friendly and supports ADS, databases, social media sites and is very customizable.

Download this Free SEO friendly Theme

Social Dating Website PHP Script Start Your Own Social Dating Site for Free

The pH7 Dating CMS is a PHP CMS with an architecture MVC (Model-View-Controller).
It is designed with the KISS principle in mind, and the entire source code can be read and understood in minutes, PDO (PHP Data Objects) abstraction allows choice of databases and is a principle of CMS developement DRY (Dont Repeat Yourself) aims at reducing repetition of information of all kinds (Not duplicate code).

It also wants to fast, low resource-intensive, extremely powerful and very secure.

pH7 Social Dating Softwares Features

  •     Easy, fast and intelligent
  •     Our software is very fast, intelligent, secure, and it has a spam detect system.
  •     Very Fun
  •     Our software is very fun for you and yours visitor!
  •     Dating Service & Community Website
  •     pH7 Social Dating is perfect for the dating site and social community portal.
  •     Multi Theme and many personalizable
  •     Build a unique theme and record time with the architecture of our CMS. 
Download pH7 Social Dating PHP Script

Monday, June 20, 2016

Free Hosting Manager Free Cpanel WHM Account Creator PHP Script

Free Hosting Manager is an open source CPanel/WHM Account Creator designed for free hosting companies. It is coded with PHP and MySQL. Our aim is to make free hosting management as easy, simple and hassle-free as possible.

Description

Free Hosting Manager V2.0 php script features a new client CP and a forced ads module!
Updated: 13th February 2009
New Features for V2.0

  •     Client Control Panel
  •     Forced Ads Module (More info)
  •     Admin CP - Client Management
  •     Support Tickets
  •     Manual Install Feature
  •     Language Files
  •     Template Files
  •     Accounting file included
  •     Several Bugs Fixed from V2.0 

Planned Features for V2.1

  • Download System
  • Knowledge Base Addon
  • SALT encrypted MD5 passwords
  • Updated Captcha Image
  • More features to signup keys
  • Link newsletter addon with clients
  • Fix possible email bug
 
 Download Free Hosting Manager -  A Web Hosting Tool Script



Thursday, June 16, 2016

Quick Cart Free Shopping Cart PHP Script

Quick.Cart is a very simple, efficient and easy to modify a PHP script. The PHP script is based on flat files and doesnt need a SQL database. Application allows you to generate thumbnails, create photo galleries, adding products, adding pages and subpages and have good SEO support. Perfect solution for small shopping carts. Compliant with XHTML 1.1, CSS and WAI.

Download Free Shopping Cart PHP Script

Monday, June 6, 2016

Free Auto Responder PHP Script

Have you ever wanted a completely customizable free self-hosted autoresponder script? To set the times you want? For as many messages and users as you want?

Infinite Responder is an autoresponder & newsletter hybrid that allows you to send as many messages, as many emails to as many lists as you want. It can behave as both a sequential autoresponder and a newsletter mailer.

I created it years ago in order to send out e-courses without buying a big, expensive package for hundreds (or thousands) of dollars. I wanted to be able to import my own lists and send from my own server without having to deal with the headaches of going thru a 3rd party.

And so here it is. Years of support and several bursts of development later weve got a pretty sophisticated package.


Download Free Autoresponder PHP Script

Free Web Spider and Search Engine PHP Script

Sphider is a lightweight web spider and search engine written in PHP, using MySQL as its back end database. It is a great tool for adding search functionality to your web site or building your custom search engine. Sphider is small, easy to set up and modify, and is used in thousands of websites across the world.

Sphider supports all standard search options, but also includes a plethora of advanced features such as word autocompletion, spelling suggestions etc. The sophisticated adminstration interface makes administering the system easy. The full list of Sphider features can be seen in the about section; also be sure to check out the demo and take a look at the showcase, displaying some sites running Sphider. If you run into problems, you can probably get an answer to your question in the forum.


Download Web Spider and Search Engine PHP Script

Sunday, June 5, 2016

Free LinkedIn Clone Script In PHP For Learning Management

Mahara is a Linkedin clone php script for Portfolio Management and Learning System.

What makes Mahara different from other ePortfolio systems is that you control which items and what information (Artefacts) within your portfolio other users see.

In order to facilitate this access control, all Artefacts you wish to show to other users need to be bundled up and placed into one area. Within Mahara this compilation of selected Artefacts is called a View.

You can have as many Views as you like, each with a different collection of Artefacts, and intended purpose and audience. Your audience, or the people you wish to give access to your View, can be added as individuals or as a member of a Group or Community.

ePortfolio owners create Views using a 4 step process and Views have the following features:

  •     ePortfolio owners can receive public or private feedback on their View and Artefacts within that    View.
  •     Users accessing a View can report any objectionable material directly to the Site Administrator.
  •     Users can add Views and Artefacts within a View to their Watchlist and receive automated notifications of any changes or updates.
  •     ePortfolio owners can Submit a View for Assessment by a tutor or teacher allowing for a snapshot of the View and associated Artefacts on a certain date.

Other Features of Mahara

File Repository

Mahara includes a file repository which allows users to:
  •     Create folder and sub folders structures
  •     Upload multiple files quickly and efficiently
  •     Give each file a Name and Description
  •     Manage their file allocation Quota
  •     When uploading a file users must agree to a configurable Copyright disclaimer.
  •     Can extract .zip, .tar.gz and .tar.bz2 from within the files area

Blogs

A comprehensive blogging tool is provided in Mahara, where blogs and blog postings are considered Artefacts and may be added to a View.

The blogging tool allows users to:
  •     Create blog posts using a WYSIWYG editor
  •     Attach files to posts
  •     Embed images into postings
  •     Configure whether or not Comments may be received on their blog
  •     Create draft postings for later publishing

Social Networking 

Mahara provides a social networking facility where users can create and maintain a list of Friends within the system. ePortfolio owners choose whether other users can add them to their Friends list automatically or by request and approval.
An ePortfolio owners Friends lists shows those Views to which they have been assigned access.

Resume Builder

Mahara includes a resumé builder which allows users to create digital CV’s by entering information into a variety of optional fields including:
  •     Contact and personal information
  •     Employment and education history
  •     Certifications, accreditations and awards
  •     Books and publications, professional memberships
  •     Personal, academic and work skills and
  •     Personal, academic and career goals

Profile Information 

Within Mahara users are able to share details through a variety of optional profile information fields including:
  •     Preferred Name
  •     Student ID
  •     Postal address and contact phone numbers
  •     Skype, MSN, Yahoo & Jabber name
  •     Introduction
  •     Profile Icons images

Administration 

Administrators are able to customise Mahara via a number of configuration settings which include:
  •     Language packages and themes
  •     Virus protocol
  •     Session and account lifetimes
  •     Authentication methods
  •     Institution setup
  •     Core page editor
  •     Main Menu editor

In addition with the Modular plugin structure of Mahara, Artefact and Block types may be configured, disabled or enabled, according to the organisation’s requirements.

Interface with Moodle

Mahara provides a single-sign on capability that allows users, at the option of the administrator, to be automatically logged in to both their Mahara and Moodle accounts by providing a username and password at only one of these sites.

The user can sign on at Mahara, and click on a link to her Moodle account, or sign on at Moodle, and click on a link to her Mahara account.

The single-sign-on feature runs over an encrypted transport, and the users passwords do not have to be shared between sites.

This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit.
Scalability

Mahara has been designed as a web application with a plug-in architecture. This means it is possible to scale the application up by separating hardware for search, database, file storage and web servers.

It is also possible to replicate each of these operational components to further scale the system upwards. In addition Mahara is designed to:

  •     be load balanced across several web servers
  •     have a share file data from a centralised file server
  •     and have a separate database server.

This hosting set-up has proven scalability for similar systems like Moodle.
Security

    Mahara automatically detects system settings that a pose security threat.
    Session key handling code has been tightly integrated with the core form/request APIs.
    Provides database abstraction that prevents any database injection attacks and input validation that prevents script injection attacks.
    User authentication can be tied to external systems such as student management systems or other databases such as their Student ID number.

Interoperability

  •     Mahara includes an Import/Export system with Leap2A support, and static HTML export.
  •     Users can place their views under any of the Creative Commons licenses.
  •     Mahara is built using PHP web scripting language and leverages PHP5s OO features.
  •     All plug-ins follow a consistent structure and inherit from a common base class (core functions of plug-ins   are implemented once)
  •     Mahara currently supports plug-ins for Artefacts, Authentication and Search. Therefore interoperating with an existing product simply requires the development of a plug-in.


Download Mahara - A LinkedIn Clone Script In PHP For Portfolio Management

PHP CAPTCHA Script A Simple But Effective Free CAPTCHA Script in PHP

PhpCaptcha php script is a library for generating visual and audio CAPTCHAs (completely automated public Turing test to tell computers and humans apart). You can read more about CAPTCHAs at Wikipedia.

It can help you to prevent/reduce:

  •     Automated sign-ups in registration forms.
  •     Comment spam in blogs and guestbooks.
  •     Brute force attacks on login systems.


A Word of Warning

OK, so this might sounds strange given what follows but please consider whether you really need to use a CAPTCHA before implementing this on your site. Although its legitimate to use CAPTCHAs in some situations you really need to be aware of the inherent accessibility pitfalls before implementing. Id also encourage you to fully investigate the alternatives such as the Akismet spam filtering WordPress plug-in and API before resorting to a CAPTCHA to solve your spam problems.

Right, Ive said my piece - on with the script.

Origins

The library is loosely based on an article I wrote for SitePoint which was published on 9th November 2005 - Toughen Forms Security with an Image.

Supported Features

  •     Multiple random TrueType fonts
  •     Character rotation
  •     Optional chararacter shadow support
  •     Optional site owner display text
  •     Random custom background images
  •     Font size selection
  •     Greyscale or colour lines and characters
  •     Character set selection
  •     Integration of validation function for checking the user entered code with the generated code

Requirements

The library requires PHP 4 compiled with GD 1 or 2 (Image Generation) and FreeType text support. It should work fine with Linux, Mac OS X or Windows based systems although you will need to change the default temporary file storage directory specified when using with Windows. PHP session support is also required. The audio CAPTCHA requires the Flite text to speech synthesis engine - more details on set up below.

License

PhpCaptcha is licensed under the Free BSD license.

Implementation Steps:

Step 1

Unzip and copy the php-captcha.inc.php to a directory within your site.

Step 2

To create a basic visual CAPTCHA with the minimal options create a new file (visual-captcha.php) containing the code shown below.


 <?php
require(php-captcha.inc.php);
$aFonts = array(fonts/VeraBd.ttf, fonts/VeraIt.ttf, fonts/Vera.ttf);
$oVisualCaptcha = new PhpCaptcha($aFonts, 200, 60);
$oVisualCaptcha->Create();
?>

Step 3

To create an audio CAPTCHA create a new file (audio-captcha.php) containing the code shown below. For this to work youll need to ensure that your have a working installation of Flite.
 <?php
require(php-captcha.inc.php);
$oAudioCaptcha = new AudioPhpCaptcha(/usr/bin/flite, /tmp/);
$oAudioCaptcha->Create();
?>

You need to pass the path to the Flite binary and the temporary directory you want to use for storing generated audio CAPTCHAs to the class constructor. Alternatively you can modify the corresponding constants in the library file and then omit the parameters in the constructor.

Step 4

Include the visual and audio CAPTCHAs in your application/form with the following code. The audio CAPTCHA should ideally follow the visual CAPTCHA in the source code. This will ensure the visual CAPTCHA has generated a random code before the audio CAPTCHA is called.


 <p><img src="visual-captcha.php" width="200" height="60" alt="Visual CAPTCHA" /></p>
<p><a href="audio-captcha.php">Cant see the image? Click for audible version</a></p>

Step 5

On form submission you need to check the code the user enters with the one generated by the CAPTCHA. You can do this with the following code assuming that the user entered code was submitted in an HTML POST form field "user_code".


 <?php
require(php-captcha.inc.php);
if (PhpCaptcha::Validate($_POST[user_code])) {
echo Valid code entered;
} else {
echo Invalid code entered;
}
?>

Please note that the Validate method needs to be called statically, i.e you dont create an instance of the class before calling it.

Configuration Options

  1. SetWidth(int iWidth) - set the width of the CAPTCHA image. Defaults to 200px.
  2. SetHeight(int iHeight) - set the height of the CAPTCHA image. Defaults to 50px.
  3. SetNumChars(int iNumChars) - set the number of characters to display. Defaults to 5.
  4. SetNumLines(int iNumLines) - set the number of interference lines to draw. Defaults to 70.
  5. DisplayShadow(bool bShadow) - specify whether or not to display character shadows.
  6. SetOwnerText(sting sOwnerText) - owner text to display at bottom of CAPTCHA image, discourages attempts to break your CAPTCHA through display on porn and other unsavoury sites.
  7. SetCharSet(variant vCharSet) - specify the character set to select characters from. If left blank defaults to A-Z. Can be specified as an array of chracters e.g. array(1, G, 3) or as a string of characters and character ranges e.g. a-z,A-Z,0,3,7.
  8. CaseInsensitive(bool bCaseInsensitive) - specify whether or not to save user code preserving case. If setting to "false" you need to pass "false" as the second parameter to the "Validate" function when checking the user entered code.
  9. SetBackgroundImages(variant vBackgroundImages) - specify one (a string) or more (an array) images to display instead of noise lines. If more than one image is specified the library selects one at random.
  10. SetMinFontSize(int iMinFontSize) - specify the minimum font size to display. Defaults to 16.
  11. SetMaxFontSize(int iMaxFontSize) - specify the maximum font size to display. Defaults to 25.
  12. UseColour(bool bUseColour) - if true displays noise lines and characters in randomly selected colours.
  13. SetFileType(string sFileType) - specify the output format jpeg, gif or png. Defaults to jpeg.
The methods listed below allow you to refine the look and feel as well as the behaviour of the generated CAPTCHA. They should all be called before the "Create" method.

Download Free PHP CAPTCHA Script

Friday, June 3, 2016

Free Poll Script In PHP

DRBPoll is a simple PHP poll script that doesnt require a database. It allows you to put a poll form on virtually any page on your web site. The results page displays a colored bar graph of the votes. The look-and-feel of the poll form and results page can be customized using a standard CSS file. Data is stored in flat files, therefore no database is required.

Features

  • Quick and easy to install.
  • The poll data is stored in flat files, so no database is required.
  • Prevents the same IP address from voting on a poll more than once.
  • XHTML syntax compliant, and compatible with both IE and Firefox.
  • Colors and fonts are defined in an ordinary, customizable CSS file.
  • The script is highly configurable and customizable.
  • Multiple polls on the your site can utilize the same instance of the script.
  • Poll options can be rendered as either radio buttons or a combobox.
  • Includes an example page demonstrating how to add a poll to virtually any PHP page on your website.

Download Poll Script In PHP

Commentics A Free PHP Comment Script

Commentics is a free, advanced PHP comment script with many features. Professionally written and with open source code, its main aims are to be integrable, customizable and secure. It is designed to be integrated into your existing pages.

Why use it?

Fresh and relevant content not only helps in retaining visitors but also in keeping search engines interested. For the reasons below, Commentics is an ideal choice for this. Use it on your articles or even as a standalone comments page.

Installation

Before beginning the installation, make sure that you have the following:
  • A text editor to edit the files. Notepad is okay or you can use a source code editor like Notepad ++.
  • An FTP application to upload the files. FileZilla (client) is a good choice.
In the steps below, remember to replace domain.com with your actual domain name.

Step 1: Download

Download Commentics to your computer and unzip the folder. 7-Zip is a good, free application to unzip with.

Step 2: Create Database

Next you will need to create a database for Commentics to use. You can do this in your website control panel such as cPanel. It may also be possible in phpMyAdmin. Please consult your control panels documentation for instructions, or contact your host for support. You will need to supply a name for the database. This can be anything you like but commentics or comments are suitable examples. Make a note of the name as you will need it next. You should give at least the following privileges to your MySQL user: SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, INDEX and DROP.

Step 3: Database Details

Open the folder that you downloaded and unzipped and navigate to the following file: comments/includes/db/details.php. You should see a section titled Enter Database Information Here. In this section will be several settings:
  • $cmtx_mysql_database This is where you enter the name of the database you created, e.g. $cmtx_mysql_database = commentics;
  • $cmtx_mysql_username This is the username your host gave you for accessing your database.
  • $cmtx_mysql_password This is the password your host gave you for accessing your database.
  • $cmtx_mysql_host This is usually localhost. Sometimes it may be an IP Address.
  • $cmtx_mysql_port Normally you can leave this blank, unless your host instructed you to specify a port number.
  • $cmtx_mysql_table_prefix Normally you can leave this blank. If for some reason you could not create a new separate database for Commentics, you can use an existing database and enter a prefix for its tables so that they dont conflict with the existing databases tables.
Once you are finished entering these settings, please save and close the file.

Step 4: Upload

Now that you have the script ready, you can start to upload it to your website. To do this, open your FTP application and connect to your website. You should see two windows; one showing the files on your computer, and another showing the files on your website. In the window showing your computers files, navigate to where you have the /comments/ folder located (note that this folder is inside the /commentics/ folder so dont upload the /commentics/ folder). In the window showing your website, navigate to your root (home) directory. Once you have the two windows prepared, simply drag across the /comments/ folder over to your website. The upload process may take several minutes. Once complete, you should see the /comments/ folder amongst your website files/folders. It is important not to rename the /comments/ folder.

Step 5: Permissions

The next step is to give the database file the correct permissions. Using your FTP application, navigate to the following file on your website:
http://www.domain.com/comments/includes/db/details.php
Right-click on the file where an option such as File permissions should be available. If you are able to enter a numeric value, please type in 444. This should work for the majority of servers. If you can not enter a numeric value, make sure that no Write or Execute permissions are set, only read. Instead of using FTP, you may need to do this in your websites control panel, e.g. cPanel. There should be a feature such as File Manager. If on a local server, you can simply right-click on the file, click properties and select read-only.

Step 6: Rename Admin

For added security you should now rename your admin folder:
http://www.domain.com/comments/admin/
This will keep it hidden from people who may want to try to access it. You can rename the folder using your FTP application. Please dont rename it to admin2 or myadmin as this defeats the purpose. Rename it to something difficult to guess but something that you will remember.

Step 7: Installer

The final part of the installation process is to run the Installer. This will add all of the necessary tables into the database that you created. To run the Installer, open up your web browser (e.g. Internet Explorer) and go to the following address:
http://www.domain.com/comments/installer/


Download Commentics PHP Script

Thursday, June 2, 2016

Free Image Verification Captcha Script In PHP

DRBImageVerification is a simple anti-spam image verification, or CAPTCHA, script. It allows you to add a challenge-response test to your existing PHP powered forms to prevent automated spam postings.

Features

  • Quick and easy to install.
  • Verification string length and character list are configurable.
  • Requires a session cookie, for additional obscurity.
  • Includes an example PHP page demonstrating how to add a verification image to a form.

Download Image Verification Script

Wednesday, June 1, 2016

Hazrat Khalid Bin Waleed R A Free Download

Hazrat Khalid Bin Waleed
Hazrat Khalid Bin Waleed ki kitab
Allah Ki Talwar Yes Khalid Bin Waleed a Brave Leader In Islamic History. This Book Is Written By Anayat Ullah . Download And enjoy This Book visit us find more nice book



Monday, May 30, 2016

Free Website Directory PHP Script

Build a complete website directory in just minutes. No need for technical skills, it cant get any easier!.

Features

  • Fast and easy installation. Build a whole website in minutes.
  • Multi-level category structure with unlimited number of categories.
  • Integrated search engine.
  • Easy management. Add/edit/delete/move categories and/or listings with one click.
  • Easy customization. Change the layout by just editing the template files of the script.
  • Build a human-edited directory where users suggest urls and you accept/them rejected.
  • IP banning in order to avoid spam and bad uses of the directory.

Download Website Directory PHP Script

Tuesday, May 17, 2016

Free Social Bookmarking Script In PHP

More and more people are using social bookmarks. Such services gives a great way to keep track of their own bookmarks, independently from the used browser and computer.
Bookmark saved with such services are useable from home, work ... from everywhere. And the social structure gives you the possibility to find related links you never knew existed before.

As an webmaster it is a good idea to help people in using this services. Making it easier for people to bookmark your site will return in more bookmarks... and more people coming back.

This script makes it easy to implement links to social bookmarking services. Not just simple links.

When integrated in your site a visitor clicking on one of the links will be directed directly to the formula used by the chosen service for save the bookmark. The URL of your page and your page-title will be inserted directly in the form.

What does social bookmarking services do?

Social bookmarking services are getting more popular. They enable you to access your bookmarks worldwide. Independently from the used browser and computer. You can access the bookmarks at work, from home and out of your holiday.
And you are able to tag your bookmarks. Which gives you a great way of flexibility.
While you can keep your bookmarks private (or some of them), most are public. And in combination with the tagging system you can find interesting links to other sites which covers the topic.

Download Social Bookmarking Script In PHP

PHP Image Magician One Of The Best Image Manipulation PHP Script And Its FREE!

PHP Image Magician is an open source project that uses PHP GD to perform image manipulation in an easy, succinct way.
Resizing, cropping, watermarking, adding text - has it all!

Features Of PHP Image Magician script

  1. Easy resize: Resize to landscape, portrait, or auto; then crop in one fell swoop!
  2. Watermark: Add watermarks to your precious photos. Photo theft is serious. Preserves transparency.
  3. Shadows & Reflections: Add gloss and/or depth to you image. Apple would be proud.
  4. Transparency support: Supports and preserves transparency where possible.
  5. Full crop capabilites: Choose the region to crop with a shortcode (t=top, tl=top left, etc) and crop away!
  6. Text: Caption that image. Then caption it again.
  7. Borders, Rounded corners, Rotation: Add borders. Not a 1px black border, a realish border. Rotate and sand off em corners.
  8. Image type conversion: Convert from one image format to another, including BMP.
  9. BMP support: Read and write BMP support is offered for you legacy, Window loven bumpkins!
  10. EXIF metadata: Reads EXIF metadata from your digital photos.
  11. Effects & Filters: Grey scale, black & white, sepia, negative and vintage.
  12. PSD read support: Weve added a PSD reader library for PSD support. This file is not maintained by us.

Download PHP Image Magician PHP Script

If you ask me personally, this is the best PHP manipulation script.It is so powerful and does it all.So it is a must download for people dealing with Image Editing.

Besides, if you want us to deliver similar interesting PHP Scripts, as the one above, directly in your Inbox, then Subscribe below and dont forget to activate your Subscription.

Enjoy!

Friday, May 13, 2016

PHP Download Scripts Two Free PHP Scripts Which Enable Users to Download Files from your Website

Today I am going to share two PHP Script which will be useful for all the Webmasters out there.This PHP Script will enable your visitors to Download various files (be it mp3,movies,zipped etc.) from your website.In short, this is a Download Script and its FREE!

1. Download Script 1

This Download Script works perfectly even when you need to download files from a Protected Directory.Besides this download script also uses Cache control which gives you an option to Open Files for Viewing Without Saving it on your Hard Drive.For example, in case of a text file, you can open the file to view its contents without saving the file on your Hard Disk.The Script is located below:
<?php

// place this code inside a php file and call it "download.php"
$path = $_SERVER[DOCUMENT_ROOT]."/path2file/"; // change the path to your websites document structure
$fullPath = $path.$_GET[download_file];

if ($fd = fopen ($fullPath, "r")) {
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);
switch ($ext) {
case "pdf":
header("Content-type: application/pdf"); // add here more headers for different extensions like doc excel and more
header("Content-Disposition: attachment; filename="".$path_parts["basename"]."""); // use attachment to force a download
break;
default;
header("Content-type: application/octet-stream");
header("Content-Disposition: filename="".$path_parts["basename"].""");
}
header("Content-length: $fsize");
header("Cache-control: private"); //use this to open files directly
while(!feof($fd)) {
$buffer = fread($fd, 2048);
echo $buffer;
}
}
fclose ($fd);
exit;
// example: place this kind of link into the document where the file download is offered:
// <a href="download.php?download_file=some_file.pdf">Download here!</a>
?>

It must be noted that in the above example ,emphasis is made on pdf files.But you can always add more headers to suit your needs.

2. Download Script 2

This PHP Download script will not show any Confirmation message when the download will complete.
<?php
session_start();
/*
Note that this PHP Script does not show Confirmation message when the Download Completes.You can make the
required changes to suit your needs
*/
//You Can Change the URLs to suit your needs
$error=http://errorexample.com;
$filepath=/my/local/file/path/to/images/;
$getfile = basename ($getfile);

if (isset($_POST[downl_file]) && basename($_POST[downl_file]) == $_POST[downl_file]) {
$getfile = $_POST[downl_file];
$_SESSION[downloadfile] = $_POST[downl_file];

} else {
header("Location: $error");
exit;
}
if ($getfile) {
$path = $filepath . $getfile;
// check that it exists and is readable
if (file_exists($path) && is_readable($path)) {
// fetch the file size and send the respective headers

$size = filesize($path);
header(Content-Type: application/octet-stream);
header(Content-Length: . $size);
header(Content-Disposition: attachment; filename= . $getfile);
header(Content-Transfer-Encoding: binary);
// opens in read only mode
// Ignore error message
$file = @ fopen($path, r);
if ($file) {
// stream the file and exit the script once download is completed
fpassthru($file);

exit;

} else {
header("Location: $error");

}
} else {
header("Location: $error");
}
}
?>
Note that these two PHP Scripts are WORKING!, so you can begin using it straightaway.If you have any suggestions regarding the script please feel free to share it with us.Feel free to edit the above two scripts to suit your personal needs.

Subscribe to our blog and we will email you similar interesting scripts as soon as it is published.

Enjoy!