-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Javascript support #15
Comments
Javascript support (however much there is) is enabled by default. KnProxy's support for JavaScript is very limited though, and basically comes in two forms:
In general I don't recommend KnProxy for JS heavy web applications as they will likely not work. If possible, a pure tunneling proxy is going to be your best option there. |
I have another issue on GZIP pages. That pages responded with gzip not shown correctly. I have a .JS file and server sent with GZIP compression, I`m able to see the JS file with curl --compress command but KnProxy not able to show the JS file. Any idea? |
fix! replace gzinflate to gzdecode on file includes/module_http.php line 344
|
how can I disable URL encryption ? |
The url isn't "encrypted" per se. It's just encoded, mainly to make sure that special characters in the URL all get mapped back to alphanumeric characters so it doesn't break things when used as a query string. The code for it is in https://github.com/jabbany/knProxy/blob/master/includes/module_encoder.php . To disable the encoding, just swap out the |
Hi,
How can I enable Javascript support in your proxy?
The text was updated successfully, but these errors were encountered: