cal has asked for the wisdom of the Perl Monks concerning the following question:
$gallery = param('galleries'); # Configurable Options Follow: # BEGIN { $SAVE_DIRECTORY = "/u/web/abcdefg/photogal/$gallery"; # # --> Variable: # $gallery # --> Variable: # $SAVE_DIRECTORY # --> Function: # Defines the path to the directory # on the server that should be used # as the folder to save files into. # --> Directory Permissions: # a+rwx # --> Additional Notes: # This path should not have a # trailing forward slash. Also # remember that this is a path, not # a URL. Use something similar to: # # /home/myself/www/uploads # $MAXIMUM_UPLOAD = 0; # # --> Variable: # $MAXIMUM_UPLOAD # --> Function: # Defines the number of bytes that # can be uploaded. Files that exceed # this limit will not be saved on the # server. # --> Additional Notes: # Set this to zero in order to # disable size checking. # $ALLOW_INDEX = 0; # # --> Variable: # $ALLOW_INDEX # --> Function: # If set to zero, files whose # names begin with the word # index will not be saved. # # Set to one to allow files # named index* to be uploaded. # --> Additional Notes: # $SUCCESS_LOCATION = "" # # --> Variable: # $SUCCESS_LOCATION # --> Function: # Defines the URL that users # should be redirected to if # the script works properly. If # this is left blank, a default # page will be returned to the # user. # --> Additional Notes: # This is a COMPLETE URL, not # a path. } # # End of Configurable Options.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Need help with a variable
by hiseldl (Priest) on Oct 30, 2002 at 23:38 UTC | |
by Jenda (Abbot) on Oct 30, 2002 at 23:54 UTC |