Showing posts with label website. Show all posts
Showing posts with label website. Show all posts

Thursday, June 30, 2016

Google PageRank PHP Script An Easy To Use And Working! PHP Script To Find Google PageRank Of Any Website

A very simple and powerful PageRank (Google PageRank) finder for any website. Just submit the website URL one at a time and get the page rank. Script is using Google toolbar to get the PageRank. 
Google PageRank PHP script works for both Bloggers and Webmasters. This script directly communicates with the Google toolbar.So it always is advisable not to make too many request at the same time from the same IP.

Instructions

Download "Download Free PHP pagerank script" and extract it using winzip or other similar program.

Include google-pagerank.php in your PHP which is going to display the pagerank for a website.

<?PHP include_once "google-pagerank.php"; ?> 

In the next line,

<?PHP
$url = "http://google.com";
$width = "200";
$method = "css"; //image or css or default
$image_location = "images/"; //including the slash (/)
$obj = new pr($url,$method,$width,$image_location);
?>

Thats it. Now all we have to do is, display the pagerank in the desired position of your webiste.

<p><PHP echo $obj->pagerank(); ?></p> 

If you are using "css" or "default", you have to use the above method to display the pagerank image."images" method requires the following line of code.

<p><img src="filename.php" /></p> 
filename.php should contain

<? include_once("google-pagerank.php");
$url = "http://www.google.com;
$width = "";
$method = "image"; //image
$image_location = "images/"; //including the slash (/)
$obj = new pr($url,$method,$width,$image_location);
echo $obj->pagerank();
?>
Instruction For Bloggers:

Bloggers cant use PHP code in blogs. so to display pagerank in your blog use the following code.

<p><a href=""><img src="http://www.agrizlive.com/
demo/google-pagerank-script/blogger.php?
url=http://www.google.com" /></a></p>

 Make sure you replace the blue color http://www.google.com to your blogger URL.

Download Google PageRank PHP Script


Monday, June 27, 2016

Search Engine Submission PHP Script Use this Script to Submit a Website to 130 Search Engines

URL Submit Script is PHP script which allows users to submit website to over 130 Search Engines at one go, no waste of your time as just in one click your site will be listed in the most important Search Engines.
You can also use this PHP Script to offer a service to all the visitors on your Site/Blog.

Installations:

  • unzip all files in a folder!
  • send all files from your server

Features:

  • Install in 1 minute
  • Offer service for your visitors
  • Language file ( easy to translate )
  • Easy add or remove engines ( flat file )

Requirements:

  • PHP 4.2+
  • Ioncube loaders

Some FAQs:

Q: How Do I Install URL Submit Script?

A: unzip all files and send to your server , if you dont like the design, you can change the design to suit your taste.All CSS are in index.php, if you do not want to change then include it in your actual site using include function example:
<?php include("submit.php");?>
Q: How to solve ioncube error ?

A: If you are running different PHP version, download the loader from your system here http://www.ioncube.com/loaders.php and add it in your ioncube folder.

Q: How to add or remove engines ?

A: open file @@@_engines.txt , one engine per line , if you like to remove a Search Engine, only remove the line and its done,Search Engine is no more available, if you like to add a Search Engine, all values are separated by |
Example :
 number unique|name display|main url |path |answer to know if have a error or success |keep 1 |.

 Download Search Engine Submission PHP Script

Thursday, June 23, 2016

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

Tuesday, June 14, 2016

WebSite Backup Database mySQL Backup

These classes are made by ThoR® aka Kender functioning to back up files and MySQL database. You can download it here (6kb).

Below are the instructions of use and sample of how to use it:

INSTRUCTIONS

/********************************
BACKUP OF FILES
*********************************/
$mkBackup = new BackUp;
this initialize the class

$mkBackup->WhatBackup(PATH_TO_SAVE);
this set which folder will be compressed
Relative path. Full path should work. No final "/"

$mkBackup->WhereBackup(MOVE_COMPRESSED_FOLDER_HERE);
this set in which folder the compressed archive will be saved
Relative path. Full path should work. No final "/"

