I tried many times to install extension to joomla but every time I get same errors. I use fresh version of nicepage extension. can you help me?
I tried many times to install extension to joomla but every time I get same errors. I use fresh version of nicepage extension. can you help me?
Hello,
According to the screenshot, the component is successfully installed.
Do you see the Nicepage menu on the Joomla bar?
...................................................
Sincerely,
Olivia
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp
I see the nicepage menu but when I press new page, I get an error which is attached.
You absolutely know better than me but I understand form the screenshot, circle means needs reinstall. and tick is done without problem. this is my opinion.
thanks in advance
This occurs when Joomla! fails to copy a file / folder from the tmp folder to it's destination. It is, most likely, generated by the fact that there are not enough write permissions set up for the destination folder. To fix this, simply make sure that there are enough permissions set for the destination folder.
An error has occured -1 copy file failed
In Joomla! 3.x:
edit the libraries/src/Filesystem/Folder.php file
look for the following code (around lines 155-159):
if (!@copy($sfid, $dfid))
{
throw new \RuntimeException('Copy file failed', -1);
}
and replace it with this one:
if (!@copy($sfid, $dfid))
{
throw new \RuntimeException('Copy file failed '.$sfid.' => '.$dfid, -1);
}
The code above will improve how the error message is displayed by adding the source and destination folders to it. This way, you will be able to know exactly which folders do not have enough permissions set.
Regards,
Rachel Gomez
Rachel,
Thank you for your input, we have forwarded your case to the dev.
...................................................
Sincerely,
Alan R.
Nicepage Support Team
Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp