Giter Club home page Giter Club logo

Comments (8)

kkatpki avatar kkatpki commented on July 30, 2024

I believe it has to do with the use of named back-references (https://github.com/oncletom/wp-less/search?q=%3FP%3C&ref=cmdform&type=Code) in preg_replace_callback, which is only supported in PHP 5.3 and above, from what I gather.

In PHP 5.2, those back-references fall through as numerically keyed arrays.

A temporary work-around for PHP 5.2 users is to change the array keys to their expected numerical index, as shown below from Plugin.class.php, around line 124.

    protected function _filterStylesheetUri($matches)
    {
        if (preg_match('#^(http|@|data:|/)#Ui', $matches[2])) {
            return $matches[0];
        }

        return sprintf('url(%s%s%1$s)',
            $matches[1],
            $this->_TmpBaseDir . '/' . $matches[2]
        );
    }

Long-term, the plugin author should cite PHP 5.3 as the minimum requirement, or simply remove the named back-reference dependencies.

A reasonable compromise, without sacrificing too much readability, is to pull the regex match into local variables via list:

    protected function _filterStylesheetUri($matches)
    {
        list($full, $quote, $url) = $matches;

        if (preg_match('#^(http|@|data:|/)#Ui', $url)) {
            return $full;
        }

        return sprintf('url(%s%s%1$s)',
            $quote,
            $this->_TmpBaseDir . '/' . $url
        );
    }

from wp-less.

sebastianschmid avatar sebastianschmid commented on July 30, 2024

hmm, I would like to see that plugin having no greater requirements than wordpress, which has php 5.2 afair.
this would only lead to lots of negative reviews, since hosters don't always have the latest and greatest...

from wp-less.

thom4parisot avatar thom4parisot commented on July 30, 2024

Back-reference are available in PHP 5.2 — http://www.php.net/manual/en/regexp.reference.back-references.php

from wp-less.

kkatpki avatar kkatpki commented on July 30, 2024

@oncletom Yes, but it seems that named back-references were not allowed to propagate outside of the pattern until PHP 5.3.

from wp-less.

kkatpki avatar kkatpki commented on July 30, 2024

I've found a Stack Overflow answer that seems to reinforce the above assertion: http://stackoverflow.com/a/5255199

from wp-less.

thom4parisot avatar thom4parisot commented on July 30, 2024

OK well, if it's the only blocking problem for PHP 5.2, I invite you to open a pull request with this change.
Thanks for coining the problem :-)

from wp-less.

sebastianschmid avatar sebastianschmid commented on July 30, 2024

pull request here: #39

from wp-less.

thom4parisot avatar thom4parisot commented on July 30, 2024

I close the issue thanks to #39 and ship that in a new release (because I forgot to do it 2 months ago).

from wp-less.

Related Issues (20)

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.