- drupal
- 7 update.php
- 7 modules/simpletest/tests/https.php
- 7 xmlrpc.php
- 7 modules/simpletest/tests/http.php
- 7 index.php
- 7 authorize.php
- 7 install.php
- 7 cron.php
- 8 core/modules/system/tests/http.php
- 8 core/modules/system/tests/https.php
- 8 core/update.php
- 8 core/modules/statistics/statistics.php
- 8 core/install.php
- 8 index.php
- 8 core/authorize.php
- 8 core/xmlrpc.php
Root directory of Drupal installation.
File
- ./
install.php, line 11 - Initiates a browser-based installation of Drupal.
Code
define('DRUPAL_ROOT', getcwd())
Login or register to post comments
Comments
why getcwd ?
what about
<?phpdefine('DRUPAL_ROOT', dirname(__FILE__));
?>
?
getcwd() !!, it looks like it relays on the directory set by the web server, well, Apache will do it, will all other do?