• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

formmail.php or .pl not processing hidden variables

P

Paly69

Guest
Moved a domain/website to new plesk server

I've tried multiple different formmail.php incarnations...

.shtml file calls the script, hidden recipient...
formmail.php says no recipient.

If I comment out the "reserved" keyword for recipient, and hard code one in, it works...

I've got mod-perl support & php-safe on.
Perms on the files 644 (755 on the .pl script)

From the lack of traffic on this, I'm missing something very basic. If someone has time to check their working formmail script on a plesk box, please let me know your config?

Thank you!
Jim
 
Formmail.php?

Is there anyone on this board that has a working configuration that is allowing formmail.php to be processed?

I cannot get variables from the .html page to transfer to the .php page.

I'm starting to think this is somewhere in the http.conf... but don't know what to look for?

Please help?
 
sounds to me if register_globals is your issue.

in your php script are you accessing eg:

$recipient

or

$_POST['$recipient']

a crude fix can be to use extract at the top of your script to convert POST vars

PHP:
extract($_POST);
 
Back
Top