8 lines
170 B
PHP
8 lines
170 B
PHP
|
<?php
|
||
|
// Your actual root directory on the server
|
||
|
define('REAL_ROOT', '/home/surillya/');
|
||
|
|
||
|
// The user's virtual path (as seen in the OS)
|
||
|
define('VIRTUAL_ROOT', '/');
|
||
|
?>
|