• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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