Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mfleeson

Members
  • Posts

    150
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by mfleeson

  1. Hi All I've been looking through coding and as far as I can tell the osCommerce 4 is based on: OsCommerce forking into CRELoaded. CRELoaded being extended and modified into TrueLoaded (a version can be found on github here: https://github.com/vladmalyshev/trueloaded According to the developers website Holbi, Trueloaded has now been rebranded 'Powerful Commerce'. All of the demonstrations that have been streamed having been using a variation of the Trueloaded code so if anyone wants to see under the cover (as it was two years ago) I suggest you take a look at the github. I've got it installed but am currently getting sql query errors so am working through them. I have no idea when osCommerce will come out but it's seriously extended in trueloaded and should be great if we can get some kind of release. M
  2. Hi Please can you let us know what your expected release schedule is for OsCommerce 4? We keep seeing posts for more Demo zoom's but it would be great to hands on some real code. Thanks and Best Wishes Mark
  3. How about specific country based specifications, i.e. a UK based store, a French base store, a German based store? I'd be happy to help code the UK specific ones with Royal Mail shipping, Nochex and Paypal payments. The screen shots are looking great, I'm looking forward to looking under the cover Best Wishes Mark
  4. Looks great. Can categories be limited to specific user groups?
  5. Add-on, as it's adding functionality not providing a unique application.
  6. Hi Lee,

    The site won't let me message you, so here's what I tried to send:

    Hi Lee

    http://www.burninglight.biz/oscommerce3-2020/index.php?Admin

    I've disabled login so you should be able to get straight in. If you click on Products and then edit an existing you can see how Harald used variants on the Dymo. If you want to access the raw product attributes component then check it out under Mark's Debug Menu!

    I've backed up the database so if anything goes wrong I can always restore it.

    Cheers

    Mark

  7. Thanks so much for this thread guys. I started having issues with paypal payments not coming through and I've been chasing all around the place trying to find the issue. The old version was missing both DigiCert High Assurance EV Root CA and DigiCert Global Root G2 (SHA-256) I ran araxis merge on the phoenix 1.0.5.1 cert and the one downloaded from here and they're identical. Thank you. Can I suggest this gets made as an announcement in the forums so people know to update. On a slightly different issue my Paypal app says its version 5.0.10 and then pops up An update is available for this App! . Clicking the button does nothing and from what I can see on the forum it's the latest version. Anyone got ideas? Cheers Mark
  8. Hi Mike

    The database changes in 1.0.4.4 were increasing the varchars to 255. I created an update script for Gary but he's not included it in the package. You can use the following SQL.

    /* Update to existing installations adjusting VARCHARs to 255 in length */

    ALTER TABLE categories
    CHANGE COLUMN categories_image categories_image VARCHAR(255) NOT NULL;

    ALTER TABLE categories_description
    CHANGE COLUMN categories_name categories_name  VARCHAR(255) NOT NULL,
    CHANGE COLUMN categories_seo_keywords categories_seo_keywords VARCHAR(255) NOT NULL,
    CHANGE COLUMN categories_seo_title categories_seo_title  VARCHAR(255) NOT NULL;

    ALTER TABLE manufacturers
    CHANGE COLUMN manufacturers_name manufacturers_name VARCHAR(255) NOT NULL,
    CHANGE COLUMN manufacturers_image manufacturers_image VARCHAR(255);

    ALTER TABLE manufacturers_info
    CHANGE COLUMN manufacturers_seo_keywords manufacturers_seo_keywords VARCHAR(255)  NULL,
    CHANGE COLUMN manufacturers_seo_title manufacturers_seo_title VARCHAR(255) NULL;

    ALTER TABLE orders_products
    CHANGE COLUMN products_model products_model VARCHAR(255),
    CHANGE COLUMN products_name products_name VARCHAR(255) NOT NULL;

    ALTER TABLE orders_products_attributes
    CHANGE COLUMN products_options products_options VARCHAR(255) NOT NULL,
    CHANGE COLUMN products_options_values products_options_values VARCHAR(255) NOT NULL;

    ALTER TABLE products
    CHANGE COLUMN products_model products_model VARCHAR(255),
    CHANGE COLUMN products_image products_image VARCHAR(255);

    ALTER TABLE products_description
    CHANGE COLUMN products_name products_name VARCHAR(255) NOT NULL DEFAULT '',
    CHANGE COLUMN products_seo_keywords products_seo_keywords VARCHAR(255) NULL ,
    CHANGE COLUMN products_seo_title products_seo_title VARCHAR(255) NULL ;

    ALTER TABLE products_images
    CHANGE COLUMN image image VARCHAR(255);

    ALTER TABLE products_options
    CHANGE COLUMN products_options_name products_options_name VARCHAR(255) NOT NULL DEFAULT '';

    ALTER TABLE products_options_values
    CHANGE COLUMN products_options_values_name products_options_values_name VARCHAR(255) NOT NULL DEFAULT '';


    cheers

    Mark

    1. Mikepo

      Mikepo

      Thanks Mark, that saved be time!

      cheers

    2. mfleeson

      mfleeson

      No worries. The original git update to Gary had this script in but he didn't include it in the update.

    3. ecartz

      ecartz

      1.0.4.4 is available on GitHub, but for updates, the SQL is here. 

  9. My version of the code includes a fallback so that if the none of the pricing works out, it assumes I will send it via courier and charges £12.99 (hermes pricing) I've almost finished updating the pricing matrix for the this years Royal Mail pricing so I'll tack it here soon.
  10. Hi I have a two versions of the Royal Mail, one for UK and one for Airmail both which work with 2.3.4 BS. I'll be looking to port them to phoenix once I'm up and running development again. Let me know if you're still interested in this being available. Cheers Mark
  11. Tracked the issue down. My version of oscommerce is wrapped in Joomla JCommerce and in application_top is a whole load of globals. Added it to that and it worked although it came up with define errors and didn't come up with the auto-configure. Will continue to experiment. Thanks Mark
  12. Has anyone here tried installing the new Paypal App. I'm getting an error 500 after clicking install. Traced it to Fatal error: Call to a member function getDef() on a non-object in /home/testls/public_html/2016/components/com_jcommerce/includes/apps/paypal/modules/PS/PS.php on line 24 which is trying to access a global but doesnt appear to have been defined! In the function OSCOM_PayPal_PS there is a global $OSCOM_PayPal; but it's returning null. Any ideas? Thanks Mark
×
×
  • Create New...