• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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