Forum Moderators: coopster
It's a Linux site, I started out my Script with
<?PHP
set_include_path('/trial');
error_reporting(7);
then I put my PHP.ini in the /trial folder;
[My PHP.ini File]
sendmail_path = "/usr/lib/sendmail -t -i
SMTP = mailhub.registeredsite.com
include_path = ".:/usr/local/
engine = On
So, that's it. I could really use some help on this!
Thanks so Much in Advance.
You won't be able to do what you think you are doing here as that is not how a PHP configuration file works.
The php.ini is read at Apache start and loaded in memory. You can view the contents of the php.ini by using the phpinfo() [php.net] function.
<?php
phpinfo();
?>
And I guess I'm stuck as to where to make this declaration. Shouldn't sendmail already have this in control?
Well Thanks Again and any additional guidance will be appreciated!