★ wanayoo — archive 1999 http://www.getscript.com/post-it.htmlNouvelle recherche | Portail wanayoo
DBasics Software Company



Site's Menu
DBasics Software Company offers complete Internet services except ISP dialup services. For those familiar with CGI scripts, we have a variety of powerful web management scripts from statistical counters to web forums. For those who don't have the time to learn how to install CGI scripts, we offer installation for all our scripts. We also offer web hosting options, online secure credit card payment options and more
Updates to our current script library and additions to both our scripts and services can be found here.
A little about us and pics of our office located at the Lake of the Ozarks
We offer hosting our WWWBoard Pro forum

CGI Scripts
Where to purchase any of our scripts.
For those using the .htaccess and .htpasswd protection scheme, this script automates registering new users.
Seeking to expand Matt's Script WWWBoard 2.0a with the largest collection of add-ons available in one place. We've compiled all our add-ons into Matt's original WWWBoard 2.0a script that can be easily installed to work with your existing WWWBoard.
In order to achieve your web site objectives, you need to understand who your visitors are, what they are viewing, what types of browsers people are using to view your site and probably most importantly, where your visitors are coming from.
Operating a subscription web site is rapidly becoming the preferred choice for webmasters seeking to own a business on the Internet.
The Post-It script is a tool for webmasters to post updates and/or messages to a page via their web browser.
The site search script allows visitors to search for pages on your site.
This script incorporates databases, such as address books, product catalogs, reference databases and such into their pages.
The file management script allows you to make changes to your pages without having to go into FTP or telnet.
Our WWWAdmin Pro Script allows you to create and edit multiple web boards in addition to the original features offered with Matt's Script WWWAdmin 2.0a.
This script allows you to run other administrative type scripts in unprotected directories
This is a good script if you wish to see what pages a particular visitor viewed while on your site.
This script reads your server logs and return the number of unique visitors and/or total hits.
This is a good script if you wish to monitor the hits on your site at any given moment.
A detailed listing of all the URL's listed above including installation URLs and demo links
How to obtain Technical Support on any of our scripts or other scripts downloaded from the Internet

Forums
Free Forum about CGI/Perl (Registration is Required)
Member's Only Forum
Member's Only Forum
Member's Only Forum
Member's Only Forum
Member's Only Forum
Member's Only Forum
Member's Only Forum
Member's Only Forum

Free Scripts
Shows the last 10 errors that occurred on your site
Listing of Environmental Variables used within CGI Scripts

Tutorials
How to Create a Business Online
The complete official WWWFAQ.
How to find bad links to and from your site.
Things to look for while debugging CGI Scripts
An explanation of the commands and subroutines in Matt's Script WWWBoard
Server Side Includes allows insertion of data into an HTML page

Other Services
Contact us via email before finding a web hosting service. We have the answers to the questions that will meet your needs.
Counter Service for those who cannot run CGI scripts on their own server
We offer a reseller's program that offers 25% cash back on all our scripts when purchased through us using their reseller's ID number assigned after signing up.
A detailed report listing all the earnings from our Reseller's program
We offer a real-time Account Management System providing impression/click-thru ratios. Your Account Management System also allows you to change the banner being displayed and/or URL for the click-thru. Additionally each month you will receive an emailed monthly statement which will display the amount left on your account and a listing of all the URL's your banner was displayed and clicked-thru.
For those interested in earning 25¢ credit towards the purchase price of any of any our scripts by linking to GetScript, just cut and paste our coding on any of your pages. Then each time a visitor clicks on the link we will add another 25¢ credit to your current balance.
A detailed report of when, who and where your links to us came from.
We offer a extensive viewing of events Today in History for each day of the year including birthdays which are linked to InfoSeek.
A listing of CGI programmers who have scripts available and may be available for both custom and installation work
What type of script would be useful for your type of web site?
Each day, 2,300 missing children are reported to local police and entered into the FBI's computer system.

CGI / Perl
Bookstore

The CGI/Perl Cookbook
[Click on Book]
Post-It Script

The Post-It script is a tool for webmasters to post updates and/or messages to a page via their web browser. There are many applications for this script such as using it for a "What's New" page or as a technical notes page. The script is identical in functionality as the WWWBoard script except that it doesn't allow people to respond to the posted messages. If you can install Matt's Script WWWBoard you can install Post-It.

Let's Take It For A Test DriveClick Here For
A Test Drive!


