DMXzone Lightbox Support Product Page
Form in ligthbox, not appear the confirmation page on submit
Reported 06 Oct 2012 17:22:12
1
has this problem
06 Oct 2012 17:22:12 Mauro G. posted:
I'm using the lightbox with a form, but when I send it not appear the confirmation page, that is in PHP again. Where is the mistake? The page is sitoweblowcost.altervista.org/PROVA/contatti-prova.html (open the ligthbox by the link named "Modulo" Replies
Replied 07 Oct 2012 14:44:19
07 Oct 2012 14:44:19 Mauro G. replied:
I just solved the problem. The extension write this code:
<form action="<?php echo (htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES)); ?>" method="post" name="WebXTe_Standout_WebxTe" target="dmxLightbox" class="Standout_WebxTe" id="WebXTe_Standout_WebxTe">
that it seem to generate the problem: a ligthbox in another ligthbox, as in a loop.
I modified as follow:
<form class="Standout_WebxTe" id="WebXTe_Standout_WebxTe" name="WebXTe_Standout_WebxTe" method="post" action="<?php echo (htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES)); ?>">
Now seem to work. I tested in IE, Chrome, Safari, iCab...
but don't work in Firefox (for Win and for Mac) and the same is for Opera - the latter not too much used fortunately.
<form action="<?php echo (htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES)); ?>" method="post" name="WebXTe_Standout_WebxTe" target="dmxLightbox" class="Standout_WebxTe" id="WebXTe_Standout_WebxTe">
that it seem to generate the problem: a ligthbox in another ligthbox, as in a loop.
I modified as follow:
<form class="Standout_WebxTe" id="WebXTe_Standout_WebxTe" name="WebXTe_Standout_WebxTe" method="post" action="<?php echo (htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES)); ?>">
Now seem to work. I tested in IE, Chrome, Safari, iCab...
but don't work in Firefox (for Win and for Mac) and the same is for Opera - the latter not too much used fortunately.