Home › Forums › WoodMart support forum › Woodmart can not reinstall
Woodmart can not reinstall
- This topic has 5 replies, 2 voices, and was last updated 3 years, 10 months ago by Elise Noromit.
-
AuthorPosts
-
February 5, 2021 at 12:46 pm #264207
sumiParticipantAn error occurred same as below topic.
https://xtemos.com/forums/topic/woodmart-did-not-update/I deactivated the theme, removed it, and tried reinstall it.
But system says to “Failed to write file to disk.”
Could you check FTP?February 5, 2021 at 3:52 pm #264257
Elise NoromitMemberHello,
Thank you very much for choosing our theme and for contacting us.
Please contact your host support to set the proper rights, show them the screen of the message, or confirm I will try to upload via FTP.
Best Regards
February 6, 2021 at 12:19 am #264339
sumiParticipantThank you for your quick reply.
I already contacted host support.
Host support says to me as below.“Please use the WordPress forum etc.
Please check by yourself.”I tried uploading by FTP, but some files could not be uploaded due to an error.
It would be helpful if you could check ftp.I am making sentences using Google Translate.
I apologize for any strange text.Thank you.
SumiAttachments:
You must be logged in to view attached files.February 6, 2021 at 6:11 pm #264455
Elise NoromitMemberHello,
I have uploaded the theme via FTP however nothing works because it is not possible to install any plugins PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature – I see this when I try to install Woocommerce.
Please show this message to the host support, perhaps the host has been configured incorrectly or you could install WordPress incorrectly. Try to upload any other theme.
Alternatively, you can upload all the necessary plugins via FTP and it would work.
Best Regards
February 9, 2021 at 1:27 am #264909
sumiParticipantAfter interacting with the server host, it works fine in the following ways:
(1) Create a cgi file with the following script and upload it to cgi-bin /,
Change to attribute 700 and access the file.<Script to get tmp file list>
#!/usr/local/bin/perl
main:{
print “Content-type:text/html¥n¥n”;
print “<HTML>¥n”;
opendir(DIR, “/tmp”) || die;
while( $file = readdir(DIR) ){
if( -o “/tmp/${file}” ){
print “OK /tmp/${file}<br />¥n”;
}
}
print “</HTML>¥n”;
}(2) When the list of temporary files is displayed on the screen, use the following script.
Create a cgi file, upload it to cgi-bin /, change the attribute to 700, and then
Access the file.<Script for deleting tmp files>
#!/usr/local/bin/perl
main:{
print “Content-type:text/html¥n¥n”;
print “<HTML>¥n”;opendir(DIR, “/tmp”) || die;
while( $file = readdir(DIR) ){
if( -o “/tmp/${file}” ){
print “OK /tmp/${file}¥n” if(unlink “/tmp/${file}”);
}
}
print “</HTML>¥n”;
}(3) If you access the file in (1) again and nothing is displayed on the screen,
Deletion of temporary files is complete.* When creating with Windows Notepad, use utf-8 as the character code.
Please do not select, error 500 will occur.I am also grateful for your advice.
Thank you.February 9, 2021 at 9:31 am #264974
Elise NoromitMemberYou are welcome! If you have any questions please feel free to contact us.
Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register