Skip to content
Advertisement

Yii2 call the console command not from the project folder

Hello. I created the console command in Yii2:

JavaScript

I want to call this command in cron,and for testing I try to call it from the console, when I’m in the project folder:

JavaScript

Everything works fine. But, if I call this command when I’m in a different directory, I get some errors.

First, i got

JavaScript

Seeing this, I commented configuration of gii in the file projectDir/common/config/config-console.php

After that I get an error:

JavaScript

Why is this happening? I call the command with an absolute path, and it works differently when called from different folders!

Advertisement

Answer

You need to use magic constant __DIR__ to build absolute paths. Result of realpath('../../') will depend on path where you run command. You should use

JavaScript

or (probably better):

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement