Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Web Hosting


Advertisements:




SuperbHosting.net & Arvixe.com have generously sponsored dedicated servers and web hosting to ensure a reliable and scalable dedicated hosting solution for BigResource.com.







PHP Mail() Function Not Working


I have just changed servers and uploaded a mail() script which was working on my previous config but does not work on the new server config. What is stopping the emails from being delivered, is there something new in WHM that I need to do?

Here are my WHM and cPanel details:

WHM 11.11.0 cPanel 11.15.0-R18264
REDHAT 4 i686 on standard - WHM X v3.1.0


View Complete Thread with Replies

Sponsored Links:

Related Forum Messages:
PHP Mail() Function Stopped Working
I have a dedicated that suddenly stop php mail() function to work.

Very strange because if I run php script with mail() function as root on command line all working fine.

But If I run php script with mail() function in my browser so not work. Seems that only ROOT can run mail() function.

View Replies!   View Related
PHP Mail() Function Not Working With Lighttpd
I recently started using lighttpd + with PHP using Fast-CGI on a server hosting 14 blogs powered by WordPress, the server works great and this change reduced server load in about 50% which is nice for us, considering some of our blogs have a very high visitor traffic.

Our only problem so far is that since we switched to lighttpd the PHP's mail() function is just not working. I have compiled and re-compiled PHP and Lighttpd without any effects. I have a test site still working with Apache and PHP scripts can send mail without problems.

I've searched forums and Google for some kind of answer but none whatsoever maybe someone can give me pointers on how to solve this. Thanks a lot!!

Server details:

Lighttpd version: 1.4.15
PHP version: 4.4.4
Kernel: 2.6.9-42.0.3.ELsmp
Server has cPanel/WHM installed

PHP configure options:

--prefix=/usr/local --with-xml --enable-bcmath --enable-calendar --with-curl --enable-exif --enable-ftp --with-gd --with-jpeg-dir=/usr/local --with-png-dir=/usr --with-xpm-dir=/usr/X11R6 --with-gettext --with-imap=/usr/local/imap-2004g --enable-mbstring --enable-mbstr-enc-trans --enable-mbregex --with-mcrypt --enable-magic-quotes --with-mysqli --with-mysql=/usr --with-openssl --enable-discard-path --with-pear --enable-sockets --enable-track-vars --with-ttf --with-freetype-dir=/usr --enable-gd-native-ttf --with-xmlrpc --with-zlib --with-kerberos --with-imap-ssl --enable-fastcgi --enable-force-redirect

View Replies!   View Related
[cPanel] Function Mail(); And Fowarders E-mail - Not Working
I have problem:
1. Function mail(); not working

2. osCommerce e-mail error:

Code:
Gid 32157 is not permitted to relay mail, or has directly called /usr/sbin/exim instead of /usr/sbin/sendmail.

3. Fowarders working only on internal accounts e-mail
fowarder@mydomain.com --> email@mydomain.com - working
fowarder@mydomain.com --> my-emiail123@mail.pl - not working

This is VPS cPanel (OpenVZ) on my dedicated server.

View Replies!   View Related
PHP Mail() Function Does Not Work
I just re-installed PHP4, Apache, and MySQL and now the "mail" function in PHP will not work. Is there a way to correct this? Is there some configuration value in Apache or PHP I must change?

View Replies!   View Related
Setting Up PHP Mail() Function On New Server
how to set up the mail () function in my PHP.ini on a Linux server.

Is there a generic path that I need to use in order to allow the mail function to work in the scripts?

We do have a mail server set up, the address of which being "mail.companyname.com" ... do I need to insert that into the ini file somwhere instead?

View Replies!   View Related
Configure Webserver So That The Php Scripts To Be Able To Use The Mail() Function
I just purchased a vps from rapidswitch, installed lamp, webmin, etc. All is working fine, with one exception. I can't send mail via mail() function.

I have set the MX so that my email addresses are handled by google for domains so i can send and receive mails without problems.

What i cant do, is for example to install a cms and make it send emails for the new registered users, etc.

I have installed postfix via yum, and i've tried to configure it.. but i kind of give up after a few hours of trying.

Someone could point me to the right direction on how to configure postfix for just this ? to be able to send mails via php.

