Hi Allz
First post around.. google tells me this one of the best place in the universe to get a little help about php.. so I come
I am trying to use Quixplorer (http://quixplorer.sourceforge.net/), so I installed it locally (Windows XP, MySQL 5.1, PHP 5.x) and all went fine... after, I installed it on a Windows 2003 with Mysql 4.x and PHP 4 and it went fine too.. but (there is always a 'but', ya?) with I upload to my server I am receiving the error:
PHP Parse error: syntax error, unexpected '"', expecting T_STRING or T_VARIABLE or T_NUM_STRING in E:\home\company\Web.config\conf.php on line 28
the conf.php file is:
<?php
//------------------------------------------------------------------------------
// Configuration Variables
// login to use QuiXplorer: (true/false)
$GLOBALS["require_login"] = false;
// language: (en, de, es, fr, nl, ru)
$GLOBALS["language"] = "en";
// the filename of the QuiXplorer script: (you rarely need to change this)
$GLOBALS["script_name"] = "http://".$GLOBALS['__SERVER']['HTTP_HOST'].$GLOBALS['__SERVER']["PHP_SELF"];
// allow Zip, Tar, TGz -> Only (experimental) Zip-support
$GLOBALS["zip"] = false; //function_exists("gzcompress");
$GLOBALS["tar"] = false;
$GLOBALS["tgz"] = false;
// QuiXplorer version:
$GLOBALS["version"] = "2.3";
//------------------------------------------------------------------------------
// Global User Variables (used when $require_login==false)
// the home directory for the filemanager: (use '/', not '\' or '\\', no trailing '/')
$GLOBALS["home_dir"] = "e:\home\company\web\";
// the url corresponding with the home directory: (no trailing '/')
$GLOBALS["home_url"] = "http://company/web/";
// show hidden files in QuiXplorer: (hide files starting with '.', as in Linux/UNIX)
$GLOBALS["show_hidden"] = true;
// filenames not allowed to access: (uses PCRE regex syntax)
$GLOBALS["no_access"] = "^\.ht";
// user permissions bitfield: (1=modify, 2=password, 4=admin, add the numbers)
$GLOBALS["permissions"] = 7;
//------------------------------------------------------------------------------
/* NOTE:
Users can be defined by using the Admin-section,
or in the file ".config/.htusers.php".
For more information about PCRE Regex Syntax,
go to http://www.php.net/pcre.pattern.syntax
*/
//------------------------------------------------------------------------------
?>
This is a program that will allow me to upload, download, create, delete... file and folders throught a web browser... if someone has another tool and would like to suggest it.. I am open to it
Thanks for any info, and congratulations for the forum