Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Demitry

Members
  • Posts

    535
  • Joined

  • Last visited

  • Days Won

    26

Posts posted by Demitry

  1. @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.

     

     

  2. 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.

     

     

  3. 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.

     

     

  4. 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.

     

     

  5. 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']);

     

     

  6. @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

     

     

  7. Quote

    sn (state name) is not defined for some reason.

    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);
                });
        }
    });

     

     

     

  8. Hey Mark,

    According to the following link, osCv4 is due to be released at some point in the summer of 2021.

    https://en.wikipedia.org/wiki/OsCommerce

    The summer of 2021 ends on September 22nd,.. according to this link.

    However, considering the time involved in completely rewriting a cart software and then testing it to get most of the bugs out, I would not be surprised to see this software release date pushed back into the fall of this year.

    I expect that the initial release will likely be buggy and missing some key features. The following releases (4.1, and 4.2) will be much better and more stable.

    Much like the other folks here, I too would like to see a better level of communication from the new osC ownership. Though I am not pressed for the new version's release and don't expect it to be any sort of revolutionary software that will magically propel osCommerce into the ranks of a top-rated cart software.

    On a side note, your post is not directed at the new ownership of osC. Without addressing the owner/site-admin, you are simply tossing a message in a bottle into the ocean and hoping that the new owner, Vadym, somehow finds it.

     

     

  9. It depends on the Zombie Phoenix version that you are using. At some point (I forgot what version) the Braintree payment module got restructured and split up. If you have an earlier version, then I suggest to install the latest version of that module. Hopefully, that will solve the issues. 

    The newer version has one file in  /includes/modules/payment/ folder called braintree_cc.php. And the rest of the Braintree package is moved to  /includes/apps/braintree_cc/ folder.

     

     

  10. Quote

    I select paypal at the payment page, and it takes me to a blank page at the following url:

    /ext/modules/payment/paypal/express.php 

    hi Erika,

    If you have not already, turn on your error reporting. That will help you to see via the error log what errors are being generated and you can better identify where the problem is.

     

  11. Quote

    ... but trying to code for all shops in the free versions just takes too much time.

    I totally understand! I have a bunch of addons that I don't care to dedicate time to for a completely dead software. Cheers for doing this update! I appreciate it.

  12. Just an addition/addendum to my previous comment.

    Although there is a folder in the package for osC versions Before_2.3, ..there is a large gap from version 2.2 to the Flatline version, including osC versions 2.3, 2.4, BS Edge, Gold, and everything in between.

    This is no longer an issue for me, but it could be for anyone else who has an osC version that is part of that gap.

     

×
×
  • Create New...