Carolyn Mescan wrote:

> PHP List,
>  
> I am a new PHP user and have just installed it on a Windows NT IIS Server. I have 
>set the configuration variable display_errors = Off in the php.ini file but am still 
>getting many of the errors shown below on the webpage generated by the discussion 
>board application I am using PHP for which is called UBBThreads. Can anyone tell me 
>why these are still showing up, and why do they exist at all??? 
>  


You are setting error_reporting=E_ALL & you do *not* enclose stirngs
with double or single quote.

PHP will treat unquoted strings as constant at first, this causes notice
error messages.

> My second question is how to set the configuration in the php.ini file so the board 
>can send mail. Here are the settings that are in the php.ini file now:
>  
> [mail function]
> ; For Win32 only.
> SMTP = smtp.louisville.edu
>  
> ; For Win32 only.
> sendmail_from = [EMAIL PROTECTED] 
>  
> ; For Unix only. You may supply arguments as well (default: 'sendmail -t -i').
> ;sendmail_path = 
>  


You should be able to send simple mail from Windows with above setting, 
if your smtp server is working.
What's the problem?

-- 
Yasuo Ohgaki


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to