If I were you I'd check your error_log files. Maybe they can shed some light on it?
If I were you I'd check your error_log files. Maybe they can shed some light on it?
Testing, my replies are not being posted.
$_POST array is empty when submitting a form to a page that uses shared cert url
Hello Scott,
You have created another thread. I moved reply to this one.
I'm looking your script. But it doesn't worked even with http. Did you check this?
Thanks David.
I did test it and it works fine with http. Not exactly sure what you are looking at because I haven't posted accurate url's, I just through the faux shared cert address in there as an example.
The code if you care which couldn't be anymore simple is as follows:
form.php (plain)
form.php (with faux shared cert)HTML Code:<form method="post" action="process.php"> <input type="hidden" name="field" value="field value" /> <button type="submit">Save</button> </form>
process.phpHTML Code:<form method="post" action="https://echo.gendns20.com/~mydomain/process.php"> <input type="hidden" name="field" value="field value" /> <button type="submit">Save</button> </form>
PHP Code:<pre>
<?php print_r($_POST); ?>
</pre>
I've made a simple script to test and it works correct:
glowform.php:
glowprocess.phpCode:<form method="post" action="https://echo.gendns20.com/~someusername/glowprocess.php"> <label>First Name: </label> <input type="text" name="fname"> <input type="submit" name="submit" value="submit"> </form>
As result:Code:<pre> <?php print_r($_POST); ?> </pre>
Please check it too.HTML Code:Array( [fname] => David [submit] => submit)
I found your account on the serverYou can see my files in the same folder.
By the way, I think that problem was with redirect to www.domain.com. I've disabled it in your .htaccess file.
# RewriteCond %{HTTP_HOST} !^(www) [NC]
# RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
Thanks for verifying.
Ha! Thats exactly where I was going next! Figured it was a redirect issue.
You guys still never cease to amaze me after all these years, customer service at its finest! Thanks.