• I have both plugins installed — WP-Filebase and Inline Upload.

    I’ve created post with following code:
    [inline_upload filebaselink=true]

    It works fine, files are uploading without any problems.
    But I dont see any integration with WP-Filebase.
    Files uploaded with Inline Upload are not being displayed in WP-Filebase.
    Please advice.

    And is it possible to add password protection to Inline Upload?
    I mean asking user to enter pass before uploading file…

    http://wordpress.org/extend/plugins/inline-upload/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,
    I got the same issue

    after some search, the problem seems to come from the plugin file http_request.js

    The xmlhttp.open function does not contain the right url

    But even by editing it the problem stay the same

    Thread Starter daftbart

    (@daftbart)

    I also still have no idea…

    try this :

    go to wp-content/plugins/inline-upload/include/ and edit http_request.js

    original :

    xmlhttp.open("GET", "http://nanopolytox-test.glonatech.com/wp-admin/tools.php?page=wpfilebase&action=sync&hash_sync=1",false);
    
    xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState==4) {
    alert(xmlhttp.responseText) }
    }
    xmlhttp.send(null);
    }

    changed :

    xmlhttp.open("GET", "http://www.mywebsite.fr/wp-admin/tools.php?page=wpfilebase&action=sync&hash_sync=1",false);
    
    xmlhttp.onreadystatechange=function() {
    if (xmlhttp.readyState!=4) {
    alert(xmlhttp.responseText) }
    }
    xmlhttp.send(null);
    }
    tristang4

    (@tristang4)

    Looks like the code was updated since this thread was posted. My version of http_request.js looks much different than yours. Anyway, I was having the same problem. What I did was just change upload directory to same directory as filebase directory and it will add the files manually when it does a cron job every hour or so. Not the perfect solution but it works.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: Inline Upload] Integration with WP-Filebase problem’ is closed to new replies.