Recent content by Tracy Perry

  1. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Latest version of OLS BETA (in HTTP mode - I dumped SSL) and it still seems to be doing fine. I was getting some core dumps. Next one I get I'll ship it.
  2. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    OK.... @lsmichael, I've just set the site back up on OLS 1.4.6 and I cannot connect using FireFox 37.0.1 from my Mac. Chrome and Safari hit just fine. It looks like the Windows version is working now (I'm going to keep OLS online for a bit, so you can check here with it to see if it works for...
  3. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Yamaha FRJ1300 sport touring motorcycle. What's left - other than the bearings and R&R of forks - is easy. Just a little time consuming. I tried trouble shooting as much as I could, and the issue was pretty much prevalent in Chrome - which leads me to believe it still remains an HTTP/2 issue...
  4. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Not yet... never got around to setting up the test bed, and right now am fairly busy with a migration for a local Dr's office to a new EMR software and then doing my pre-riding season maintenance on the FJR (all I have left is the steering head bearing replacement, R&R the front forks, replace...
  5. Tracy Perry

    compile error with http2

    I didn't do a compile of openSSL, just used the repository .deb install and using that ./configure it worked fine on mine. So, that implies that something in the compile of openssl that you did is missing.
  6. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Yeah... now for some reason with 1.4.5 and using memcached and Zend OPCache and BDCache I get display problems with one of my add-ons. I'm going to keep playing with it, but for day to day use I've had to switch back to nginx. My users (what few there are) were complaining and I don't want to...
  7. Tracy Perry

    Prevent hotlinking from unauthorized domains

    Well, I've been battling this for a bit, and had gone back to nginx because I had some sites hotlinking stuff that they had not asked permission to do. With nginx, I was able to give them a nice litte replacement graphic instead of what they thought they were getting. :whistle: To stop...
  8. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    I've gotten the rewrites to work.. and everything works fine in Safari (on my Mac), but when I try to hit my site with Chrome, I get the ERR_SPDY_PROTOCOL_ERROR error shown. No matter what I do. Firefox won't even show an error. I've got SPDY/2, SPDY3 & HTTP/2 enabled. Needless to say, since...
  9. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Nope, they were ones that were working.
  10. Tracy Perry

    1.4.4 OLS vs FireFox 35.0/35.01

    Have had to go back to nginx temporarily since I've had a serious problem with a site hotlinking images and hogging bandwidth and never could get hotlink prohibition to work on OLS like with nginx. Then when I upgraded to OLS 1.4.5 it down doesn't honor the FURL's that did work with OLS prior...
  11. Tracy Perry

    Server Setup Guide Part 3 (CentOS, OpenLiteSpeed, Percona) (With Pictures!).

    The middle one should be the closing for the IfModule (hadn't had my tea yet). So it would be remove the </IfModule>
  12. Tracy Perry

    Server Setup Guide Part 3 (CentOS, OpenLiteSpeed, Percona) (With Pictures!).

    Real simple.. remove the <IfModule mod_rewrite.c> RewriteEngine On the <IfModule> and the ErrorDocument 401 default ErrorDocument 403 default ErrorDocument 404 default ErrorDocument 500 default from the control panel where you set the rewrites for that vhost. Then restart OLS. Those are not...
  13. Tracy Perry

    Prevent hotlinking

    OK... to answer my own question... this works where the above would not RewriteRule ^(.*)$ https://twowheeldemon.com%{REQUEST_URI} [R,L] RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !twowheeldemon.com [NC] RewriteRule \.(gif|jpg|png)$ /images/hotlink-warning.jpg [R,NC]
  14. Tracy Perry

    Redirect http to https

    This works for me RewriteCond %{HTTP_HOST} ^twowheeldemons.com$ [NC] RewriteRule ^(.*)$ https://twowheeldemon.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.twowheeldemon.com$ [NC] RewriteRule ^(.*)$ https://twowheeldemon.com/$1 [R=301,L] RewriteCond %{HTTPS} !on RewriteRule ^(.*)$...
  15. Tracy Perry

    Prevent hotlinking

    As the title says, how do you enable hotlink protection and redirect the requests to another image. I have it working with no problems on nginx, but OLS is another matter - and I need it as I've got some leeches steeling images (and bandwidth) from the site as they just use my images in their...
Top