Questions tagged [safari]

47 questions
0
votes
1 answer

Issue with Nginx SSL config 301 http to https

my default server config is : # redirection http://example.org vers https//example.org # server { server_name example.org; return 301 https://example.org$request_uri; } # redirection http ou https www.example.org vers https ou https…
erwin
  • 171
  • 1
  • 1
  • 6
0
votes
1 answer

SSL handshake error for Safari (OS X & iOS), works in all other browsers

I run https://symmetricstrength.com, and I'm having issues with Safari on both OS X and iOS. If I try to connect to the site with Safari, I get a "can't establish secure connection to the server" message. If I check the system log on OS X, all I get…
fimbul
  • 1
  • 2
0
votes
1 answer

Safari v6.0.5 (8536.30.1) behaves different when download same file but different server

Recently I switch from one hosting (A Hosting) to another hosting server (B Hosting). Previously my Mac's Safari using able to download the MP3 by, right click "Download Linked File As.." to save the MP3 to local machine. However, once I switch to…
Shiro
  • 823
  • 8
  • 13
0
votes
0 answers

Safari users unable to connect to website with SSL Certifiacte enabled

We are having issues with our SSL IIS certificate on our site and the ability of Safari browser users being able to access it. Our Web site is hosted on Windows 2008 server with IIS7. Our SSL certificate is issued by Network Solutions and tests…
0
votes
2 answers

User getting default Apache page instead of website - Safari/FF?

I have someone complaining that www.archstl.org (a site I manage) loads fine from his Windows PC, but not on his Mac; and apparently he can't get it anywhere he takes his Mac, either... I've heard of this happening to one other person, but I can't…
geerlingguy
  • 1,357
  • 2
  • 17
  • 28
0
votes
2 answers

Server certificate not accepted in Mac Safari OS

We have an IIS 7 server with a wildcard certificate. This should work find if you test it in any browser: https://www.profcoach.nl But when I try to test this in Safari MaxOS Leopard or Lion it doesn't work, the debugger says: GET…
Roger Far
  • 341
  • 5
  • 17
0
votes
1 answer

HttpBrowserCapabilities flaky after moving to Asp.Net 4.0

After upgrading a site to asp.net 4.0 on IIS6, we discovered that some Safari browsers started having problems---occasionally. I've traced this down to an incorrect browser detection in Asp.net's HttpBrowserCapabilities. It is sometimes detecting…
mikebridge
  • 195
  • 1
  • 2
  • 11
0
votes
1 answer

Could not establish a secure connection to server with safari

Safari tells me that it couldn't open the page, because it couldn't establish a secure connection to the server. However, other browsers (opera, firefox) can open the page. Also, there's nothing in the apache error log. The certificate is…
pharno
  • 3
  • 1
  • 3
0
votes
1 answer

Installing Safari 4 on OS X 10.6.4

Really need the ability (for backwards compatibility's sake ) to run Safar 4 on OS 10.6.4 instead of Safari 5. Would be sick to have both running at the same time. :D SOLVED: Found this website finally. :P http://michelf.com/projects/multi-safari/
bobber205
  • 241
  • 1
  • 6
  • 17
0
votes
0 answers

How do I capture network trace for File downloads in Safari?

I am researching an issue with our enterprise application where Safari appears to take a different name than that sent in Content-Disposition response header. For some. reason the download requests are not captured in Web Inspectors' Network tab. I…
0
votes
1 answer

Redirect HTTPS to HTTP for Safari User-Agents only

Yes, you read that right. I need HTTPS to HTTP for Safari only. Because all links referring to the site anywhere are HTTPS. I have a website that has an SSL certificate, and normally we force redirect all traffic to HTTPS via .htaccess. I've got a…
Fez
  • 1
0
votes
1 answer

Safari cannot open my website

After two years of running a website (https://emocoes.org), today for the first time it does not open on Safari. It opens on other browsers (Firefox, Chrome, Chromium, Opera), but on Safari I see: Safari Can't Open the Page Safari can't open the…
miguelmorin
  • 229
  • 4
  • 13
0
votes
0 answers

How to tell Safari playing video that the video it is playing is not available anymore?

We're running some nginx servers hosting videos (in an educational institution). The files are stored as mp4s on disk and browsers either keep a TCP connection open and read video data as they need, or close the connection and send the next HTTP…
0
votes
0 answers

nginx gzip safari dont work, but chrom work success

first nginx config: gzip on; gzip_comp_level 9; gzip_min_length 256; gzip_disable "msie6"; gzip_buffers 32 4k; gzip_http_version 1.1; gzip_static on; gzip_proxied any; gzip_vary on; gzip_types application/atom+xml #…
0
votes
0 answers

Safari and .htaccess .htpasswd leads to status 401

I have basic .htaccess authentication for my development server like this: AuthName "Developer Demo" AuthType Basic AuthUserFile /path/to/.htpasswd require valid-user It works fine in all browsers but in safari and on iOS devices. After…
bechtold
  • 101
  • 2