Web Hosting Talk







View Full Version : script location and data directory


ML2008
07-01-2001, 09:04 AM
I have a script that requires these 2 values.
The script is in the cgi-pub directory and the data is in the showsell directory at the same level on a Raq3.

What will the data directory value be?

# Script Location
$script = "http://mlbox.com/cgi-pub/showsell/showsell.pl";

# Advert Data Directory
$data_dir = "/????/?????";

jtan15
07-01-2001, 09:58 AM
Originally posted by mannylucio
I have a script that requires these 2 values.
The script is in the cgi-pub directory and the data is in the showsell directory at the same level on a Raq3.

What will the data directory value be?

# Script Location
$script = "http://mlbox.com/cgi-pub/showsell/showsell.pl";

# Advert Data Directory
$data_dir = "/????/?????";

Depending on what the script is looking for, I think you might want to do it this way:

# Script Location
$script = /home/sites/SITENUMBER/web/cgi-pub/showsell/showsell.pl";

$data_dir = /home/sites/SITENUMBER/web/cgi-pub/showsell/data";