$mkBackup->FileName(NAME_OF_ARCHIVE);
this set the name to give to archive
you can create name on-the-fly, using date(); or whatever you want

$mkBackup->Debug();
if you want to display all the infos about compression
This will display all vars set before: What Backup, Where, and name of archive
Nothing more...

/********************************
BACKUP OF DATABASE
*********************************/
$mkBackup = new BackUp;
this initialize the class

$mkBackup->DBFileName(NAME_OF_SQL_FILE);
this set the name of file of SQL Dump, and save it directly to server
Relative path. Full path should work.

$mkBackup->SaveAs(NAME_OF_SQL_FILE);
this set the name of file of SQL Dump, and ask to "save as..." to save it on own disk...
if this is set, the "DBFileName" function of the class, is ignored

$mkBackup->DBMakeBackup("server","port","user","password","database_name");
this create the backup. Vars are very simple:
server is the mySQL server (if empty, "localhost" is used)
port is the port of mySQL server (if empty, "3306" is used)
user is the user used to connect to mySQL server (if empty, "root" is used)
password is the password used to connect to mySQL server (if empty, empty password is used)
database_name is the name of the Database to save (if empty, it will display an error)

/********************************
BACKUP EXAMPLE
*********************************/
Backup files:

$mkBackup = new BackUp;
$mkBackup->WhatBackup("www/mysite");
$mkBackup->WhereBackup("www/backup");
$filename = date("Y_m_d__H_i_s___WebSiteBackup");
$mkBackup->FileName($filename);
$mkBackup->Backup();

Database Backup, directly on server:

$mkBackup = new BackUp;
$mkBackup->DBFileName("www/backup/2004_05_18__TestingBK.sql");
$mkBackup->DBMakeBackup("localhost","","root","","my_database");

Database Backup, save as...:

$mkBackup = new BackUp;
$mkBackup->SaveAs("2004_05_18__TestingBK.sql");
$mkBackup->DBMakeBackup("localhost","","root","","my_database");


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

Wednesday, May 25, 2016

Simple Member PHP Script Add Protective Area On Your Website

Simple Member allows you to put up that much needed protective area on your web site where you don’t want anyone snooping without first signing up. This is a real simple membership script written in PHP 5+ that requires MySQL 5+ to run it on your website.

Requirements

    PHP 5+ -http://www.php.net
    MySQL 5+ – http://www.mysql.com
MySQL Database Setup

    Open sql.txt using any text editor. (located in the main Simple Member folder)
    Paste the contents into a tool that can execute SQL commands for your MySQL DB

Installation

    Follow the MySQL Database Setup Before Continuing
    Open main.php with any text editor in the root folder and modify the settings for your server
    Upload to your server

How to Use Simple Member
    At this time there are no admin utilities to view, edit, remove your members, etc.
    The login / add member php script is located at http://domain/to/main/path/index.php
    Your members area would be located in member.php … so this is where you would put content that you want only your members to see. You may copy member.php into a new file to add multiple member restricted pages. Look for the MEMBER CONTENT GOES HERE comment.

Download Simple Member PHP Script

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!

Tuesday, May 10, 2016

Free Website Builder PHP Script

Zazavi is a free website builder designed with a simple drag-and-drop interface so that absolutely no programming skills are required. You can build your website for completely free within just a couple hours!


Download Free Website Builder 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

Wednesday, May 4, 2016

Oxwall Get Your Own Social Networking Website Up And Running In Minutes Using PHP And MySQL

Oxwall® is unbelievably flexible and easy to use PHP/MySQL social networking software platform.

Its flexibility is an extremely easy way to change the way it works using Oxwall plugins. These plugins are complete units of functionality that can be used for various purposes.

As per its Homepage:

We take special care about core and plugins compatibility so any updates are easy like a breeze. Just click that button in the admin area.

Oxwall offers unseen level of efficiency when you need a full-featured, working site.


Who Should Go For Oxwall? Is it FREE?

Oxwall php script is used for a wide range of projects starting from family sites and custom social networks to collaboration tools and enterprise community solutions.

Whether you are a freelance developer willing to streamline your work for client projects; an individual willing to create a community site; or a brand planning to set up a destination for your customers - Oxwall is for you.Besides its completely FREE! 

