Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Demitry

Members
  • Posts

    535
  • Joined

  • Last visited

  • Days Won

    26

Demitry last won the day on February 18

Demitry had the most liked content!

4 Followers

Profile Information

Recent Profile Visitors

31,242 profile views

Demitry's Achievements

  1. @Don R. Soucy Support for Zombie Phoenix is at https://phoenixcart.org/forum/viewforum.php?f=10 Please use that in the future.
  2. @jerrymeola You can search for add-ons related to your keywords criteria here: https://apps.oscommerce.com/ There's not a list of all add-ons because it would be of no value to anyone, considering 20+ years of submitted add-ons. Personally, I have about 37 of my own. The new osC ownership expressed intent to revamp the add-ons site for osCv4 in the coming months.
  3. Go into catalog/includes/functions/banner.php and find tep_activate_banners() function. Change the $banners_query line to the following: $banners_query = tep_db_query("SELECT banners_id, date_scheduled FROM banners WHERE date_scheduled IS NOT NULL");
  4. Go to the bottom of the page where it says Release History. and use the drop-down menu to select your version. https://www.oscommerce.com/Products
  5. @Jack_mcs, do you think you might be able to fix that issue for @artfulweb if you had access to the code so that you could see it and test it? Perhaps for a fee? There's so much more value to actually being able to see the code and work with it, rather than guessing at a solution.
  6. Use Jack's Site Monitor addon. It will tell you whenever a change is made to the site.
  7. I just found out that they force SSL on all pages, which is not a big deal for me as long as it doesn't impact page loading speed,.. though it's not the way osCommerce is set up. And, this is the first time I am using cloud hosting. I was with WebHostingHub for over 7 years, which is a sister company to InMotion hosting. They were good in the beginning, but their performance and QoS dropped off dramatically in recent times. I'm also impressed with HostArmada's tech support. It seems like it's a bunch of Bulgarians, but their English is great, so is their response time, and knowledge base. WebHostingHub's tech-support QoS deterioration is one of the main reasons I chose to look for another hosting company.
  8. I just got their Speed Reaper 3-year plan on November 30th. I did a bunch of research before landing on this company. So far, everything is great! One thing to mention, their server date/time stamp is set to the European format, as in dd/mm/yyyy. That threw me off because I am used to the US format of mm/dd/yyyy. So, when it says that your next billing date is 04/12/2024, it's not April 12th. Also, their shared hosting is not ideal for certain types of customers. For example, if your site is dependant on heavy file downloads such as videos, their shared hosting would not be a good fit for both, storage and data transfer.
  9. Also, if you don't already, you should use Up-Time Robot. It's a free service that pings your site every 5 minutes and sends you an email or text to let you know when your site is down and again when it comes back up.
  10. Check out HostArmada. They boast about their security and specifically DDoS attacks. Their Speed Reaper plan is a good one. Their renewal rates suck, but the first 3-yr discount is great. Plus, I cannot find any bad reviews for them. Though no dedicated IP for shared. Another one to concider is ScalaHosting. They have a VPS at $10/month with a 3-year commitment. Great reputation on this one too.
  11. Ok, I was wondering why that addslashes() function was there, and now we know. I'm glad it worked for you. Cheers!
  12. I just realized that the query I posted may fail. Please replace the following in that SQL query: $order->products[$i]['products_model']) with this: $order->products[$i]['model'])
  13. Give this a try. This is based on the product model. Though I have not tested it, and the attributes FOR loop follows this code. Uncomment that print_r(); statement to see if this works based on the quantity of how many products you have of that model. $order_count_query = tep_db_query("select p.products_quantity, p.products_model, pd.products_name from products_description pd, products p, orders_products op where p.products_id = pd.products_id and pd.products_name = '" . addslashes($order->products[$i]['name']) . "' and p.products_model = ' . $order->products[$i]['products_model']) . ' and op.orders_id = '" . $_GET['oID'] . "'"); $order_count = tep_db_fetch_array($order_count_query); echo ' ' . $order_count['products_quantity'] . ' in-stock'; //print_r(' There are ' . $order_count['products_quantity'] . ' in-stock of model: ' . $order_count['products_model']);
  14. @cannuck1964 What version of osC are you using? And, did you just install this add-on, or was it there from some time back and just stopped working? I have BS Edge and the default code for the country/state pairing was problematic. I actually worked on this Country State Selector add-on, but for reasons I cannot recall now, I chose a different one. I installed Rainer's State Selector BS add-on and World Zones. https://apps. oscommerce.com/cbtGB&state-selector-bs
  15. give this a try: window.addEventListener('DOMContentLoaded', function() { if ($("#inputCountry").val() == "") { $("#inputCountry").val("223"); } if ($("#inputCountry").val() != "") { $("label[for='inputState']+div").html(), (id_country = $("#inputCountry").val()), (sn = $("#inputState").val()), $.post("states.php", { country_id:id_country, state_name:sn }, function (a) { $("label[for='inputState']+div").html(a); }); } });
×
×
  • Create New...