|
Posted by Jerry Stuckle on 05/16/06 23:48
Lieven wrote:
>>Lieven,
>>
>>Did you try asking the authors of the PHP class? Not knowing what it does
>>(or even which class it is) makes it impossible to tell what's going on.
>
> This script is just the normal phpmailer
> (http://phpmailer.sourceforge.net/), there you can specify that you want to
> use smtp like this:
> $mailman = new PHPMailer();
>
> $mailman->IsSMTP();
>
> Using this tool, sending mails from our php scripts works, but it is
> impossible to ask all our customers to change their php scripts.
>
>>Does a simple mail() command work? That would be the place to start if
>>you're asking in this group.
>
>
> No, that is the whole problem. The mail function doesn't work anymore. After
> a hard disk crash I copied the whole corrupt hard disk to a new disk,
> everything else is working perfectly afterworths except php scripts that are
> using the mail() function are getting the internal server error. I didn't
> change anything to my configuration files or didn't update any application
> on the server. Only raisonable explenation I have is that their must be some
> kind of file corrupt after copying it to the new disk.
>
> grt,
>
> Lieven
>
>>
>>--
>>==================
>>Remove the "x" from my email address
>>Jerry Stuckle
>>JDS Computer Training Corp.
>>jstucklex@attglobal.net
>>==================
>
>
>
Well, it's always possible a file got corrupted. Especially since you copied
files from a corrupt hard disk.
At this point I agree with Rik - you need to reinstall at least sendmail, php
and apache for a start. You should be able to keep your configuration files
(after ensuring they aren't corrupt), but get the rest of the files installed
with fresh copies.
Otherwise you may be spending days trying to find this bug - and even when you
find it, you wouldn't know if you might have another (more serious) bug.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|