User features

  •     Photo, Video sharing;
  •     Blogs, forums, wiki;
  •     Groups, events, friends;
  •     Comment, tag, rate any kind of content;
  •     Privacy and profile customization;
  •     Collaboration, file sharing, video-conference tools;
  •     ... and much much more.

Admin features

  •     Complete member and content management;
  •     Content moderation and ability to appoint moderators;
  •     Flexible privacy and permissions management;
  •     Custom statistics on different metrics a-la Google Analytics;
  •     Pages, menus and custom content management, right from admin panel;
  •     Advertisement management and statistics;
  •     Powerful appearance building tool, as if an extensive collection of themes is not enough;
  •     Ability to install/upgrade plugins (and the core engine) right from the admin panel, with a few clicks;
  •     Overwhelming set of site and plugin configuration tools.

General features

  •     Utter simplicity. Your site is worthless if users dont know how to use it.
  •     Built-in SEO
  •     Proven performance
  •     Multiple languages available and 100% user area translation support
  •     For developers: Structured and evident core code. Makes it a childs play to develop plugins with all the documentation and examples.

Download Oxwall- Free Social Networking Site Script In PHP And MySQL

Tuesday, February 2, 2016

How to make Website in to HTML free Video Tutorial

Easy way to make Money to developing website in to HTML and sale it
If you are a became Developer and web seller now create your own website and sale in on massive price on the internet freelancer site or Click Bank and earn more and more , There are some video tutorial or Video course that are based on learn to creating a website in to HTML language and sale out on eBay and get money from it .
How to make a website in to HTML a Complete video tutorial package

Watch video tutorial for making website in to HTML and earn money to sale out on internet
Become a Web Developer and Seller Build your Own website Now if you wan to download this video tutorial package then you need to click on link and download a direct video downloader software that will help you to getting all video tutorial in to one single file that are given below.

Wednesday, January 27, 2016

Download How To Build a Website With WordPress Fast!

Download How To Build a Website With WordPress...Fast! free
Download How To Build a Website With WordPress...Fast!

Download Free PDF eBook How To Build a Website With WordPress...Fast!

How To Build a Website With WordPress...Fast! (2nd Edition - Read2Learn Guides) (Volume 2) by Kent Mauresmo and Anastasiya Petrova
English | 2013 | ISBN: 1480194298 | 116 pages | MOBI | 3,3 MB
"Easily Build a Professional Website In 15 Minutes Using Our Simple Step-By-Step Guide"
Do you need a simple training guide? This guide is simple.
Are you short on time? This book is fast paced and easy to read!

Do you learn better with pictures? This book is FULL of pictures.
Invest a few tax-deductible dollars in this easy-to-read eBook now!

You need help with WordPress, and you need an easy step-by-step guide. This book will help you build a website fast.

Well teach you how to use WordPress to create potent money making websites that will boost your business fast!

Once you know the secrets, youll laugh at how easy this is. This eBook is filled with screenshot images showing you exactly how we run the administration area of our website.

Well Show You:
How to pick the best domain names.
How to pick the best hosting package. (#1 Source Recommended per WordPress.org)
How to pick and install the BEST Wordpress Plugins.(Updated)
Where to get amazing Wordpress Themes.
How to easily customize your pages and create submenus. (Updated)
How to customize your sidebar.
How and where to get custom Facebook and Twitter widgets for your website.
How to effectively set up the recommended plugins. (Updated)
How to write effective blog post/articles.
How to upload pictures. (Updated)
How to easily embed videos from YouTube.
How to get blog comments. (Updated)
How to manage blog comments. (Updated)
How to get found on the FIRST PAGE OF GOOGLE!


Download free How To Build a Website With WordPress...Fast! ebook below:



Download This Book for Free

Please Take Some Time To Share this eBook or Like Our FB Page for more Updates

Report Any Broken Download Links in Comments and We will fix it for You.

Friday, January 22, 2016

Download How to drive traffic to your New Website free ebook

Download free pdf ebook How to drive traffic to your New Website 

Download-free-ebook-How-to-drive-traffic-to-your-New-Website