Archive for July, 2005

CGI based Autoresponder Script

Sunday, July 31st, 2005

Autoresponder script

The script is very easy to install, infact in less than 5 minutes you can have it up and running which could be the reason it is the #1 choice of website owners who want to take control of their online operations.It has highly advanced features that an autoresponder script should have.With this script you can send an unlimited number of follow up emails and send follow-up emails everyday if you want (some autoresponder scripts allow you only 20 follow up e-mails). This script also works on an unlimited number of subscribers and it will work great even if you have hundred or one million subscribers.

Please click here to buy this item with INSTALL support for $9.95 only

You can also checkout other autoresponder scripts here :
MULTILEVEL EMAIL AUTORESPONDER REPLICATOR
USENET AUTORESPONDER

MySQL Database Backup

Saturday, July 30th, 2005

Perl Script for MySQL Database Backup

With so many scripts in this package using MySQL databases, I only thought it be fitting to add a script that would easily allow you to make backups of them.But this particular script can be used anywhere you have a MySQL database and Perl is supported, this script will save your skin over and over again.

Please click here to buy this item with INSTALL support for $9.95 only

If you are looking for PHP and MySQL Content Management System then please click here.

ClickBank “Thank You” Page Protector Script.

Friday, July 29th, 2005

A completely automated “Thank You Page Script” which is much powerful than a Static HTML Page. The System will verify whether your buyer is forwarded from ClickBank after the payment, order Details including the ClickBank “Receipt #” will be displayed on your ‘Thank You’ page.

  • This System will collect the name & email address of your buyer
  • A sales report will be sent to you Instantly
  • A Thank You message will be sent to your buyer without any delay
  • It adds the buyer to your Autoresponder System so that follow-up emails will be sent to promote your other products
  • Whole system is fully automated and easy to customize with any text editor

With this script solution you do not have to send a thank you message to your buyer manually nor do you have to add them to your customer database manually.You will not need to send them promotional e-mails manually to promote other products, you don’t have to worry about getting repeated sales and you don’t have to worry about ebook and software crackers.

Please click here to buy this item for $9.95 only

You can also checkout other clickbank scripts by clicking here.

Management Script for Frequently Asked Questions (FAQ)

Thursday, July 28th, 2005

This awesome script will allow you to administer a website’s frequently asked questions(FAQ).It blends easily with any site and allows unlimited category depth, is searchable and allows questions to be in multiple categories.Also optional user question submission option is available, along with most recently added and most popular list.

Please click here to buy this item with INSTALL support for $9.95 only

You can also checkout other FAQ scripts here :
FAQ manager written in PHP and MySQL
FAQ Generator PHP Script

ICQ Pager Script

Wednesday, July 27th, 2005

This particular script enables you to put an ICQ pager form on one or more of your web site’s page.The visitor to your website can then use this form to send a short message to any ICQ user. A very nice script that will keep your visitors coming back over and over again.

Please click here to buy this item with INSTALL support for $9.95 only.

Client Invoicing Script

Tuesday, July 26th, 2005

Cool Client Invoicing Script

This is a MySQL powered PHP script for invoicing clients so they can view or download invoices. The system allows an administrator to enter the client details and invoices. Each client must be given a userid and password to login to view their invoices and the administrator can view the complete database by client, amount, date, etc. There is also an optional email notification system and full setup instructions included within.

You may click here to buy this item with install support for $9.95 only.

Find article

Monday, July 25th, 2005

Find article using Jvw Article extractor for content

One of the best way to gain knowledge on Internet technologies and website promotion techniques is by reading articles.With this new software from Jvw (parent company for Fullycoded.com) you can find article and extract it , save it as an html document.Extract articles one by one and make a database of important articles which can help you in improving your webpages or learn techniques which will help you in promoting your website on major search engines.

You may checkout an article at our parent website Jimmy’s Value World : What is better than writing articles for Web promotion ? – Find article and read them !

It also includes an inbuilt FTP client to upload any or all of the articles to your website.

You can buy the VB code at Software reseller page : http://www.jvwinc.com/network/offering.html

A PHP Bookmarks/Favorites Script

Sunday, July 24th, 2005

This PHP Bookmarks script is a web-based program that allows you to store your bookmarks and display them in many useful ways. This script will sort your bookmarks with usability in mind, keeping often-used bookmarks at your fingertips. It has a bookmark search, private/public bookmarks, nested groups, usage rankings, popularity sorting, and a quick add feature.

Please click here to buy this item for $9.95 only

If you are looking for AUTOMATIC BOOKMARK then click here.

Fully Featured Web Event Calendar

Saturday, July 23rd, 2005