[Click Here] to purchase any of our scripts!
Payment by Credit Card Payment by American Express Payment by Check/M.O.
Low Cost Installation Available!
100% satisfaction is guaranteed on installations.

For installation either email us or call (573) 374-2322

Download ZIP URL/protected/post-it/post-it.zip
Self-Extracting ZIP/protected/post-it/post-it.exe
Online Instructions/post-it.html
Technical Support/support.html
Script Demo/post-it/

The Variables

$basedir = "/path/to/post-it";
(Both post-it.pl and post-it-admin.pl scripts)
This variable should contain the absolute system path to your post-it directory. So if you keep all of your files in /home/yourname/public_html and you make a directory under there called 'post-it', then $basedir would be set to: /home/yourname/public_html/post-it

$baseurl = "http://your.host.xxx/post-it";
(Both post-it.pl and post-it-admin.pl scripts)
This is the base URL to the directory where post-it is kept. So staying with the example above, if your main directory is called by: http://your.host.xxx/~yourname/, the $baseurl would be set to: http://your.host.xxx/~yourname/post-it/

$cgi_url = "http://your.host.xxx/cgi-bin/post-it.pl";
(Both post-it.pl and post-it-admin.pl scripts)
This is the URL that points to post-it.pl in the post-it.pl script and in the post-it-admin.pl script, change the file's name to reflect http://your.host.xxx/cgi-bin/post-it-admin.pl

$mesgdir = "messages";
(Both post-it.pl and post-it-admin.pl scripts)
This is the name of your messages directory which will be appended to $basedir. All of the messages for post-it will be created and held in this directory in HTML format. You will need to make sure that you have chmod 777 this directory.

$datafile = "data.txt";
This is the name of the data file which will also be appended to $basedir. It will hold the current filename count, and the script will read this in and determine the message filename from this file. You will need to create a text file with the name you give it and the contents of this file should be the number .... 1

$mesgfile = "index.html";
(Both post-it.pl and post-it-admin.pl scripts)
This is the name of the post-it's main subject file. It will be appended to both $basedir and $baseurl to determine the URL and the absolute path to this file, both for URL references by the script and for editing of this file by the script.

$ext = "html";
(Both post-it.pl and post-it-admin.pl scripts)
This is the ext with which all individual files will be created with. Most of the time it should be left as html, but on the occasion when you may be suing this on a DOS based platform you can switch it to 'htm'.

$title = "Post-It Message Board";
(Both post-it.pl and post-it-admin.pl scripts)
This is the title of your post-it page, which will be used on the individual message pages. Call your post-it board whatever you like, but I do recommend changing the above to something a little more catchy.

$backgrnd = "http://your.host.xxx/images/background.gif";
(post-it.pl script only)
This variable allows background images to be integrated into Post-It messages.

$bgcolor = "#FFFFFF"; # Background Color
$text = "#000000"; # Text Color
$link = "#990000"; # Unvisited Link Color
$vlink = "#009900"; # Visited Links Color
$link = "#000099"; # Active Link Color
These variables are used in configuring the color scheme of Post-It messages.

Using The Post-It Script

To post a message on your board, you just run the script from your web browser. A Post-It data entry form will appear with instructions appearing below the form. Upon completion of the form your message will be stored as an html formatted page in a messages directory.

The Post-It subject file (index.html) file is where the subject lines of the messsages is displayed with the date of the post-it message. You can view our working example and then [F]ile Save [A]s the main index file and modify it to meet your needs. The ONLY requirements for the main subject file is that it contain the following tags:

<UL>
<!--begin-->
<!--end-->
</UL>

You can use any of the indenting HTML tags, such as <OL>, <DL> or <UL>. When a new post-it message is created you'll see the following source coding, or similar to it, appear in the main index file.

<UL>
<!--begin-->
<!--2--><LI>Most Recent Post-It Subject. - 11/13/97
<!--1--><LI>The First Post-It Subject. - 11/13/97
<!--end-->
</UL>

You don't need to create an HTML file used to post your messages. Running the post-it script will automatically bring up your data entry form. As a special note to security, you might want to place the post-it.cgi file in a protected directory on your server so that others cannot post to your Post-It board. In the above working example, use username WebAdmin and password WebBoard to access.

Copyright © 2000 All Rights Reserved
Phone: (573) 374-2322 (CST) 9am-4pm Mon-Fri
Fax: (573) 374-3089
DBasics Software Company
P.O. Box 986, Sunrise Beach, MO. 65079