Good Afternoon,
I have installed Ultimate SEO latest version 2.102 on Zencart 1.302, I believe there is a rewrite issue for POSTED forms and I am not familiar enough with modrewrite to alter it. if a person tries to register or login, the form is posted so it would be posted from
http:/<URL>/login.html
and the rewrite rule applied would be
RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING} [L]
at the very end of the .htaccess file provided. but seeing as %{QUERY_STRING} is a $_GET and not a $_POST the data disappears and the information never gets submitted. I have confirmed this by altering the login and create_account templates/ modules to send the form as a GET and this works, so I believe that a one-liner in the modrewrite is need along the lines of
RewriteCond %{REQUEST_METHOD} !^POST.*
above the last line with the ignorinf of directories etc, but alas this does not appear to work
Thank you for any help
Philip.



