#!/usr/bin/perl use CGI ':standard'; ###### Please configure below variables... # Admin login password $password="upoint"; # PATH to general file (NOT URL) $general_file="/home/upoint/www/newscroller/general.txt"; # PATH to news data file(NOT URL) $news_file="/home/upoint/www/newscroller/news.txt"; # PATH to scroller javascript file (NOT URL) $scroller_file="/home/upoint/www/newscroller/scroller.js"; # FULL URL to this script (NOT PATH) $URL_to_script="http://www.upoint.net/cgi-bin/newscroller.cgi"; # FULL PATH to uploaded images folder (NOT URL) $path_to_image_folder="/home/upoint/www/newscroller/images/"; # FULL URL to uploaded images folder (NOT PATH) $URL_to_image_folder="http://www.upoint.net/newscroller/images/"; #background color of popup window $popupbgcolor = "#FFFFFF";