lorenzo 2006-12-16 17:41
Hello, I can't solve for a long time this problem: if I don't type manually index.php on URL after www.mydomain.com, can't check out (I get an error page) neither change product quantity (the same error when try to refresh). I have win 2000 server with php 4.4.1 Any suggestions?
panos 2006-12-16 18:02
lorenzo can you post your URL ??
panos 2006-12-16 18:29
lorenzo in ordersBasket you have this code ?? <!-- BEGIN LIST_HEAD --> <div class="order"> <h2>$lang[Order] - $lang[basket]</h2> <form action="?p=$p&sOption=save" method="post"><fieldset> <table id="order_table" cellspacing="0"> <tr> <th> $lang[Name] </th> <th> $lang[Price] [$config[currency_symbol]] </th> <th> $lang[Quantity] </th> <th> $lang[Summary] [$config[currency_symbol]] </th> <th> </th> </tr> <!-- END LIST_HEAD --> <!-- BEGIN LIST_LIST --> <tr> <td> <a href="?p=productsMore&iProduct=$aList[iProduct]">$aList[sProduct]</a> </td> <td> $aList[fPrice] </td> <td> <fieldset><input type="text" name="aElements[$aList[iElement]]" value="$aList[iQuantity]" maxlength="3" size="2" /></fieldset> </td> <td> $aList[fSummary] </td> <td> <a href="?p=$p&sOption=del&iElement=$aList[iElement]">$lang[Delete]</ a> </td> </tr> <!-- END LIST_LIST --> <!-- BEGIN LIST_FOOTER --> <tr> <th colspan="3"> $lang[Summary_basket] </th> <th> $aList[fSummary] </th> <th> </th> </tr> <tr class="tfoot"> <td colspan="3"> <fieldset><input type="submit" value="$lang[Calc]" class="submit" /></fieldset> </td> <td colspan="2"> <fieldset><input type="submit" name="sSave" value="$lang[Next] »" class="submit" /></fieldset> </td> </tr> </table> </fieldset> </form> <div id="back">« <a href="javascript:history.back();">$lang[back]</a></div> </div> <!-- END LIST_FOOTER --> <!-- BEGIN NOT_FOUND --> <div id="message"> <div id="error"> $lang[basket_is_empty]<br /> <a href="?p=">« $lang[homepage]</a> </div> </div> <!-- END NOT_FOUND -->
lorenzo 2006-12-16 18:37
the code is extacly the same, but I've added this at the bottom of the page, because of some delivery calculation: <!-- BEGIN DELIVERY --> <div id="message"> <div id="error"> $lang[delivery]<br /> <a href="?p=">« $lang[homepage]</a> </div> </div> <!-- END DELIVERY -->
panos 2006-12-16 18:41
if you del this code work ????
lorenzo 2006-12-16 18:43
I found this problem in the forum, but seems nobody has solved it (see http://opensolution.org/Quick.Cart/forum/?p=readTopic&nr=1066) I've added an index.html page with this code and it works in this way <html> <head> <title>Redirecting...</title> <META HTTP-EQUIV="Refresh" CONTENT="0; URL=index.php"> </head> </body> </html>