I don't care if it's postfix, qmail, etc.

View Replies!   View Related
PHP Qmail: Mail() Fucntion Not Working
I have a RC4 sever running with apache2, PHP 5.1.2 and qmail installed.

when I try to run the mail() function from a php page like this: ....

View Replies!   View Related
Some Ajax Function Not Working
I got PHP working. But some of the Ajax functions it not working.

For example:
in wordpress admin, i can only use HTML mode to start a new post. I cant switch to VISUAL mode. And it was working before though.

What option do i need to compile PHP with to make it work?

Right now i have:

Quote:

'./configure' '--prefix=/opt/lsws/lsphp4' '--with-litespeed' '--with-mysql' '--with-gd' '--enable-shmop' '--enable-track-vars' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-magic-quotes' '--enable-mbstring' '--without-pear' '--with-bz2' '--with-curl' '--with-exec-dir=/usr/bin' '--with-freetype-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr' '--with-openssl' '--with-png' '--with-pspell' '--with-expat-dir=/usr' '--with-pcre-regex=/usr' '--with-zlib'

View Replies!   View Related
Email Function Not Working (MS Window Server 2003)
We have a MS Window server 2003 with SP2, currently there is a website running, the webiste is desgined by using asp.net 2.0 c#.

We reinstalled the window server 2003 last week, and we found the email functions not working any more(users in the website can't receive email each other).

I have spent days and trying to figure out, but no luck, I have tried to reset the IIS settings, SMTP Virtual settings, and add/remove windows componets settings...

View Replies!   View Related
Disable Mail Function
I am starting to webhosting company in it I have included a package will be free and add supported and also I want to disable some functions like mail() ..........I mean I want to disable SMTP services anyone have idea how can I do that.

View Replies!   View Related
Mail Function Not Work
the php mail function not work on my server!

when I run this function not show any error too.

for example I run this code:

<?php
echo "ok";
$to = 'myemail@mydomain.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: test@domainname.com' . "
" .
'Reply-To:test@test@domainname.com' . "
" .
'X-Mailer: PHP/' . phpversion();

if(mail($to, $subject, $message, $headers)){

echo "sent";

}else{

echo "notsent";
}
?>

View Replies!   View Related
How To Enable/disable Mail() Function
how to know if mail() function is enabled or disabled on my server? how to enable/disable it?

can it be done via server control panel or is there a shell command for it?

one more thing, where to get/edit the SMTP data for my server?

View Replies!   View Related
Server Slow After Using Mail Function
I used the mail function in php to send mails to my 25000 members in a loop..

After using it my server has gone very slow.. Load has increased a lot from 2 to around 20.. Major load is taken by sql and then httpd (both have increased)..

I had restarted mysql and httpd.. even reinstalled apache but no help..

View Replies!   View Related
How Much Can Php's Mail Function Really Handle
I have mixed feelings on the mail() function in php. I've seen it send out amazing numbers of emails and yet I keep reading that it is prone to problems. I'm wondering if someone can put an approximation on what you could/would send out in say 60 seconds. I know that there are tonnes of variables, so i'll try and remove a few:

- server hardware is typical of a cpanel/WHM shared hosting environment
- running apache/linux
- email is say 20kb HTML format
- mail is sent in a php script loop, one by one; alternatively, mail() could be called in clusters of x emails - like send 5 emails at once
- there are 400 recipients

View Replies!   View Related
Php Virtual() Function Doesn't Work
We setup a new server and we're trying to use virtual() function to work with a certain script that requires it.

We already tried several ways to make it work. But at this moment, we only could make it work on PHP 4 with DSO.

View Replies!   View Related
Diasbled Function In Php.ini
suppose that i am a costumer. is it possible to see disabled function in php.ini?
(using any script)

View Replies!   View Related
Enable PHP Function Via Httpd.conf
I 'd like to enable php function "mail" via directive for specific account in httpd.conf
what's directive syntax for it,

View Replies!   View Related
Howto Convert Ini_set Function In Code To Php.ini Setting
I have a website that was running fine for a month or two until my host recently changed some settings on the server, and now it shows a bunch of errors. I contacted the host and they said >

"To avoid the errors, please do not use disabled function. If you need such functionality, you can have your own php.ini on your root http folder containing only necessary option"

Since I'm not a programer, I have no idea what they're talking about. So, I asked them how to do that, they're reply of course was>

"Please consult with the script writer on how to convert ini_set function in your code to php.ini seting. As the script is not encrypted, you can do it with commenting all ini_set calls and write a substitute on php.ini (Create php.ini file in webroot folder)."

I tried to contact the developer, but it appears he has gone MIA! So, now I am left with no clue how to fix the website, so I turn to you guys!

The website is [url]. You can see the errors in the header, but I'll post them here as well>>

"Warning: ini_set() has been disabled for security reasons in /home/buymydom/public_html/includes/global.php on line 3

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/buymydom/public_html/includes/global.php:3) in /home/buymydom/public_html/includes/global.php on line 32

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/buymydom/public_html/includes/global.php:3) in /home/buymydom/public_html/includes/global.php on line 32"

