Skip to content

Commit

Permalink
Document configuration a bit more and turn off heuristics until all b…
Browse files Browse the repository at this point in the history
…ugs are resolved with mod_rewrite off
  • Loading branch information
Adam Ballai committed Jun 22, 2010
1 parent b306655 commit f448d5a
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions OpenVBX/config/config.php
Expand Up @@ -101,11 +101,10 @@
| variable so that it is blank.
|
*/
/* If mod_rewrite enabled */
if(isset($_REQUEST['vbxsite']))
$config['index_page'] = '';
else
$config['index_page'] = "index.php";
/* For mod_rewrite */
$config['index_page'] = '';
/* For non mod_rewrite users - experimental */
//$config['index_page'] = "index.php";

/*
|--------------------------------------------------------------------------
Expand All @@ -123,11 +122,10 @@
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
/* If mod_rewrite enabled */
if(isset($_REQUEST['vbxsite']))
$config['uri_protocol'] = 'REQUEST_URI';
else
$config['uri_protocol'] = "PATH_INFO";
/* For mod_rewrite */
$config['uri_protocol'] = 'REQUEST_URI';
/* For non mod_rewrite users - experimental */
//$config['uri_protocol'] = "PATH_INFO";

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit f448d5a

Please sign in to comment.