
zlex
stranger
Nov 23, 2001, 7:10 PM
Post #1 of 2
(464 views)
|
|
need help with chat
|
Can't Post
|
|
i bought a script i would like to use...but i can't figure it out. Can sumone help me with this. It's supose to be a simple chatroom that pops out on the top right corner as soon u enter the site. I wanted to add it on a site that i started-www.cmc-foundation.com what do i need to do? anybody here that can help me. here's the begining of the script #!/usr/bin/perl $| = 1; srand(); #The entire URL to the instachat.cgi script on your server $cgi_url = "http://www.cmc-foundaton.com/cgi-bin/instachat.cgi"; #Temporary directory to store messages and user files CHMOD to 777 $tmp_dir = "/path/to/save/instachat/file/"; #Filename used to store all chat messages $tmp_filename = "text"; # Number of rows to display for chat messages $rows = 5; # Number of columns to display for chat messages $cols = 30; #Width of chat box in pixels $width = 250; #Max number of messages to show in chat window $maxlines = 50; #Reload messages every n seconds (1 - 60) $reload = 5; #Background of text message box $background = "#FFFCCC"; # DO NOT EDIT BELOW THIS LINE ############################################
|