• Resolved larisashev

    (@larisashev)


    Hi again ??
    Greg, i also have a problem with the images adding – they don’t add in general.
    Help me, please, to fix it.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi, it seems the PLUpload library does not like the non-ASCII URLs, you can try to workaround it by adding the code below in your theme functions.php

    
    add_filter( "admin_url", "my_admin_url", 10, 3 );
    function my_admin_url( $url, $path, $blog_id ) {
        if( $path == "admin-ajax.php" ) {
            return "/wp-admin/admin-ajax.php";
        } else {
            return $url;
        }
    }
    

    After adding the code refresh the page and try uploading file again.

    Thread Starter larisashev

    (@larisashev)

    now it works! thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Gallery doesn’t work’ is closed to new replies.