PDA

View Full Version : What is my $LM_PATH ?? (PHP Question)



FlashPlaya
February 9th, 2005, 08:26 PM
I am installing a mailer app, and it is asking me for my $LM_PATH

Here is what the code looks like... I am on a linux machine..

// Full directory path with trailing slash to ListMessenger directory.
// Examples: Linux /home/vhosts/domain.com/httpdocs/listmessenger/
// Windows C:/websites/domain.com/public_html/listmessenger/
// When using Windows, use forward slashes, not backslashes.

$LM_PATH = "../";

thanks guys...

RushScripting
February 9th, 2005, 09:38 PM
Check in your server's control panel. Ususally it can be found there. If all else fails simply put:



$LM_PATH = "".$_SERVER['DOCUMENT_ROOT']."/listmessenger/";


That will probably solve your problem. :)