Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Deskdirect

Members
  • Posts

    192
  • Joined

  • Last visited

Profile Information

  • Real Name
    Shelia and Annette
  • Gender
    Female
  • Website

Deskdirect's Achievements

  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!
×
×
  • Create New...