Reputation: 175
I am trying to use the exec command in centos:
exec(Yii::getPathOfAlias('application').'\yiic SendNow '.$sendID);
this does not work in centos but this work in windows
Upvotes: 2
Views: 512
Reputation: 17598
Windows paths use a backslash separator; unix paths use a forward slash.
Upvotes: 2