Quote:
Originally posted by RobAC
Brad,
Couple other problems: In upload.php the following parameters do not show up in: $welcome =
$max_height = "200"; /* Max Image Height */
$max_width = "200"; /* Max Image Width */
$Size_Restrictions = "10000"; /* image size limit in bytes */
$Width_Restrictions = "200"; /* your width limit */
$Height_Restrictions = "200"; /* your height limit
|
Don't know if someone already figured that out but if you want to use this variables above do this:
Cut this:
PHP Code:
/*-----------------------------------------------------------------*/
/* File Type Restrictions Variables */
/*-----------------------------------------------------------------*/
$max_height = "600"; /* Max Image Height */
$max_width = "600"; /* Max Image Width */
$Size_Restrictions = "2000000"; /* image size limit in bytes */
$Width_Restrictions = "600"; /* your width limit */
$Height_Restrictions = "600"; /* your height limit */
/*-----------------------------------------------------------------*/
and add it before
PHP Code:
$Site_Name.........
:bunny: