• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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