CentBrowser Forum
data compression proxy - Printable Version

+- CentBrowser Forum (https://www.centbrowser.net/en)
+-- Forum: Product Related (https://www.centbrowser.net/en/forumdisplay.php?fid=1)
+--- Forum: Bugs & Suggestions (https://www.centbrowser.net/en/forumdisplay.php?fid=4)
+--- Thread: data compression proxy (/showthread.php?tid=57)

Pages: 1 2


data compression proxy - asmadeus08 - 08-15-2015

Data compression proxy doesn't work at all. As data saver too. I have tried it on many sites and nothing. Just sites showing error and doesn't load at all. Can you fix compatibility of your browser with that extensions? Cause on comodo browser and chromodo it's working as many other's too.


RE: data compression proxy - Admin - 08-17-2015

Thanks for your feedback.
It is really a bug.Google's data compression server needs authentication, which is lacked in Chromium.
Already fixed.


RE: data compression proxy - asmadeus08 - 08-27-2015

Thank you very much. Will try it today. Cause i saw that you are released new version. Also time to time extension from adguard.com take huge memory capacity. On youtube time to time take 700mb per tab.


RE: data compression proxy - Admin - 08-27-2015

It is heard that uBlock is a good light-weight ad blocker.


RE: data compression proxy - asmadeus08 - 09-22-2015

(08-27-2015, 07:05 PM)CentBrowser Wrote: It is heard that uBlock is a good light-weight ad blocker.

Sick Nope it's not.


RE: data compression proxy - Admin - 09-22-2015

Does the data compression proxy work in the latest version?


RE: data compression proxy - asmadeus08 - 09-24-2015

Yeah working fine. But how did you do that? Can you tell me please. Cause i wanna tell that to Vivaldi support. They don't know how to fix it.


RE: data compression proxy - Admin - 09-25-2015

Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc

Code:
 std::string GetSpdyProxyAuthValue() {
   return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
    /*
#if defined(SPDY_PROXY_AUTH_VALUE)
   return SPDY_PROXY_AUTH_VALUE;
#else
   return std::string();
#endif
   */
 }
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
 return "44.0.2403.157";
  /*
#if defined(PRODUCT_VERSION)
 return PRODUCT_VERSION;
#else
 return std::string();
#endif
  */
}



RE: data compression proxy - asmadeus08 - 09-27-2015

(09-25-2015, 06:22 AM)CentBrowser Wrote: Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc

Code:
 std::string GetSpdyProxyAuthValue() {
   return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
   /*
#if defined(SPDY_PROXY_AUTH_VALUE)
   return SPDY_PROXY_AUTH_VALUE;
#else
   return std::string();
#endif
  */
 }
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
 return "44.0.2403.157";
 /*
#if defined(PRODUCT_VERSION)
 return PRODUCT_VERSION;
#else
 return std::string();
#endif
 */
}

Can i do it by myself on SlimJet or on Vivaldi qand where is i can find that file and how to compile code? Please can you explain?


RE: data compression proxy - Admin - 09-27-2015

Of course, no, except you compile your own Chromium.
http://dev.chromium.org/developers/how-tos/get-the-code
https://www.chromium.org/developers/how-tos/build-instructions-windows

They should apply these changes to their source code, and release an updated version.