Athlon1600

Results 75 comments of Athlon1600

Sure. There's this: https://github.com/Athlon1600/php-proxy-plugin-cache but it wouldn't be too difficult to write your own plugin either if you don't want to use redis for cache for example: https://github.com/Athlon1600/php-proxy-plugin-bundle

Making such plugin would be extremely difficult given how much facebook depends on javascript and the fact that it blocks account access from "unfamiliar" IP addresses. Facebook would not by...

on which site? youtube?

post me a link to your site. Whatever site you're "proxying" into has probably started to block your server because you're making too many requests.

I don't understand. Are you saying that when your proxy app is hosted on a non-standard 80 port like: http://myproxy.com:2096/index.php?q=... it stops working? Or that when you try browsing a...

You'd have to make your own custom plugin that does that. Something similar is being done for data-thumb tags on youtube: https://github.com/Athlon1600/php-proxy-plugin-bundle/blob/master/src/YoutubePlugin.php#L33

To which sites does this happen to?

All parts of that site seem to work fine for me. Try it: https://unblockvideos.com/

The issue is with the way we are parsing that forum URL: ```php use Proxy\Http\Request; echo ''; $url = "http://superbestaudiofriends.org/index.php?threads/what-are-you-listening-to-right-now.6/page-254"; var_dump($url); $request = new Request('GET', 'url.com'); $request->setUrl($url); var_dump($request->getUri()); ``` which...

I think the URLs the proxy is trying to proxify are http:// to begin with... if not, then it would help me knowing what site is that to try and...