Despite full web support, by default my browser goes to mobile web pages

for example, mlb.com. it sends me straight to the scaled down mobile web page for MLB.com.
Is there a way to prevent this?

That website, like Apple does on theirs, is keying off the word "iPhone" in the Safari web browser User Agent header.
They're obviously worried about the amount of data and the user experience, but you should write them and ask for a link that won't drop into the small version.
Or it's possible that there's a free web proxy out there that strips that header (or allows you to pretend to be IE or Firefox or something). Search on "web proxy service".
Touchscreen laptop   Other OS  

Similar Messages

  • TS1398 my problem is my iphone 4s is connected to the internet(wi-fi) with full signal strength but freezes when browsing and says "Cannot Open Page, Safari could not open page because the server stopped responding".

    my problem is my iphone 4s is connected to wi-fi with full signal(3 bars) strength but freezes when browsing and says
    "Cannot Open Page"
    "Safari could not open page because the server stopped responding"
    I already reset the iphone to its factory settings and erase all contents but still the browsing speed freezes or not searching at all. Sometimes it will work and fast but then the problem uccors every now and then. Iv'e been using iphone 4 for two years and I still have it and works fine compared to this IPHONE 4S.

    Settings → scroll down to Safari → in Safari settings, I selected both Clear History and Clear Cookies and Data.
    IF that does not work -
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    Finally - if problem still present -
    Go to Settings>General>Reset
         Reset the network settings - you will need to add the password of your home WiFi in your phone once more
    The device should turn itself off & back on then go into Settings>Wifi and join your network

  • Browser goes blank before displaying page

              Ideas welcomed on this issue.
              I have an MVC style application that on a request does some business stuff in
              the servlet and then forwards to some JSPs to paint the output.
              The problem is that once the JSPs start being processed the browser gets the first
              bit of response and goes blank - then the page content will be drawn quarter/half
              a second later. This is quite annoying for the users.
              Anyone had a similar issue who could share some thoughts on this???
              

    The problem is that once the JSPs start being processed the browser gets          the first
              > bit of response and goes blank - then the page content will be drawn
              quarter/half
              > a second later. This is quite annoying for the users.
              That's because the browser starts to receive a response.
              If you don't like that behavior, make sure that not even the header gets
              committed ... increase the size of the buffer on the response, for example.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com/coherence.jsp
              Tangosol Coherence: Clustered Replicated Cache for Weblogic
              "Gary" <[email protected]> wrote in message
              news:[email protected]..
              >
              

  • Crystal Web Viewer executing stored procedure when going to next/prev page

    We are using VS.NET 2005 with SP1 to design reports and embed them in an aspnet web app. Some of them take a while to run, even in the designer. In the designer, however, next page and print operations are speedy. In the web viewer, next page and print operations are agonizingly slow.
    Viewing page 2 of a report seems to take about as long as viewing page
    1. After running SQL Profiler to trace the report, it is apparent that the entire report (Stored Procedure Call) is being re-run and just page 2 is being sent to the browser.
    Is this right?
    Shouldn't the report document be stored on the server or event the client so that the desired page can be loaded without having to hit the database again??
    We are using Business Objects Crystal Reports XI Release 2
    Do you have a sample code on this issue.

    It still did not work.  As you see my code has the Not Page.IsPostBack.  It still goes to the database to run the stored procedure over and over again.
    Do an example with more than 100 records to have multiple pages.  After you go to page #2, change your data by updating one of your fields that will not fit the criteria you are looking for.  In this example I changed the strPeriod from 1 to 2 and it gives you a blank report.
    update PeriodTable
    set fieldPeriod = 2
    < h3>Here is the code:</h3>
    Imports System.Xml
    Imports System.data
    Imports System.IO
    Imports System.Text
    Imports System.Configuration
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Partial Public Class viewreport
        Inherits System.Web.UI.Page
        Private _dsContacts As DataSet
        Dim strUser, strReport, strPeriod, strRegionType, strRegion, strDate, strUnit As String
        Private Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
            Try
                If Not Page.IsPostBack Then
                    If Not Page.User.Identity.IsAuthenticated Then
                        Response.Redirect("default.aspx")
                    End If
                    strUser = Request.QueryString("strUser")
                    strReport = Request.QueryString("strReport")
                    strPeriod = Request.QueryString("strPeriod")
                    strRegionType = Request.QueryString("strRegionType")
                    strRegion = Request.QueryString("strRegion")
                    strDate = Request.QueryString("strDate")
                    strUnit = Request.QueryString("strUnit")
                    If strUser <> "" And strReport <> "" Then
                        ConfigureCrystalReports()
                    Else
                        lblMessage.Text = "Values for the report where not received properly.<br /><br />" & strReport & "<br /><br />Please contact your Commissions Reporting Administrator<br /><br />"
                    End If
                End If
            Catch ex As Exception
                ErrorRoutine(ex, "Page_Load")
            End Try
        End Sub
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            GlobalCode.DisplayTitle("MetLife - Commissions Administration - Report Viewer", Page)
        End Sub
        Private Sub ConfigureCrystalReports()
            Try
                Dim i, j As Integer
                Dim ParameterValue As String
                _dsContacts = Nothing
                _dsContacts = New DataSet
                _dsContacts.ReadXml(Server.MapPath("XML\ReportFiles.xml"))
                For i = 0 To _dsContacts.Tables(0).Rows.Count - 1
                    If Trim(UCase(_dsContacts.Tables(0).Rows(i)("FileName").ToString)) = Trim(UCase(strReport)) Then
                        Dim conn As ConnectionInfo = New ConnectionInfo()
                        Dim reportPath As String = Server.MapPath("Reports/" & _dsContacts.Tables(0).Rows(i)("FileName").ToString)
                        If Not File.Exists(reportPath) Then
                            lblMessage.Text = "Report does not exists in our servers.<br /><br />" & reportPath & "<br /><br />Please contact your Commissions Reporting Administrator<br /><br />"
                            Exit Sub
                        End If
                        conn.DatabaseName = _dsContacts.Tables(0).Rows(i)("Database").ToString
                        conn.UserID = _dsContacts.Tables(0).Rows(i)("UserID").ToString
                        conn.Password = _dsContacts.Tables(0).Rows(i)("Password").ToString
                        Dim ConnInfo As New ConnectionInfo
                        With ConnInfo
                            .DatabaseName = _dsContacts.Tables(0).Rows(i)("Database").ToString
                            .UserID = _dsContacts.Tables(0).Rows(i)("UserID").ToString
                            .Password = _dsContacts.Tables(0).Rows(i)("Password").ToString
                        End With
                        ParameterValue = ""
                        CRViewer.ReportSource = reportPath
                        CRViewer.ParameterFieldInfo.Clear()
                        Dim ParamFields As ParameterFields = CRViewer.ParameterFieldInfo
                        Dim reportSeparation As New ReportDocument()
                        reportSeparation.Load(reportPath)
                        For j = 0 To reportSeparation.ParameterFields.Count - 1
                            Dim param As New ParameterField
                            param.Name = reportSeparation.ParameterFields.Item(j).Name
                            Select Case param.Name
                                Case "VRPTTYPE"
                                    ParameterValue = strRegionType
                                Case "VPARAM"
                                    ParameterValue = strRegion
                                Case "VUSER"
                                    ParameterValue = strUser
                                Case "VDATE"
                                    ParameterValue = strDate
                                Case "VUNIT"
                                    ParameterValue = strUnit
                                Case "VPERIOD"
                                    ParameterValue = strPeriod
                                Case Else
                                    lblMessage.Text = "<h1>Report has parameters not expected.</h1><br /><br /><h2>" & reportPath & "</h2><br /><br />Please contact your Commissions Reporting Administrator<br /><br />"
                                    Exit Sub
                            End Select
                            Dim param_Value As New ParameterDiscreteValue
                            param_Value.Value = ParameterValue
                            param.CurrentValues.Add(param_Value)
                            ParamFields.Add(param)
                        Next '
                        For Each cnInfo As TableLogOnInfo In CRViewer.LogOnInfo
                            cnInfo.ConnectionInfo = ConnInfo
                        Next
                        CRViewer.DataBind()
                        Exit Sub
                    End If
                Next
            Catch ex As Exception
                ErrorRoutine(ex, "ConfigureCrystalReports")
            End Try
        End Sub
        Public Sub ErrorRoutine(ByVal ex As Exception, ByVal Routine As String)
            GlobalCode.ErrorRoutine(ex, Routine, Master)
        End Sub
    End Class

  • Diff. between Mobile Web And Dev. Web Client

    Hi,
    I have been trying to find the difference between Siebel Mobile Web Client and Siebel Developer Web Client for quiet some time now. As per my understanding below is the difference between the two:
    Siebel Mobile Web Client uses the Locally stored siebel executable and it accesses the locally stored dbf. However with the Siebel Developer Web Client (also uses the same executable as Mobile web client) you can connect to the server database.
    By default when you launch the Siebel Mobile Web Client you get to choose from Sample and Local dbf. But with the Siebel Developer Web Client you get to choose from Sample, Local and the Server.
    Please let me know if my understanding is correct and of anyother differences if anybody is aware off.
    Thank you :-)
    Edited by: user10788122 on 3/08/2010 23:57

    Re: Siebel developer web client

  • Mobile Web Server: suggestions

    Say you want to remote-start your cellphone webserver. What do you do? Well, first you have to log in on the "Mobile web Server" webpage, and then click on the "Start the server here" link.
    This is very much bending over backwards. Why not provide a "start server" link on the offline page, asking for login data? It is very likely that the only bookmark you'll have is to your own mobile website, not to the "Mobile web server" homepage as well. This way, if your server is not online, you'll end up on your offline page. From there you'll have to surf over to the "Mobile web Server" homepage, log in, and then finally find the "start server link." Very unintuitive! Very cumbersome.
    Please put a "start server" link on the offline page!
    Thanks.

    Your feedback will most likely not be noticed by the relevant people here.
    A better place to leave it is on the mobile web servers forum:
    http://betalabs.nokia.com/forums/mobile-web-server

  • How can I have links within emails read with Seamonkey open on the default Firefox browser and not the Seamonkey browser?

    I use the SeaMonkey 2.0 mailer for my email client and Firefox 3.6 for my default browser. A link embedded in an email (read with SeaMonkey) opens the SeaMonkey browser and not Firefox. How can I have it open on Firefox?
    (SeaMonkey is not set up as the default browser and Firefox is.)

    See here
    *https://support.mozilla.org/en-US/kb/how-make-web-links-open-firefox-default

  • Office Web Apps Server Default language.

    we are using Office Web Apps Server 2013 SP1 with SharePoint 2013 SP1. All servers use English UK regional settings, all SharePoint Sites use English UK as default regional setting.
    When we create a new document using Word Web App, the default proofing language defaults to En-US.
    How can i configure the office web apps or SharePoint to use English-UK as default.
    talwar

    Hi talwar,
    As I tested in my environment, I couldn’t set default proofing language in Office Web App. And I found a similar case:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/03a6ed63-50d0-48c0-a0d2-89ed36b117b0/set-default-proofing-language-for-office-web-apps-2013?forum=sharepointadmin 
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Help I can't open files as I don't know what browser I need to open them as I've already experienced problems when I used the default Mozilla browser?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I have no idea what browser I should be using to open files in Firefox, i used the default Mozilla browser initially which caused me a lot of problems so I stopped using it but don't know the alternatives, could someone help please as I can't open any files at all now.
    == This happened
    ==
    Every time Firefox opened
    == As soon as I stopped using the Mozilla default browser
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name
    Firefox
    Version
    3.6
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Microsoft .NET Framework Assistant
    1.1
    true
    {20a82645-c095-46ed-80e3-08825760534b}
    Google Toolbar for Firefox
    7.0.20100326W
    true
    {3112ca9c-de6d-4884-a869-9855de68056c}
    Norton IPS
    2.0
    true
    Norton Toolbar
    4.6
    true
    {2D3F3651-74B9-4795-BDEC-6DA2F431CB62}
    Java Quick Starter
    1.0
    true
    [email protected]
    Java Console
    6.0.20
    true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar
    0
    browser.fixup.alternate.enabled
    false
    browser.history_expire_days.mirror
    180
    browser.places.importBookmarksHTML
    false
    browser.places.importDefaults
    false
    browser.places.leftPaneFolderId
    -1
    browser.places.migratePostDataAnnotations
    false
    browser.places.smartBookmarksVersion
    2
    browser.places.updateRecentTagsUri
    false
    browser.startup.homepage_override.mstone
    rv:1.9.2
    extensions.lastAppVersion
    3.6
    general.useragent.extra.microsoftdotnet
    (.NET CLR 2.0.50727)
    network.cookie.prefsMigrated
    true
    places.last_vacuum
    1270458866
    print.print_printer
    Canon iP1600
    print.printer_Canon_iP1600.print_bgcolor
    false
    print.printer_Canon_iP1600.print_bgimages
    false
    print.printer_Canon_iP1600.print_command
    print.printer_Canon_iP1600.print_downloadfonts
    false
    print.printer_Canon_iP1600.print_edge_bottom
    0
    print.printer_Canon_iP1600.print_edge_left
    0
    print.printer_Canon_iP1600.print_edge_right
    0
    print.printer_Canon_iP1600.print_edge_top
    0
    print.printer_Canon_iP1600.print_evenpages
    true
    print.printer_Canon_iP1600.print_footercenter
    print.printer_Canon_iP1600.print_footerleft
    &PT
    print.printer_Canon_iP1600.print_footerright
    &D
    print.printer_Canon_iP1600.print_headercenter
    print.printer_Canon_iP1600.print_headerleft
    &T
    print.printer_Canon_iP1600.print_headerright
    &U
    print.printer_Canon_iP1600.print_in_color
    true
    print.printer_Canon_iP1600.print_margin_bottom
    0.5
    print.printer_Canon_iP1600.print_margin_left
    0.5
    print.printer_Canon_iP1600.print_margin_right
    0.5
    print.printer_Canon_iP1600.print_margin_top
    0.5
    print.printer_Canon_iP1600.print_oddpages
    true
    print.printer_Canon_iP1600.print_orientation
    0
    print.printer_Canon_iP1600.print_pagedelay
    500
    print.printer_Canon_iP1600.print_paper_data
    9
    print.printer_Canon_iP1600.print_paper_height
    11.00
    print.printer_Canon_iP1600.print_paper_size_type
    0
    print.printer_Canon_iP1600.print_paper_size_unit
    1
    print.printer_Canon_iP1600.print_paper_width
    8.50
    print.printer_Canon_iP1600.print_reversed
    false
    print.printer_Canon_iP1600.print_scaling
    1.00
    print.printer_Canon_iP1600.print_shrink_to_fit
    true
    print.printer_Canon_iP1600.print_to_file
    false
    print.printer_Canon_iP1600.print_unwriteable_margin_bottom
    0
    print.printer_Canon_iP1600.print_unwriteable_margin_left
    0
    print.printer_Canon_iP1600.print_unwriteable_margin_right
    0
    print.printer_Canon_iP1600.print_unwriteable_margin_top
    0
    privacy.sanitize.migrateFx3Prefs
    true
    security.warn_viewing_mixed.show_once
    false
    == Firefox version
    ==
    3.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2) Gecko/20100115 Firefox/3.6 GTB7.0 (.NET CLR 2.0.50727)
    == Plugins installed
    ==
    *-Zylom Plugin
    *Coupons, Inc. Coupon Printer DLL
    *Default Plug-in
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Shockwave Flash 10.0 r45
    *3.0.50106.0
    *Google Updater pluginhttp://pack.google.com/
    *6.0.12.1483
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *RealJukebox Netscape Plugin
    *RealArcade_NPAPI_Plugin
    *Google Update
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Ignore this question, I've now solved it.

  • How can I use today's date as default value in query string filter web part in SharePoint

    I have a query string filter on my web part page. I am trying to figure out how I can set it's default value to Today? I can't find anything online...

    Hi,
    Per my understanding, you might want to set a default value to the Query String Filter Web Part.
    It would not be able to set default value to the Query String Filter Web Part with the OOTB features available.
    By default, with a Query String Filter Web Part in the current page, we can filter other web part in the same page by adding parameters and values in the address bar
    of browser.
    If setting the “Query String Parameter Name” of a Query String Filter Web Part as “t”, then we can filter the corresponding connected web part by inputting such an
    URL into the address bar:
    http://sharepoint/SitePages/Page1.aspx?t=value1
    Suppose you want to filter the list view with a value dynamically when user opens this page, as a workaround, we can generate an URL with the parameters needed when
    page loaded, then redirect user to this URL afterwards. This can be achieved using JavaScript.
    About how to redirect user to other page with an URL:
    http://www.tizag.com/javascriptT/javascriptredirect.php
    How to get today’s date using JavaScript:
    http://www.w3schools.com/js/js_dates.asp
    Best regards      
    Patrick Liang
    TechNet Community Support

  • IdM doesn't support non-default port on mysql 4.1 as repository??

    Hi
    IdM doesn't support non-default port on mysql 4.1 as repository??
    IdM version is 6.0.
    I setup mysql 4.1 using non-default port 3307.
    (default port is 3306)
    During setup wizard,
    the URL [jdbc:mysql://localhost:3307/waveset] doesn't work.
    I am getting following error.
    com.waveset.util.InternalError:
         ==> com.waveset.util.ConfigurationError:
         ==> com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception:
    Of cource,
    the URL [jdbc:mysql://localhost/waveset] works well
    when I setup mysql using default port.

    Hi,
    it does work with non standard ports but whatever port you specify it will always try to connect to the default port before actually changing the repo setting.
    Therefore use the switches -n -o $WSHOME/WEB-INF/ServerRepository.xml to write the new configuration without performing the broken checks.
    Regards,
    Patrick

  • Some Unicode does not display despite proper font support

    I am having trouble figuring out why certain pages do not display Unicode blocks I know I have fonts for. For example, I have fonts for Imperial Aramaic (Quivira and 2 others), and two for Linear B Ideograms (Aegean, Code2001). I have verified this via the excellent BabelMap application, which will show you which fonts installed support which Unicode blocks. If I go into the preferences and make the default font Quivira, the Imperial Aramaic characters get displayed, but not the Linear B ones. And vice versa if I pick Aegean as the font. I would expect FFox to figure it out and work out any font that could support the Unicode block. Here are 2 test pages:
    http://www.alanwood.net/unicode/imperial-aramaic.html
    http://www.alanwood.net/unicode/linear_b_ideograms.html

    Did you try to select a common font like Verdana or Arial as the default font?
    That should make Firefox automatically use the right font if the currently selected font don't have the glyphs.
    You may also have to enable fonts for web pages.
    *Tools > Options > Content Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • SSL certificate unconfigured, but web server still defaults to https

    Hi all,
    I set up my web page as indicated in the Lion Server: Advanced Administration manual (Server/Web/Data/Sites/Default). I originally had a self-certified ssl certificate set up for all services, and the web server defaulted to port 443 with the following page:
    Index of /
    Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8r DAV/2 PHP/5.3.6 with Suhosin-Patch Server at *****.com Port 443
    I removed the ssl certificate, but it keeps going to the same page. I have  default.html and index.html files in the directory, and I figure at least one of those should. Any suggestions?

    Camelot,
    Thanks for the reply. I'm not offended by your suggestion that it's something simple that I've overlooked, rather I'm hoping that it is.
    I have selected the certificate on the appropriate site on the web panel. When you visit the site link In my original message, you'll see that the correct certificate is being served, but it appears as expired to the browser, even though it shows as valid in Server Admin.
    I also found it in the Keychain utility, and it also shows as a valid certifcate there. I did find an entry in the Keychain utility for an earlier attempt at installing an expired certificate, so I deleted that entry.

  • IOS Safari forces mobile web sites over full web sites

    When you access certain sites using Safari on iOS, the web site will detect this and redirect you to a mobile version of the site optimised for mobile devices.
    Is there is a way to stop the iOS Safari from declaring itself as an iOS browser?
    For example, I use a pecific full website shortcut for a weather radar picture from Accuweather (www.accuweather.com/.......). Now, as soon as I want to see that quick loading radar picture, the Safari iOS browser goes instead to the start page of Accuweather Mobile (m.accuweather.com) and I will not be able to see the full web site picture at all.
    I checked in the Settings for Safari but could not find anything helpful for this.

    Thanks spm161!
    Here is the shortcut http://www.accuweather.com/m/US/wigs.axd?city=Miami&state=FL&w=480&h=640&type=_S IR&geoWidth=400&lat=25.00&lon=-78.50
    I live in the Bahamas and this is the best and customizable radar picture I could find. We only have Edge service down here and loading any apps is mostly very slow. That radar picture comparably loads pretty quick and gives me the most detail, too.
    But like I said, recently the shortcut gets redirected to m.accuweather.com
    I will send the info to the email as you advised above. Thanks for your help!!

  • My firefox browser is only opening the page to about 10cm deep although it's full screem width. It started doing this about a week ago. I've uninstalled and reinstalled it but it's still too short and I can't drag it to full size, it just pings back. Plea

    My firefox browser is only opening the page to about 10cm deep although it's full screem width. It started doing this about a week ago. I've uninstalled and reinstalled it but it's still too short and I can't drag it to full size, it just pings back. Please help?
    == This happened ==
    Every time Firefox opened
    == 12/07/2010

    Hello Susan.
    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem is not disappears when all add-ons are disabled, please tell me, so we can work from there.

Maybe you are looking for