My question is, How do I convert ini_set function in my code to php.ini?

View Replies!   View Related
Php Mail Unable To Connect To Mail.userdomain.com:25
Warning: fsockopen() [function.fsockopen]: unable to connect to mail.userdomain.com:25 (Connection timed out) in /home/user/public_html/_inc/class.smtp5.php on line 122
Message could not be sent. Mailer Error: Language string failed to load: connect_host

Using php 5 with phpsuexec enabled.

View Replies!   View Related
Mail Command Not Working
I am trying to send mail using mail command with a subject using below.

mail -s "subject" me@domain.com or mail -s "subject" "me@domain.com"

Both are not working... It simple hangs for a long time. Nothing happens.

Then i tried sending mail using mail -v and then entered the subject, when it prompted.

It works fine.

I also tried mutt -s "test" -a

it also not working...

View Replies!   View Related
Mail Stopped Working
I run a small website on a dedicated unmanged server with cpanel.
About a month ago,i stopped getting the daily mails from addresses that are located on the server...

Also,when I attempted to send mail to one of these addresses I never received it...

Its a RHEL 3 server with cpanel,is there anything I can do to see where the problem is?

View Replies!   View Related
Cpanel And Mail Not Working
I set up a new account the other day and everything was set up as normal.

My client cannot recieve their emails through outlook express and I cannot open their cpanel thrugh their url.

I know I set everything up correct, and even deleted the account and created it again.

I am lost on this one, this has never happen to me before.

View Replies!   View Related
PHP Not Working
It's weird, whenever I start a php script using <? it doesn't work, but if I use <?php it works...why is that? I thought PHP accepted both versions.

View Replies!   View Related
Can't Get PHP Working With Apache2
I had php4 running as a module of apache2 on a debian sarge os.

i did the following to upgrade to PHP5

apt-get install php5 libapache2-mod-php5 php5-gd php5-mysql

But when i tried to start apache i got an error message saying that libphp5.so is corrupted or something.. (garbled - perhaps this is not an Apache module DSO?)

Now i just want to retore php4 working as it was !

i did apt-get remove php5 libapache2-mod-php5 php5-gd php5-mysql
and apt-get install php4 libapache2-mod-php4 php4-gd php4-mysql

but i can't find the php4.conf and php4.load on the /modules-enabled or /modules-available

tried to write those files manualy as php4.so exists with other libs.

apache does not load php

Quote:

host:/etc/init.d# apt-get install php4 php4-mysql php4-cli libapache2-mod-php4
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Paquets suggérés :
php-pear php4-pear
Les NOUVEAUX paquets suivants seront installés :
libapache2-mod-php4 php4 php4-cli php4-mysql
0 mis à jour, 4 nouvellement installés, 0 à enlever et 275 non mis à jour.
Il est nécessaire de prendre 0o/3258ko dans les archives.
Après dépaquetage, 6517ko d'espace disque supplémentaires seront utilisés.
Sélection du paquet libapache2-mod-php4 précédemment désélectionné.
(Lecture de la base de données... 35624 fichiers et répertoires déjà installés.)
Dépaquetage de libapache2-mod-php4 (à partir de .../libapache2-mod-php4_6%3a4.4.7-0.dotdeb.0_i386.deb) ...
Sélection du paquet php4 précédemment désélectionné.
Dépaquetage de php4 (à partir de .../php4_6%3a4.4.7-0.dotdeb.0_all.deb) ...
Sélection du paquet php4-cli précédemment désélectionné.
Dépaquetage de php4-cli (à partir de .../php4-cli_6%3a4.4.7-0.dotdeb.0_i386.deb) ...
Sélection du paquet php4-mysql précédemment désélectionné.
Dépaquetage de php4-mysql (à partir de .../php4-mysql_6%3a4.4.7-0.dotdeb.0_i386.deb) ...
Paramétrage de libapache2-mod-php4 (4.4.7-0.dotdeb.0) ...

