I have a custom CMS i\'ve built that works perfectly on my dev box (Ubuntu/PHP5+/MySQL5+).
I just moved it up to the production box for my client and now all form su
In my case (php page on OVH mutualisé server) enctype="text/plain" does not work ($_POST and corresponding $_REQUEST is empty), the other examples below work. `
enctype="text/plain"
$_POST
$_REQUEST
Send my greetings Send my application/x-www-form-urlencoded greetings Send my multipart/form-data greetings Send my text/plain greetings
`
More here: method="post" enctype="text/plain" are not compatible?