The Big Spring Sale! Up to 50% off!

joomla extension install error

selman.pe
3 Posts
selman.pe posted this 29 December 2022
Report a bug

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?
Vote to pay developers attention to this features or issue.
5 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 29 December 2022

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

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
selman.pe
3 Posts
selman.pe posted this 29 December 2022

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

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
selman.pe
3 Posts
selman.pe posted this 08 January 2023

I couldnt get any solutions for 2 weeks

I couldnt get any solutions for 2 weeks
rachelgomez161999
9 Posts
rachelgomez161999 posted this 09 January 2023

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

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
Support Team
Support Team posted this 09 January 2023

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

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
You must log in or register to leave comments