You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is creating scripts directory inside another scripts directory which makes Zend Server unable to unpack and execute deployment scripts like post_stage.php
This issue is probably caused by pack method of ZpkInvokable where it calls
It is creating scripts directory inside another scripts directory which makes Zend Server unable to unpack and execute deployment scripts like post_stage.php
This issue is probably caused by pack method of ZpkInvokable where it calls
$zpk->addFile($fullPath, $this->fixZipPath($baseDir.$path));
For scripts directory it tries to do
$zpk->addFile($fullPath, $this->fixZipPath('scripts/'.'scripts/post_stage.php'));
The text was updated successfully, but these errors were encountered: