简体   繁体   中英

Properly setting up path variables for root.php

I just posted a similar question, but deleted it because I realized I was working with an old file...doh!

I am just trying to get my XAMPP setup working for me.

I have a live site that navigates to a login page at http://www.monkeycalendar.com/arvindkt/login.php

That login page includes a root.php file that is found at http://www.monkeycalendar.com/arvindkt/root.php

Live site works great.

My localhost is set up so my sites are a folder in localhost:

IE: http://www.example.com = localhost/example.com

I'm having problems figuring out how to make my root folder point to the right directory. Any help would be much appreciated:

root.php:

# local settings define("SITE_ROOT" , $_SERVER['DOCUMENT_ROOT']."/arvindkt"); define("SITE_URL" , " http://localhost/monkeycalendar.com "); define('DB_HOST', "localhost"); define('DB_USER', "root"); define('DB_PASS', ""); define('DB_NAME', "dev.monkeycalendar");

如果root.php位于站点根目录中,该如何处理

define("SITE_ROOT"      ,  dirname(__FILE__));

尝试:

dirname(__FILE__)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM