<?
// Insert here your path and file name
$path ="/web/html/noticeboard";//no end slash absolute path to noticeboard
$template= "template.html";//just the name of the template file
$cat_file = "/web/data/bboard/category.txt";//full path to category file
$noticeB_file = "/web/data/bboard/bbboard.txt";//full path to noticeboard data file
$path_pix ="/web/html/noticeboard/pix/";//with end slash full path to pictures folder. permissions need to be writable by web
$view_pix ="/noticeboard/pix"; //no end slash. path from web root to pictures folder.
$http_pix="http://www.domain.com/noticeboard/pix/"; //http path to picture
$webmaster = "Name Surname<yourname@domain.com>";
$mail_address="yourname@domain.com";
$pix_filesize="24000";//maximum file size of picture allowed to be uploaded in bytes
$pix_wide="200";//maximum width of picture allowed to be uploaded in pixels
$pix_high="250";//maximum height of picture allowed to be uploaded in pixels
?> |