mkdir(): No such file or directoryu
Opened this issue · 0 comments
mscloud commented
I have done the setup to yii2 basic as per the instructions.
When I hit the run button I get the following error on windows 7 xampp system
in C:\xampp\htdocs\basic\vendor\c006\yii2-auto-crud\assets\AppFile.php at line 332
static public function buildPath($path)
{
$path = self::useBackslash($path);
$array = explode('/', $path);
$build = '';
foreach ($array as $item) {
$build .= '/' . $item;
if (!is_dir($build)) {
mkdir($build);
}
}
}
}