Re: [openupload-devel] Openupload-devel post from brian.meaney@bsb.ie requires approval
Status: Beta
Brought to you by:
tsdogs
|
From: Alessandro B. <ts...@br...> - 2010-02-02 16:50:37
|
Hi Brian, > > Hi Alessandro, > > Thanks for your reply. I went ahead and installed mysql, created the > database as per your instruction, ran the sql scripts and the tables > were created. > Now when I browse to the directory I get a blank page. I think there > maybe something wrong in my config file. > A completely blank page usually means a syntax error or something occurred... Can you check the web server logs? What version of php are you using? > Contents of openupload/www/config.inc.php :- > /* Define the installation folder */ > $CONFIG['INSTALL_ROOT']='/var/www/html/openupload'; > This should be ok > /* define http:// address */ > $CONFIG['WWW_SERVER']='http://brubeck'; this also seems ok (though it misses the domain which probably is for testing, right?) > /* define the additional web path i.e. /openupload */ > $CONFIG['WWW_ROOT']='/openupload'; > > Should the contents of var/www/html/openupload/www be copied over to the > /openupload ? > No the www is the one that is supposed to be published (visible from the web server), but for now you need to fix the WWW_ROOT. it should point to the www directory which means: $CONFIG['WWW_ROOT']='/openupload/www'; The remaining seems to be ok. Alessandro |