Thread: Email Form PRO
View Single Post

  #30 (permalink)  
Old 27-08-08, 18:16
jambek2003 jambek2003 is offline
Junior Member
 
Join Date: Aug 2008
Posts: 3
Rep Power: 0
jambek2003 is on a distinguished road
Re: Email Form PRO

Quote:
Originally Posted by flowmatic007 View Post
I really need some assistance from anyone. I think I have tried everything and triple checked everything a zillion times. Reading threw everyone's comments unfortunately doesn't help. I changed chmod, re-published swf, and I still get server error. Is there anyone that can point me in the right direction?
Are you on windows? Do you have dedicated server or is it hosted by a hostingprovider? If you have a dedicated server and didn't configure the SMTP-server edit your php.ini-file. search for "SMTP" in ini-file.

Add the next code somewhere at the beginning of your php-script if you don't have a dedicated server (you don't have the capability to configure php.ini);
PHP Code:

// SMTP-server for outgoing mail
ini_set("SMTP","smtp.your_provider.xyz"); 
find out SMTP-server from your provider and replace my bogus server-address. Hope this works fine. Use also my suggestion: install Charles and Firefox to debug the packets. What is send back by server?! (It's the webserver by the way)

Last edited by jambek2003; 27-08-08 at 18:20..
Reply With Quote