Git Product home page Git Product logo

Comments (3)

vova07 avatar vova07 commented on May 11, 2024

Hello @ric128 ,

I'm not sure I have an answer for you but if you'll take a look at the extension code you'll find that only used functions are pclose && popen.

Regarding this I'll suggest to check firstly your php.ini file on section disable_functions to ensure non of them are disabled.

This is first and single idea I have right now about your issue.

Hope this will be at least somehow helpful for you.

Good luck!

from yii2-console-runner-extension.

ric128 avatar ric128 commented on May 11, 2024

I will contact the web administrator to verify if those functions are enabled.
Is there any way to get a log of the process sent?
thx vm.

from yii2-console-runner-extension.

vova07 avatar vova07 commented on May 11, 2024

Hello @ric128 ,
You can check it by yourself actually:

if (function_exists('popen')) { 
    echo 'popen is enabled'; 
} else { 
    echo 'popen is disabled'; 
}

if (function_exists('pclose')) { 
    echo 'pclose is enabled'; 
} else { 
    echo 'pclose is disabled'; 
}

from yii2-console-runner-extension.

Related Issues (9)

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.