X-Git-Url: http://git.i-scream.org/?a=blobdiff_plain;f=cgi-bin%2Flogo.cgi;fp=cgi-bin%2Flogo.cgi;h=25ab78dfed206dfd9bea15cde2c18461e295b302;hb=a80d0974e08bd71d162daff7947e4dd7580ab886;hp=837e1eb147eda5ffbd0222df8bab26cc557b7c6a;hpb=7f803fc1f2bf44088e7ceb5e78f309524b091609;p=www.i-scream.org.git diff --git a/cgi-bin/logo.cgi b/cgi-bin/logo.cgi index 837e1eb..25ab78d 100755 --- a/cgi-bin/logo.cgi +++ b/cgi-bin/logo.cgi @@ -4,15 +4,15 @@ use strict; $| = 1; # Directory to find images in -my($dir) = "/web/i-scream/nwww/logos"; +my($dir) = "/web/i-scream/htdocs/logos"; # Pattern to match images - remember to escape my($pattern) = "\\.jpg\$"; # URL to images - must match $dir -my($url) = "http://nwww.i-scream.org/logos"; +my($url) = "http://www.i-scream.org/logos"; # Where the setbg command is -my($setbg) = "/web/i-scream/nwww.bin/setbg.pl"; +my($setbg) = "/web/i-scream/bin/setbg.pl"; # Code... my($imagepath) = `$setbg -r -p \'$pattern\' -b echo -f \' \' $dir`;