-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
Description
With Joomla 6.03, there is a 500 internal error when installing the package.
To correct it, there is to do the following.
In install.attachments.php, replace:
_use Joomla\CMS\Filesystem\Folder;
by:
_use Joomla\Filesystem\Folder;
And in packages/attachments_component.zip/install.attachments.php, replace:
_use Joomla\CMS\Filesystem\File;
_use Joomla\CMS\Filesystem\Folder;
by:
_use Joomla\Filesystem\File;
_use Joomla\Filesystem\Folder;
By doing so in the package zip, I was able to install the package correctly.
Reactions are currently unavailable