PDA

View Full Version : Server C Path?


lostinfr
11-03-2005, 04:15 PM
Hi,

I've installed a component but I have to configure the correct paths to it:

define('F_URL','http://localhost/index.php?option=com_date4u');
### Internal path to Date4 U directory
define('C_PATH','G:/server/Apache2/htdocs/components/com_date4u');

I'm stuck :confused: I've tried various paths but can't get it right
If my site is at http:www. mysite.com how would I enter it into the above.

Tom
11-28-2005, 07:21 AM
If the URL is www.mysite.com, then it should be like:

define('F_URL','http://www.mysite.com/index.php?option=com_date4u');

And the directory should be like:

define('C_PATH','/home/your_username/public_html/components/com_date4u');

However, keep in mind that the above is only true if your software resides at your web root, not in a sub folder.

I hope I helped...