Just want to ask if is it good idea to run cloud flare with yetishare , does it have any effect specially on external servers ? or is it good to use ?
I have one problem, Wich cloudFlare, remote upload not workingadam said:It's fine 99% of the time, our demo sites are running with it. I've seen there be issues with Cloudflare in rare cases with the upload speed. Some YS users have said it goes slower and disabling CloudFlare fixes it. I've not seen it myself but that's the only thing to be aware of.
I guess there is an option to allow connection remotely , try to google about it of i anyone here can helpgabrieldiazbernal4711 said:I have one problem, Wich cloudFlare, remote upload not workingadam said:It's fine 99% of the time, our demo sites are running with it. I've seen there be issues with Cloudflare in rare cases with the upload speed. Some YS users have said it goes slower and disabling CloudFlare fixes it. I've not seen it myself but that's the only thing to be aware of.
There is a module on nginx that makes nginx look first for a .gz file. You can keep a compressed copy of all js and css on your website. Using the deflate from apache will make apache compress every file over and over again in every request.paypal1352 said:ive given up on cloud flare, my website would randomly be offline for a minute or so in the last few hours, this isnt going to impress uploaders/downloaders
what sucks is the my main page is about 1.4mb to load fully, i'm not sure if thats the ys script or all the mods ive done, hopefully 4.3 is a bit lighter
also i noticed the whole sites headers call no-cache etc... is there a reason for that, and is ys gzip friendly,
i used to have this in my htaccess
<IfModule mod_deflate.c>
# Compress HTML, CSS, JavaScript, Text, XML and fonts
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE application/x-font
AddOutputFilterByType DEFLATE application/x-font-opentype
AddOutputFilterByType DEFLATE application/x-font-otf
AddOutputFilterByType DEFLATE application/x-font-truetype
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE font/opentype
AddOutputFilterByType DEFLATE font/otf
AddOutputFilterByType DEFLATE font/ttf
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/xml
# Remove browser bugs (only needed for really old browsers)
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
</IfModule>
but removed it later on because i'm not sure if there was any negative effects, i may re-add it again and test, it definitely speeds up page loading