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
EC0.0.19+LNX: I have created 1 component, 1 module and 2 plugins and the package creation process has always worked fine. Today I wanted to make a package out of these 4 elements and it kept failing in EcrProjectZiper::copyPackageElements @line:703 complaining about not being able to execute: JFile::copy($src, $dest). I noticed in the output that the $scr was holding only the name of the zipped file (successfully created and sitting in default "com_easycreator/data/builds/extensiondir/versiondir/" folder) and not the full path to the file. So i have left the $scr variable as it is and added:
$srcPath = dirname($files[0]->path) . DS . $fName;
and chancged the copy line to:
JFile::copy($srcPath, $dest)
now it works.
maybe this helps to someone.
The text was updated successfully, but these errors were encountered:
EC0.0.19+LNX: I have created 1 component, 1 module and 2 plugins and the package creation process has always worked fine. Today I wanted to make a package out of these 4 elements and it kept failing in EcrProjectZiper::copyPackageElements @line:703 complaining about not being able to execute: JFile::copy($src, $dest). I noticed in the output that the $scr was holding only the name of the zipped file (successfully created and sitting in default "com_easycreator/data/builds/extensiondir/versiondir/" folder) and not the full path to the file. So i have left the $scr variable as it is and added:
$srcPath = dirname($files[0]->path) . DS . $fName;
and chancged the copy line to:
JFile::copy($srcPath, $dest)
now it works.
maybe this helps to someone.
The text was updated successfully, but these errors were encountered: