Home Forums WoodMart support forum Woodmart can not reinstall

Woodmart can not reinstall

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #264207

    sumi
    Participant

    An 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?

    #264257

    Hello,

    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

    #264339

    sumi
    Participant

    Thank 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.
    Sumi

    Attachments:
    You must be logged in to view attached files.
    #264455

    Hello,

    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

    #264909

    sumi
    Participant

    After 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.

    #264974

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)