Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello all.

    I’ve solved this problem with a little hack on a php file. In my case Draggable could not be found because of a transparent proxy that malforms urls created by PHP.

    I’ m no coder, but I had to make a hack to get wordpress widgets drag
    and drop working on my enviroment.

    At first I thought my blog was broken, maybe by a plugin or upgrade.
    Then, while in vacation at the US , it started working again. When I
    came back drag and drop got messed again and I noticed that it also
    happened with wordpress.com blogs.

    After a lot of searching, backups, reinstalling, #wordpress, etc…

    I’ve found the problem and I was able to fix it (I hope without
    creating further problems)…

    Right now I’ m working in Tunisia, and all Internet traffic pass by a
    transparent proxy that blocks all kind of content considered to be
    inappropriate by the government. We can’ t see the proxy, it’s not
    browser configured, it is at country’s backbone.

    Probably there is a misconfiguration somewhere, and when my browser tries to load interface.js on the url:

    https://www.camelomanco.com/blog/wp-includes/js/jquery/interface.js?ver=1.2

    It gets the 404 error.

    If I try:

    https://www.camelomanco.com/blog/wp-includes/js/jquery/interface.js

    It shows properly the interface.js sourcefile.

    So I make a little editing on script-loader.php, on line 77:

    from:
    $this->add( ‘interface’, ‘/wp-includes/js/jquery/interface.js’,
    array(‘jquery’), ‘1.2’);

    to

    $this->add( ‘interface’, ‘/wp-includes/js/jquery/interface.js’,
    array(‘jquery’), ”);

    The url it loads now is:

    https://www.camelomanco.com/blog/wp-includes/js/jquery/interface.js?ver=6124

    and since the proxy does not block it, I got drag and drop working again.

    Regards,

    Camelo Manco
    https://camelomanco.com

Viewing 1 replies (of 1 total)