Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Deskdirect

Members
  • Posts

    192
  • Joined

  • Last visited

Everything posted by Deskdirect

  1. I am getting the same error when trying to view Gift Voucher Queue, Mail Gift Voucher, and Gift Vouchers sent. Someone please help!
  2. I installed the "Shipping Zone Addon" and want to use it with two zones, one for the US and Canada the other one for the rest of the world. I can't seem to find a way to use this contrib to charge shipping by the total cost of the order. Is there a way to alter this mod or can anyone suggest one that would work for me? Thanks!
  3. I downloaded this contribution today and installed the included files. When I attempted to create a test account and changed the country the page doesn't refresh. I have a javacode error on bottom page bar. I made two changes to the js file nothing major. Thanks for any help you can give me.
  4. The Contrib writer sent me this fix To resolve your problems, please see this link http://www.oscommerce.com/community/contributions,2604 This solves this problem but now the form is too wide for printing on an 8.5 x 11 page.
  5. I installed this contrib and its great but only prints parts of the borders and background. The contrib is useless to me if it doesn't print correctly. Does anytone have a fix for this problem? Thanks.
  6. I would like my customers to be able to ask a question without logging in/having an account. Can you tell me which part of the code I can change to accomplish this? Thanks
  7. I also would like to know how I can get order details to show in Palpal checkout.
  8. Can someone tell me if this contrib is an add on to the existing Paypalipn or is this a different/new version? I have Paypalipn installed but this contrib looks interesting!
  9. When I click on "Track A Return" all I get is this error ---> Warning: main(includes/languages/english/FILENAME_RETURN): failed to open stream: No such file or directory in /www/m/xxxxxx/htdocs/store/returns_track.php on line 46 Fatal error: main(): Failed opening required 'includes/languages/english/FILENAME_RETURN' (include_path='.:/usr/local/lib/php') in /www/m/xxxxxx/htdocs/store/returns_track.php on line 46 Is RMA-Return 2.2b the entire RMA module or should I download one of the other contribs to go along with it?
  10. Matt, Did you manage to get this to work? If so, how?
  11. I know I'm not php savy but the instructions for this contrib has me totally confused. I already have a catagory called "Freebies" and the contents are free with any order. I just want to make sure that my customers are made aware of these free gifts. This contrib does actually what I've been looking for but the instructions are very vague. Can anyone help?
  12. I've tried to modify this code to work. I managed to get it to display the images but the product links are still broken. HELP! <?php echo "<table width=\"$table_width%\" align=\"$table_align\" cellspacing=\"$table_cspace\" cellpadding=\"$table_cpadd\"><tr>"; $tdwidth = round($table_width/$prod_col) - 1; $connection = mysql_connect("$db_server","$db_user","$db_pass") or die("Couldn't make connection."); $db = mysql_select_db("$db_name", $connection) or die("Couldn't select database."); if (!$pl) {$pl = "0";} if (!$ph) {$ph = $num_products;} $sqlcount = "SELECT * FROM `products` ORDER BY 'products_model'"; $sql = "SELECT * FROM `products` p, `products_to_categories` p2c where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = '" . $category_display . "' ORDER BY RAND() DESC LIMIT $pl, $num_products"; $sql_result = mysql_query($sql,$connection) or die("Couldn't execute query."); $sqlcount_result = mysql_query($sqlcount,$connection) or die("Couldn't execute query."); $num = mysql_numrows($sqlcount_result); mysql_free_result($sqlcount_result); //echo $num; $prod_result = ($prod_col + 1)/2; //echo $prod_result; $i = 1; while ($row = mysql_fetch_array($sql_result)) { $id = $row["products_id"]; $model = $row["products_model"]; $image = $row["products_image"]; $price = $row["products_price"]; $sql2 = "SELECT `products_name` FROM `products_description` WHERE products_id = '$products_id' LIMIT 1"; $sql2_result = mysql_query($sql2,$connection) or die("Couldn't execute query."); $row2 = mysql_fetch_array($sql2_result); $name = $row2["0"]; $products_image_replace = str_replace("/", "/", $image); $products_price_replace = str_replace("", "", $price); $idiv = $i/2; if ($idiv == $prod_result) { echo "</tr><tr>"; $i = 1; } else { } echo "<td align=\"center\" width=\"$tdwidth%\" class=\"content\">"; if ($product_info_link == "1") { if ($product_image == "1") { echo "<a href=\"http://$domain_name/$catalog_folder_name/product_info.php/products_id=$products_id\" target=\"_blank\"><img src=\"http://$domain_name/$catalog_folder_name/images/$products_image_replace\" width=\"$image_width\" height=\"$image_height\" border=\"0\"><br>$name</a><br>"; } else { echo "<a href=\"http://$domain_name/$catalog_folder_name/product_info.php/products_id=$products_id\" target=\"_blank\">$name</a><br>"; } } else { if ($product_image == "1") { echo "<img src=\"http://$domain_name/$catalog_folder_name/images/$products_image_replace\" width=\"$image_width\" height=\"$image_height\" border=\"0\"><br>$name<br>"; } else { echo "$name<br>"; } } if ($product_price == "1") { echo "\$$products_price_replace<br>"; } else { } if ($product_buy_link == "1") { echo "<a href=\"http://$domain_name/$catalog_folder_name/default.php/action/buy_now/products_id=products_$id\">Buy Now</a></td>"; } else { } $i++; } mysql_free_result($sql_result); mysql_close($connection); ?> </table> <?php echo "<table width=\"$table_width%\" align=\"$table_align\" cellspacing=\"$table_cspace\" cellpadding=\"$table_cpadd\"><tr><td align=\"center\"><form action=\"$PHP_SELF\" method=\"get\">"; if (!$pl || ($pl == 0)) { } else { $prepl = $pl - $num_products; echo "[<a href=\"$PHP_SELF?pl=$prepl\">Previous</a>] "; } echo "<select name=\"pl\" onChange=\"this.form.submit();\" size=\"1\"><option value=\"\" SELECTED>Page Jump</option>"; $page_count = round($num / ($num_products)) - 1; $j = 0; while ($j <= $page_count) { $page = $j+1; $newpl1 = $num_products*$j; if ($j == 0) { $newpl = "0"; } else { $newpl = ($j*$num_products)+1; } echo "<option value=\"$newpl\">$page</option>"; $j++; } $nextpl = $num_products + $pl; echo "</select> [<a href=\"$PHP_SELF?pl=$nextpl\">Next</a>]</form></td></tr></table>";
  13. I've tried both contribs - Catalog Anywhere and the Catalog Anywhere with Catagories - and neither seem to work. I tweaked the code to show product images but am clueless as to how to get the product link to work. Is there a reliable contrib that will allow me to show products on other pages at my site?
  14. First I don't have this file sts_display_output.php, so this fix won't work for me. Any other thoughts?
  15. Iam trying to use this contrib without any success. Should the rss.php file have any particular permission? Should the url be something like Http://www.mysite.com/store/rss.php?box=categories Thanks for any help!
  16. Eric, I'm using paypal_notify.php,v 0.97 2003-05-02 I can't find if ($order->content_type != 'virtual') { in catalog/paypal_notify.php This is the block of code around line 242 if (is_object($$payment)) { $email_order .= EMAIL_TEXT_PAYMENT_METHOD . "n" . EMAIL_SEPARATOR . "n"; $payment_class = $$payment; $email_order .= $payment_class->title . "nn"; if ($payment_class->email_footer) { $email_order .= $payment_class->email_footer . "nn"; } } tep_mail($order->customer['name'],$order->customer['email_address'], EMAIL_TEXT_SUBJECT, nl2br($email_order), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, ''); tep_db_query("delete from " .TABLE_CUSTOMERS_BASKET. " where customers_id=".$order->customer['id']); tep_db_query("delete from " .TABLE_CUSTOMERS_BASKET_ATTRIBUTES. " where customers_id=".$order->customer['id']); :?: :?: :?:
  17. This issue has probably been resolved but I've searched and just can't find a definate answer - The page will not load and I get the following error ----> Error! Unable to determine connection method on a link! Known methods: NONSSL SSL I'd appreciate any help! Annette
  18. Because I've had errors like this before - the application_top files were the first things I checked. The install went fine, everything shows up in the admin center and I can even use the "tes" mode. But clicking on transaction throws out the error. ??????
  19. I've managed to get throught the install (sorta!) .... now trying to get it working correctly. I've checked and re-checked but I still get this error when I click transactions for Paypal IPN 1146 - Table 'mitchryder.TABLE_PAYPALIPN_TXN' doesn't exist select count(*) as total from TABLE_PAYPALIPN_TXN [TEP STOP] The table exists and I've made the upgrades, checked the application_top files, added the text files where needed aand now I am just fresh out of ideas! Can anyone take pity on me and give me a clue? PLEASE!
  20. rbartz, Thanks for the reply. I honestly thought my understanding of how any the order_total_modules were processed was flawed. I include the url of this post in another post I made to the PayPal IPN contrib post - your response clearly laid out exactly what I could not express. Thanks! I'll keep you posted. Annette
  21. I have been having a discussion http://www.oscommerce.com/forums/viewtopic.php...7432&highlight= about order totals mods and how PayPal IPN doesn't seem to recognize the new Insurance order total mod. PayPal IPN works perfectly for me except when the order total includes a fee for insurance. Can someone help me track down the problem, please?! Thanks.
  22. rbartz, I ran into a snag! I'm using PayPal IPN - I have the option of including shipping in the order total but PayPal IPN won't allow me to include the insurance. Since I'm without a Merchants Account I guess this it was just not to be. Thanks, Annette BTW - It works perfectly with checks/moneyorder payments!
  23. Thanks, the file did open without a file directory structure. I downloaded it again with a different program and it worked out fine. Can you think about adding anther feature like delivery confirmation? Thanks again for all of your effort! Annette
  24. This is just what I have been waiting for. It would have been nice if it included a admin controlled option to add special fees like delivery confirmation......... but I am not complaining! The instructions are vague. I added the files to the order_total directories in the catalog directory............ now what? The special instructions - do they apply if you are not using the low order fee module or do the instruction apply only to the placement of the added part and should be added by everyone? HELP I've got all sorts of errors happening? Warning: main(/www/m/xxxxx/htdocs/store/includes/languages/english/modules/order_total/ot_insurance.php) [function.main]: failed to create stream: No such file or directory in /www/m/xxxx/htdocs/admin/modules.php on line 120 Warning: order_total(includes/languages/english/modules/order_total/ot_insurance.php) [function.order-total]: failed to create stream: No such file or directory in /www/m/xxxxx/htdocs/store/includes/classes/order_total.php on line 25 HELP!
  25. I loaded Catalog Products with Images and when I click on the link from my index page I get -----> Error! Unable to determine connection method on a link! Known methods: NONSSL SSL I've search for help and nothing has helped and anyway most of the suggestions dealt with 2.1 and I'm using 2.2 Any suggestions? Annette
×
×
  • Create New...