Quote:
Originally Posted by flowmatic007
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

)