Viewing 1 replies (of 1 total)
  • I also encountered the same issue. The problem is with the following two lines in sheet-music-library/admin/post-meta.php:

    wp_enqueue_script( 'sheet-music-admin', plugins_url( '/admin/sheet-music-admin.js', __FILE__), '', '', true );
    wp_enqueue_style( 'sheet-music-admin', plugins_url( '/admin/sheet-music-admin.css', __FILE__) );

    Both links happen to translate into something like this: http://music.library/wp-content/plugins/sheet-music-library/admin/admin/sheet-music-admin.css?ver=4.3.1

    As you can see “admin” is there twice in the link. If you delete admin from the code, then both the javascript and css files will load correctly and no longer through a 404 not found error.

    However, when that is fixed, you will see that there is a javascript error like below:

    Uncaught TypeError: Cannot read property 'select' of undefined

    It would be great if this could be fixed so that the plugin is usable.

Viewing 1 replies (of 1 total)
  • The topic ‘Can't upload files’ is closed to new replies.