Git Product home page Git Product logo

Comments (3)

domsie avatar domsie commented on July 26, 2024

one problem is when the website loads scripts "on other ways" than the ProxifyPlugin.php wants to replace the sources for relative urls via certain regex expressions:

e.g.: chip.de loads some scripts so: [www.chip.de/Downloads_13649224.html]

<script type="text/javascript" src="/js/_merged/efws.js?t=48766"></script>
<script type="text/javascript">
EFWS.Script.loadScripts([
'/js/_merged/jQuery.js?t=61946',
'/js/_merged/jQueryUI.js?t=60289',
'/js/_merged/global.js?t=64771',
'/js/_merged/navseiten.js?t=60257'], '');
</script>

from php-proxy.

domsie avatar domsie commented on July 26, 2024

made following changes at proxifyplugin.php to set the url path from relativ to absolute within ajax calls:

` $request_uri = $this->base_url;
$tmp = parse_url($this->base_url);
$base_host = $tmp['scheme'].'://'.$tmp['host'];
if (substr($base_host, -1) !== '/') {
$base_host = $base_host.'/';
}
$base_host_unencoded = $base_host;

    $jquery  = '<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous" type="text/javascript"></script>';
    $jquery .= '<script type="text/javascript">';
    $jquery .= 'var jQuery_atp = jQuery.noConflict(true);';
    $jquery .= '(function ($) {';
    $jquery .= 'var baseHref = $("head base").attr("href");';
    $jquery .= '$.ajaxSetup({';
    $jquery .= 'beforeSend: function(xhr, options) {';
    $jquery .= 'options.url = baseHref + options.url;';
    $jquery .= '}';
    $jquery .= '});';
    $jquery .= '}(jQuery_atp));';
    $jquery .= '</script>';

    $str = str_replace('</title>','</title><base href="'.$base_host_unencoded.'" />'.$jquery,$str);
    $response->setContent($str);` 

from php-proxy.

Athlon1600 avatar Athlon1600 commented on July 26, 2024

So is everything okay from your side now? Because I don't see any errors myself when I visit bild.de apart from those created by "EFWS.Script.loadScripts(["

from php-proxy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.