This is a customizable web calendar developed using PHP and powered by MySQL. The calendar is viewed in month format with a popup window detailing the events of each day as they are clicked on. The title and colors are fully customizable within a single file and the application can be modified to work with other database types.

Please click here to buy this item with installation support for $9.95 only

PHP Online Classifieds Script

Friday, July 22nd, 2005

This classifieds script is an easy way to set up a classified ads website.It is designed in such a way that it is extremely easy to change the look and feel of your website. You can design your pages around the functionality of the application. Although this script does give you a lot of control over the look and feel of the site, it lacks an interface for advanced administration features. However all the administration can be done through an interface such as phpMyAdmin. If you know how to use phpMyAdmin or a similar application and are familiar with relational databases, it should be really easy to administer categories and users, etc.

Please click here to buy this item for $9.95 only

If you are looking for PERSONAL CLASSIFIEDS DATING SCRIPT then click here.

Change a User’s Password (w/o Active Directory).

Thursday, July 21st, 2005

===Vb code start===
Declarations
Option Explicit

Private Declare Function NetUserChangePassword _
Lib “Netapi32.dll” (ComputerName As Any, User As Any, _
OldPass As Any, NewPass As Any) As Long

Private Const ERROR_ACCESS_DENIED = 5&
Private Const ERROR_INVALID_PASSWORD = 86&
Private Const NERR_InvalidComputer = 2351
Private Const NERR_NotPrimary = 2226
Private Const NERR_UserNotFound = 2221
Private Const NERR_PasswordTooShort = 2245
Private Const ERROR_CANT_ACCESS_DOMAIN_INFO = 1351

Code
‘Changes the Password for the user “User” on the
‘computer “Server” from “OldPassword” to “NewPassword”

Function ChangeUserPassword(ByVal Server As String, _
ByVal User As String, ByVal OldPassword As String, _
ByVal NewPassword As String) As String

Dim r As Long, msg As String

‘Create Unicode-Arrays
Dim bComputer() As Byte: bComputer = GetByteArray(Server)
Dim bUser() As Byte: bUser = GetByteArray(User)
Dim bOldPassword() As Byte: bOldPassword = GetByteArray(OldPassword)
Dim bNewPassword() As Byte: bNewPassword = GetByteArray(NewPassword)

‘call API-Function
r = NetUserChangePassword(bComputer(0), bUser(0), _
bOldPassword(0), bNewPassword(0))

‘check return value and represent as string
Select Case r
Case ERROR_ACCESS_DENIED: msg = “Error: Access denied.”
Case ERROR_INVALID_PASSWORD: msg = “Error: Invalid password.”
Case NERR_InvalidComputer: msg = “Fehler: Invalid Computer-/Domainname.”
Case NERR_NotPrimary: msg = “Error: This operation can only performed on the

primary domain controler.”
Case NERR_UserNotFound: msg = “Error: User not found.”
Case NERR_PasswordTooShort: msg = “Error: Password does not match Password-Restrictions.

(Password to short, to long or has already been used by this user.)”
Case ERROR_CANT_ACCESS_DOMAIN_INFO
msg = “Error: Error accessing info for domain controler.

Maybe the computer is not available or access was denied.”
Case 0: msg = “Operation performed successfully.”
Case Else: msg = “Error: Unexpected Error ” & r & ” occured.”
End Select

ChangeUserPassword = msg
End Function

‘Converts a Unicode-String to a Unicode-Byte-Array.
‘Is used because VB always passes Strings as ANSI instead of Unicode.
Private Function GetByteArray(ByVal str As String) As Byte()
Dim Buf() As Byte
Buf = str
ReDim Preserve Buf(Len(str) * 2 + 1)

GetByteArray = Buf
End Function
===Vb code end===

Category : Windows operation
Compatibility : VB 6.0
Price : $0.00

Powerful Portal with Content Management

Wednesday, July 20th, 2005

This script is highly customizable and high powered all in one system; it provides content management combined with the power of a portal by including in the core package modules features such as FAQ, polls, and forums. This script uses dynamic-template-design which means you have the power to control what your site will look like. Themes are included, but not required as you can create the page however you want and this script will just insert code wherever you want it. Written in PHP and utilizing MySQL to make it amazingly fast and secure, this script is a great solution for all size website communities.

Please click here to buy this item for $9.95 only.

Highly Advanced Guestbook Script

Monday, July 18th, 2005

This highly advanced guestbook script is written in PHP and uses MySQL. It includes many useful features such as preview, templates, email notification, picture upload, page spanning, HTML tags handling, smilies, advanced guestbook codes, language support and it has a great interface to seal the deal. The admin area lets you modify, view and delete messages which gives the owner extra control.

