web root directory?

kalaath

Verified User
Joined
Apr 22, 2005
Messages
8
I need to know the web root directory of my domains but for some reason it was never emailed to me and i dont have ssh access, is there a place to find this in direct admin. i need to setup a biling system for some of my sites so need this...thank you
 
I take it you arn't the dedicated server profider and a reseller? i would contact them.

but if you have multiple domains it's in /home/<username</domains/<domainname>/public_html

or if you created seperate accounts for your clients then you would need to ftp in with their username/password.

but i would email your host since they would know.
 
not its not a dedicated server i just have space on it, i did email them it seems like it should be /home/<username</domains/<domainname>/public_html but that isnt working...thx
 
hey, make a file called

test.php and put it in your public_html folder with the following.

Code:
<?php
        echo    $_SERVER['SCRIPT_FILENAME'];

?>

load that up in your browser and it will give the full path to your script.
 
Back
Top