GithubHelp home page GithubHelp logo

Comments (2)

raxbg avatar raxbg commented on August 11, 2024

Line 366 seems to be what you are looking for.

$this->url = rtrim('http://'.preg_replace('/^https?\:\/\//', '', $url), '/') . '/index.php?';

The only reason for this being there is to make sure that the provided URL has a protocol, but forcing HTTP is definitely not the best thing to do. Please try replacing line 366 with this:
$this->url = (!preg_match('/^https?\:\/\//', $url) ? 'http://' : '') . rtrim($url, '/') . '/index.php?';.

Let me know if everything is okay, so I can push an update.

from opencartapi.

twistedpixel avatar twistedpixel commented on August 11, 2024

That's almost exactly what I changed in my local file so go ahead and push that out as it's been working fine for a week or so. Thanks!

from opencartapi.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.