• 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!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Resolved Subdomain creation - POST data not working

D

Damien AUDOUX

Guest
Hello,

As far as i was using Plesk, i could create easily my subdomains and use them.
But for severals days (may be some weeks as i haven't to create subdomain or domain every day), i create the subdomain but i can't use form POST method anymore as the POST data are not retreive on the server side.

Can you help me to resolve that please ?
I have tried to set the PHP version to 5.6, 7.0 and 7.1 without change.

I try this with this very simple code :
PHP:
<html>
<head>
    <title>Test form post data</title>
</head>
<body>
    <?php var_dump($_GET);var_dump($_POST);var_dump($_FILE);var_dump($_PUT);var_dump($_REQUEST); ?>
    <form action="index.php" method="post">
        <input type="text" id="test" name="test" value="" />
        <input type="submit" id="valider" name="valider" value="Valider" />
    </form>
</body>
</html>

Thank you for your help
Regards
Damien
 
Thank you for your answer.
You're right, it was that the problem, it's too bad to not found anything about this on the web.
Thank you again.
 
Back
Top