Please click here to buy this item for $9.95 only

If you are looking for GUESTBOOK REPLICATOR then click here.

Nice FFA Link’s Page Script

Monday, July 18th, 2005

Out of all the basic FFA (Free for All) links page scripts I have seen I actually like this one. This script allows visitors to add links to your page in a specified category and it is quite, if not super, easy to install and the administration area supports the deleting of existing links. FFA Link’s pages are a great way to look established and keep your visitors coming back to your website again and again.

Please click here to buy this item for $9.95 only

If you are looking for FFA Link network then click here.

Hot Fully Featured Web Portal System

Monday, July 18th, 2005

This script is a web portal System for any webmaster; you can set it up as a storytelling software, news system, online community or whatever you want your site to be. Port the system to your local language and customize every aspect of this remarkable script. Each user can submit comments to discuss the articles, similar to Slashdot, only faster and more secure. Features include a web based admin, surveys, top page and access stats, user customizable box, friendly admin GUI with graphic topic manager, option to edit or delete stories, moderation system, customizable HTML blocks, user password encryption and retrieval, search engine, backend/headlines generation, and more. Written in PHP and requires Apache, PHP and MySQL; the over-riding development philosophy for the software is performance, privacy and security.

Please click here to buy this item for $9.95 only

Web-based POP Email Client

Sunday, July 17th, 2005

This script is a web-based POP mail client and is very simple to install but nevertheless a quite advanced program. Some of its features include easy to install (does not require PHP to be compiled with IMAP support), reads and sends attachments, displays text/HTML attachments in-line (while still giving you the option of saving them to your hard drive), all the basic functions (send, receive, reply, reply to all, forward, delete), view all headers or the full source of the email, works even if the user has disabled cookies, localized date field, translated into several languages, can be set up to check for new messages automatically, customizable page layout, and more. Awesome Script!

Please click here to buy this item for $9.95 only

Web-based Image Management System

Sunday, July 17th, 2005

Image Management System

This hot web-based image management system is written in PHP and uses MySQL. It features cataloguing by standard comment fields or Photoshop-type embedded comment fields, sub-categorizing into separate repositories, database searching capability, and more. This is a great script!

Email for free download

Mailing list and electronic reminder script

Saturday, July 16th, 2005

An Electronic Reminder Script :
This script allows web-clients to set up reminders to automatically email them at a certain time to remind them of special events. They can set up a one-time reminder or a recurring reminder and they can have it notify them in advance.

Hot Mailing List Script :
This mailing list management script is written in PHP and all subscriber info is stored in a MySQL database for security. Features include checking whether a subscriber is or isn’t already registered/subscribed, sending out messages at the time of subscribing and unsubscribing. A powerful and user-friendly administration control panel allows you to send messages, list and delete subscribers, supports HTML emails, gives a preview of the message before sending, logging system, Multilanguage support for English, French, Italian and German, plus a user-friendly web configuration and installation system.

Please click here to buy this item(2 scripts) for $9.95 only

PHP and MySQL Content Management System

Friday, July 15th, 2005

Content management

This hot script installs in just minutes on any Windows, UNIX, Linux, or BSD based web server and setup is made super easy through a complete web-based installation system and an included installation guide. Once this software is installed changes to the content of your website is made in complete real-time through an easy to use web-based administration control panel. The control panel allows you to tune every aspect of your web sites visual appearance and layout and also provides an easy to use content authoring & management approach unique to this script. The visual appearance, layout properties, and navigation scheme of the web site can be instantly changed at a global level selecting from installed professional looking skins and navigation bars which will automatically reformat the look of your content “on the fly” while leaving your database driven content completely untouched. Users of this script will find that authoring and editing content for the web site is a snap by making use of the enhanced authoring interface which includes support for both WYSIWYG editors and plain text/HTML markup languages. Uploading and managing your files is also simple using the included file management utility allowing you to upload your images, documents and other files directly from your computers hard disk to the web server where it will become available for use in your websites content. This script is a must have for webmasters who are looking to make completely managing their website a breeze without a lot of programming knowledge.

Please click here to buy this item for $9.95 only

Click here for free web content

HOT PHP Visitor Logging Script

Thursday, July 14th, 2005

PHP Web stats script

This Hot PHP script is a state-of-the-art visitor logging script that can easily display 10 vital statistics about your users.The advanced visit logs this script generator tells you the IP Address, language, browser, operating system, if the user is new to your website, date and time of visit, last visit, days since last visit, referrer page and the keywords they used to find your website.

Please click here to buy this item for $9.95 only

You can also checkout other stats script here :
PHP MySQL Website Stats Business
SUPERSTATS LOG ANALYZER