Good evening to all ..
can someone explain to me how to fix the error in here?
www.utensileriaferramenta.it
CentOS Server
with Apache 2
PHP 5.3.14 fast/cgi
Best Regards
Good evening to all ..
can someone explain to me how to fix the error in here?
www.utensileriaferramenta.it
CentOS Server
with Apache 2
PHP 5.3.14 fast/cgi
Best Regards
Your template has bad PHP code in it. Did you get it from Template Monster?
At the very least, your server doesn't recognize a "<?" tag, and requires it to use "<?php" instead.Code:<div class="currencies"> <!-- ========== CURRENCIES ========= --> <form name="currencies" action="http://utensileriaferramenta.it/index.php?main_page=index" method="get"> <div> Valute: <? if (isset($currencies) && is_object($currencies)) { reset($currencies->currencies); $currencies_array = array(); while (list($key, $value) = each($currencies->currencies)) { $currencies_array[] = array('id' => $key, 'text' => $value['title']); } $hidden_get_variables = ''; reset($_GET); while (list($key, $value) = each($_GET)) { if ( ($key != 'currency') && ($key != zen_session_name()) && ($key != 'x') && ($key != 'y') ) { $hidden_get_variables .= zen_draw_hidden_field($key, $value); } } } ?> <select name="currency" class="select" onchange="this.form.submit();"> </select> <input type="hidden" name="zenid" value="ak9bekb4jk8lsgcfuoq3kko2f0" /> </div> </form> <!-- ====================================== --> </div>
Any other customizations you make to your site will also require the proper use of full <?php tags instead of the short <? tag.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Yes i have purchase from templatemonster.. Is possibile to solve or is necessary to rewrite template?
Thank you
I posted the solution in my last post.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.