Paramétrage de php4 (4.4.7-0.dotdeb.0) ...

Paramétrage de php4-cli (4.4.7-0.dotdeb.0) ...

Paramétrage de php4-mysql (4.4.7-0.dotdeb.0) ...

host:/etc/init.d# /etc/init.d/apache2 force-reload
Forcing reload of web server (apache2)...apache2: Syntax error on line 116 of /etc/apache2/apache2.conf: Syntax error on line 1 of /etc/apache2/mods-enabled/php4.load: API module structure `php4_module' in file /usr/lib/apache2/modules/libphp4.so is garbled - perhaps this is not an Apache module DSO?

View Replies!   View Related
PHP 5.2.4 Fast CGI Not Working
I run lighttpd as my webserver, and 5.2.1 worked perfectly. I upgraded to 5.2.4 but when I checked my version, it said "cli". I ran the exact same configure command that I did with 5.2.1, but for some reason it says "cli". I then just ran this config:

'./configure' '--enable-fastcgi' '--enable-discard-path' '--enable-force-cgi-redirect'

And got this error:

collect2: ld returned 1 exit status
make: *** [sapi/cgi/php-cgi] Error 1

View Replies!   View Related
FFMPEG-PHP Will Not Load! (been Trying To Get It Working For Days)
I have been trying to install ffmpeg-php for days, and I just can't seem to figure out why it won't load.

I have done all of the following after extraction, without any errors:

# cd /usr/local/src/ffmpeg-php-0.6.0
# phpize
# ./configure
# make && make install

I have also added 'extension=ffmpeg.so' to the php.ini file and restarted the server.

I run the test command:
# php -i | grep ffmpeg

There is no output.

Then I run this command to check if the module is loaded:
# php -m

It is clearly not listed.

If I go back to the ffmpeg-php directory and run "make test", I see a huge list of errors that don't seem to make sense, and every single test FAILS, with the exception of the ones that are skipped with "reason: ffmpeg extension not loaded".

I can post the full output if needed.

If anyone thinks they know what the problem is, your help would be infinitely appreciated; I would even be willing to compensate.

View Replies!   View Related
Index.php Not Working After Hack Attempt
I had an untapped image upload site on my server which i forgot. Some guys or children upload something noxious and neutralize all the "index.php". This was a hack attempt with SSH.

We noticed that, close this account delete uploaded files. But there is a quirky problem. Any of index.php's isn't working after this attempt. Index file is working after change its name, example "mindex.php".

We updated all the services, rebuild apache but don't working. We can't use any index.php on the server.

Additionally, there are 34 possible trojans appear on the server. I tried to delete them with BitDefender but can't do that.( I checked that WHM / Scan for Trojan Horses )

View Replies!   View Related
Unable To Get Php-gd Working With 64 Bit CentOS 5
I am having major problems getting php-gd working properly in my LAMP environment. I am running 64 bit CentOS and PHP 5.2.6. I am trying to get gd working with PHP. Here are my currently installed packages related to gd:

rpm -qa | grep gd
gdb-6.5-25.el5_1.1
gdbm-1.8.0-26.2.1
php-gd-5.1.6-20.el5
gd-2.0.33-9.4.el5_1.1
sysklogd-1.4.1-40.el5
gd-2.0.33-9.4.el5_1.1

I have copied the gd.so from /usr/lib64/php/modules to the "extension location" specified in my php.ini and I have enabled the gd extension. But when I restart apache I get this error in the error log:

PHP Warning: PHP Startup: gd: Unable to initialize module
Module compiled with module API=20050922, debug=0,
thread-safety=0
PHP compiled with module API=20060613, debug=0, thread-safety=0
These options need to ma
tch
in Unknown on line 0

And when I look at phpinfo(), gd does not show up.

View Replies!   View Related
Upgraded To PHP 5 And Simple Includes Are Not Working
We upgraded 7 servers from our network from PHP 4.4.7 to PHP 5.2.5, and Apache 1.3.3.9 to Apache 2.0.61. In only one of this servers we found problems with includes...

Include example that works:

Code:
<?
include("http://www.google.com");
?>
This doesnt work:

Code:
<?
include("path/file.php");
?>
And path/file.php does exist, also log error from apache doesnt even show a line .

allow_url_fopen was replaced by allow_url_include and it's set to On.

Im using PHP 5.2.5, Apache 2.0.61, cPanel and RHES 4.

View Replies!   View Related
Used Apache Update/some PHP Scripts No Longer Working
Having some issues here, I used Apache Update to install WHMCS as I didn't have Curl installed. Well had some issues using the username and password as it couldn't connect to the database, my modernbill and phpnuke scripts still work but some other scripts like joomla, some shopping cart software, and other MYSQL scripts are not working.

I've run test scripts to see if I can connect to the database, got the following error with the PHP test script

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'data_invoice'@'localhost' (using password: YES) in /home/data/public_html/test2.php on line 4
I cannot connect to the database because:Access denied for user 'data_invoice'@'localhost' (using password: YES)

Also attempted it in SSH and getting a similar error that access is denied. Username and password are correct. I believe I upgraded PHP which my guess is what caused this. I've searched the forum for a few solutions and I had the problem in the past which I fixed it, but it's been a while.

View Replies!   View Related
All I Want To Know Is Why Its Not Working - SMTP/PHP Contact Form ANNOYANCE!
I have just purchased a dedicated server running Windows Server 2003 (IIS).

I have a website with a contact form - which I know works because it was working when I had it hosted somewhere else.

My question is how do I set-up my server so that the contact form will work. I know it's something to do with SMTP -- But i honestly have not idea what i am meant to do.

I wish there was a SLOW step-by-step guide on how to setup the SMTP on the server to send emails.!

View Replies!   View Related
PHP Mail Not Being Delivered
A client has moved his site to a new server. No mail is being delivered from the web server. I'm assuming a mail package needs to be installed on the server. The PHP code is fine and worked on the previous server. I'm a noob when it comes to server management. What needs to be installed on the server so that the mail() function works?

View Replies!   View Related
PHP Mail() Exploit
I have been having trouble with my server lately sending out a lot of emails and I thought I had tracked it down to people taking advantage of some mailing lists which I took care of.

What I ran into today is I have a business where I send out emails using a php script in our shopping cart. Well I got a lot of failure emails back that caught my attention. They have about 200 random email listings that are not in my database saying why they can't be delivered and then a copy of the actual newsletter that I just sent today.

So is it possible that some where something is injecting this BCC field into the php mail()? If so, is there something that I can do to find this script?

Box is set to poplock 20min, smtp auth on, firewall has been up for years, chkrootkit is clean.

View Replies!   View Related
SMTP/php Mail
I'm having an issue with php sending mail on my server...its not working!

I have a windows 2000 server running IIS 5 along with PHP. Now I know my scripts in PHP are correct, but they aren't sending out mail. I cannot receive them anywhere.

Is there something I have to configure in the PHP.ini file? Is SMTP setup by IIS5 or do I need to do anything?

View Replies!   View Related
Emailing Through SMTP, Not PHP Mail()
PHP manual says:

Quote:

Note: It is worth noting that the mail() function is not suitable for larger volumes of email in a loop. This function opens and closes an SMTP socket for each email, which is not very efficient.

I have a VPS and cPanel.

How can I get the SMTP host, user, pass and port?

View Replies!   View Related
Disable Php Mail () For One Account Only
is there anyway to disable PHP mail() for one cpanel account only?

Cpanel with PHPSUEXEC installed


View Replies!   View Related
Qmail, Php Mail , Hotmail
I have a vps with a site has phpbb2.

Before one month I migrated to another vps host.

In the old vps, the sending notfications such as reply new topic ( watch ), e-mail activations to new members notifications of the private messages were working very fine and each memeber which has valid e-mail will receiev these notifications from my forum.

The old vps using sendmail.

But the new one using qmail and it is will configured and the e-mail notifications are recieved which means that it is working except the ones who use hotmail accounts begin not recieve anything, the others e-mails are recieved well.

The files are the same, excpet the old uses sendmail, the new vps uses qmail.

After many days of searching how to solve this I decided to contact the support team.

They replied to me that they should do to overcome hotmail receive email problem, reverse PTR record needs to be added and to add SPF records under my domain's DNS zone.

They did and they told me to wait 24 hours, I waited for 4 days and it did not work.

I went back to them and again they look closely to my qmail configurations and it is fine and working and also they made an hotmail account to test and send e-mail form my mail server and it had been accepted which means that my domain and my new IP is not blocked by hotmail.

So their is nothing wrong excpet that email notifications from my phpbb it still won't go to members who have hotmail.

Very strange if the hotmail hates php mail scripts like phpbb why before in the old vps was like, and now suddenly hates.

View Replies!   View Related
Not Able To Send Mail From PHP Form
We have windows 2003 with Mail-Enable mail server. We have PHP 4 and PHP 5 on the server too.

From one of the PHP mail sending script we are not able to send the mails. currently we cannot see the logs for mail sending from PHP form in the mail-enable logs. Also when we trytelnet domain.com 25 it give the correct result.

there is no connectivity between the php and mail-enable on the server. But mails are working fine from the webmail, but they are not working from the php.

how to enable the logs for php mailing sending in mail logs so that we can see it. Also please tell us how we can configure PHP and mail-enable both together so that mails will work fine from PHP script.

View Replies!   View Related
Index.php Is Not Working But Index.php? Is Ok
I recompiled apache and php due to some problems. Now apache and php is running and I have a VB forum running fine. However, one folder has a PHP page named index.php when I type its URL I get it downloaded and it is not executed directly from the server.

when I add "?" to the end of the URL[url]" it runs with no problems!

Is it something wrong with httpd.conf or what?

View Replies!   View Related
PHP Mail() On Default Debian Install
We recently installed a fresh copy of Debian and PHP, however mail() doesn't want to send any emails, despite being enabled in php.ini etc.

Someone told me mail() will not work straight out of the box with a new Debian setup.

View Replies!   View Related
Web Host Block Php Mail... Alternatives?
I send out almost 50 emails a day from a PHP program on my web site.

My web host wrote an email complaining to me.

Should I:

a) take their advice (and if so, do I need an SMTP server and how do I get one set up?)

b) change web hosts?

Here is the email from them:

Hi there,

Thank you for contacting us.

Please note that the script is being abused via a web browser to send out
mail. Please refrain to use the PHP mail() function as it is deprecated and
vulnerable to abuse.

We could possibly suggest that you take a look at using SwiftMailer which is well
documented and supported.

We have commented out all of the mail() function calls on your site.

View Replies!   View Related
PHP (Mail) Marked As Spam Yahoo/Msn
i have a issue on my WHM/Cpanel Linux Server. I have hosted few vbulletin and IPB forums. Problem is that, when someone REGISTERS the CONFIRMATION email is sent to JUNK/SPAM in Hotmail and Yahoo email boxes.

I have noted that The Confirmation emails sent from many other servers are NOT MARKED as spam by Yahoo and Hotmail email accounts.
But the mails sent from My servers are marked as SPAM by default.

I have pasted the headers below:

Here are headers

Mails sent from this server works fine.
Received-SPF: pass (google.com: domain of webmaster@vbulletin.org designates 209.62.16.134 as permitted sender) client-ip=209.62.16.134;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of webmaster@vbulletin.org designates 209.62.16.134 as permitted sender) smtp.mail=webmaster@vbulletin.org

Mails sent from this server are sent to SPAM folder by default:

Received-SPF: neutral (google.com: 66.90.101.249 is neither permitted nor denied by domain of zahidon_4u@yahoo.com) client-ip=66.90.101.249;
Authentication-Results: mx.google.com; spf=neutral (google.com: 66.90.101.249 is neither permitted nor denied by domain of zahidon_4u@yahoo.com) smtp.mail=zahidon_4u@yahoo.com

One thing i am sure is there is something that needs to be fixed in WHM. Some option but i am not sure of that.

View Replies!   View Related
View Mail Header Sent By Php Form In Windows
As stated on subject, how to do it? On Linux, I know I will need to compile php with a patch (for example using Choon's patch) to get it, but dont know how to do on Windows.

View Replies!   View Related
Change Default Sender Address Using Php Mail() / Sendmail
I'm wondering if anyone else has experience with this, or if it's something easy that I'm overlooking.

I am on a VPS service (CentOS Linux) and I want my php mail function emails to send from a specified address. I've already manipulated the headers, so the emails do appear to come from the specified addres, but on mobile devices it comes up as nobody@server1.mydomain.com format. I would like this to read something like no-reply@mydomain.com

know which configuration files can change this default address?

View Replies!   View Related
Direct Admin: Php Mail() Only Sends Email To Certain Domains
I am currently setting up my server, and are experiencing some problems.

Some of the mails sendt with the php mail() func, ends up in the mail queue in DA, and I get the following error log in DA:

2009-06-04 20:36:02 Received from <> R=1MCHnG-0005uQ-9v U=mail P=local S=1344 T="Mail delivery failed: returning message to sender"
2009-06-04 20:36:02 routing failed for admin@vmnd001.local <admin@munnbind.net> F=<>: Unrouteable address
2009-06-04 20:36:02 routing failed for admin@vmnd001.local <admin@munnbind.net> F=<>: Unrouteable address
*** Frozen (delivery error message)

This only happens with some email domains though. If I set the recipient to my yahoo mail, it works as a sharm, but when I set my other email (<<removed>>) as recipient, i get the error log above.

View Replies!   View Related
E-Mail Submitted By A Php Form From My Dedicated Server Marked As Spam By Google
Hi folks I am also facing with the Google Spam Issue the header of sample email sent by a form is as follows. Is there anything wrong in this header. I don't understand why the emails are marked spam?

Code: ....

View Replies!   View Related
Non-working Forwarding Email Account On Working Domain
I have a domain with a few forwarding email accounts that forward to mac.com email accounts... for some reason every once in a while these accounts stop working...

This is the error I get when I email to that account:

This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed: ...

View Replies!   View Related
Disable Function
It possible to disable the disable function for all user expect one account for running few application i need shell_exec, passthru, exec these so for other account it possible to disable it?

View Replies!   View Related
Function Checking
How can figure out which functions are active on my server?
I have root access and the server is Linux.

I want to know wheather the function "fsockopen" is open or not.

View Replies!   View Related
Function : Curl_init()
Fatal error: Call to undefined function: curl_init() in /home/user/public_html/news/include/function.php on line 1526

how to fix this.??
thanks

NB: My server info

Centos
apache1
my php -v give :

Code:
php -v
PHP 4.4.7 (cli) (built: Jul 27 2007 18:31:31)
Copyright (c) 1997-2007 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with the ionCube PHP Loader v3.1.31, Copyright (c) 2002-2007, by ionCube Ltd., and
with Zend Extension Manager v1.2.0, Copyright (c) 2003-2007, by Zend Technologies
with Suhosin v0.9.20, Copyright (c) 2002-2006, by Hardened-PHP Project
with Zend Optimizer v3.3.0, Copyright (c) 1998-2007, by Zend Technologies

View Replies!   View Related
Function.file-get-contents
I got this warning message from a script I was working on to read XML feeds.

Warning: file_get_contents(url) [function.file-get-contents]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:Apache2.2htdocs est5.php on line 8

but when i run the url itself, it works fine.

i already set allow_url_fopen = On

View Replies!   View Related
Using Crypt Function In C++ On Linux
Can anyone tell me in order to use the crypt function (amd md5sum) in a c++ program (g++ on CentOS assuming the cryptography libary is installed) what do I have to

#include

?

View Replies!   View Related
Function.include Error
Ive searched google and this forum for hours and have not found any solution to this below error on a site of mine.

I am using php 5.2

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/comosabe/public_html/footer.php on line 5

View Replies!   View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved