Ios 3.1.3 fails when browsing website with flash, doesn't skip flash, hangs

Im just looking for someone else that might have had this issue, to maybe point me to reason or a solution.
I know that the iphone doesn't support flash, and would expect when viewing a website, that it just bypass the flash (skipping it, or just displaying a box with "needs flash to view"), but we are finding that version 3.1.3 is locking up, when we goto www.gostanford.com with ANY IOS other than 3.1.3, the device loads the webpage, simply just doesn't display the flash and continues to render the remainder of the site. However, with 3.1.3, the whole screen goes white, and a real small "Click here to download the latest flash plugin to view content..." displays and moves no further. It just stops there, I've tested on our 2g and 3g devices with ver 2, 3.0, 3.1, 3.1.1, 3.1.2 and they all display the page minus the flash content. IOS 4.0, 4.1 on my 3gs and 4 phone due to same thing, its just version 3.1.3 that does this.
I want to tell the customer, sorry, we dont support iphone, but the rest of the company is expecting at least a reason why this is happening? Has anyone here had or experienced any issues with the 3.1.3 that I can draw from, or point me to a location.
Thanks in advance.
-john

The link you specified works perfectly with my IE6 and
Firefox 2.0. The purpose of the javascript script is to provide a
cross browser sloution to deploy flash animation in HTML. As IE
uses object tag and doesn't support embed tag and other browsers
vise versa this kind of mechanism is essential. And that javascript
also allows you to check the installed flash version. I see no
problem of your page.

Similar Messages

  • Why does apple allow apps in the App Store hijack your Internet when certain websites? Why doesn't apple remove their products from the App Store?.

    Why does apple allow apps in the App Store hijack your Internet when certain websites? Why doesn't apple remove their products from the App Store?.

    Apple saw it as their responsibility since the redirection took me to the App Store. They assisted me in stopping the redirection which is occurring on many peoples iPhones. It's a have java script problem that adking is using to get you to buy their games. The websites work normal and then all of the sudden the website is taken over by adking.com.  You can no longer use the website as it immediately takes you to the App Store without ever showing a popup to cancel the redirection. They were very helpful fixing the problem should others experiencing this specifically with adking.com.
    No need to get defensive. I'm not the only one experiencing the problem Apple said.

  • Update item in list using rest api - failed when browsing in juniper session

    this issue is about browsing to an on premises sharepoint 2013 inside a LAN using Juniper session
    the user can see everything and can create new list items with rest api but
    cannot update existing items using the function below.
    we've got this function which we use to update list items in rest
    it works like a charm when browsing inside the LAN
    function updateListItem(itemIdentityField, itemIdentity, listName, siteUrl, item, success, failure) {
    getListItemWithId(itemIdentityField, itemIdentity, listName, siteUrl, function (data) {
    $.ajax({
    url: data.__metadata.uri,
    type: "POST",
    contentType: "application/json;odata=verbose",
    data: JSON.stringify(item),
    headers: {
    "Accept": "application/json;odata=verbose",
    "X-RequestDigest": $("#__REQUESTDIGEST").val(),
    "X-HTTP-Method": "MERGE",
    "If-Match": data.__metadata.etag
    success: function (data) { success(data, callBackIndex, null) },
    error: function (data) {
    getError(data);
    }, function (data) {
    failure(data);
    the error i get in ULS log is:
    Original error: Microsoft.SharePoint.Client.InvalidClientQueryException: The parameter __metadata does not exist in method GetItemByStringId.
    at Microsoft.SharePoint.Client.MethodInformation.GetParameter(String parameterName)
    at Microsoft.SharePoint.Client.ClientCallableEdmModelBuilder.CreateFunctionImportForMethodBodyParser(MethodInformation clientMethod, List`1 parameterNames, ProxyContext proxyContext)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.ParseParametersFromBody(MethodInformation methodInfo, Boolean allowPostBodyAccess, Boolean isLeafSegment, ClientValueCollection args)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.ParseParametersFromBodyOrQueryString(MethodInformation methodInfo, Boolean allowPostBodyAccess, Boolean isLeafSegment, ClientValueCollection args)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.CreateMethodArgumentsUsingNamedParameters(MethodInformation methodInfo, IList`1 parameterList, Boolean isLeafSegment, Boolean allowPostBodyAccess)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.InvokeMethod(Boolean mainRequestPath, Object value, ServerStub serverProxy, EdmParserNode node, Boolean resourceEndpoint, MethodInformation methodInfo, Boolean isExtensionMethod, Boolean isIndexerMethod)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPathMember(Boolean mainRequestPath, String path, Object value, EdmParserNode node, Boolean resourceEndpoint, MethodInformation& methodInfo)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.GetObjectFromPath(Boolean mainRequestPath, String path, String pathForErrorMessage)
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.Process()
    at Microsoft.SharePoint.Client.Rest.RestRequestProcessor.ProcessRequest()
    at Microsoft.SharePoint.Client.Rest.RestService.ProcessQuery(Stream inputStream, IList`1 pendingDisposableContainer)
    Any help?
    Somebody?
    Thanks

    Hi patrik
    Really appreciate your replying.
    Could you try and refer to the issues below:
     this error occurs even with site collection administrator (i tested it with three different
    users)
    there isnt any difference between items in list - all have same permissions
    it occurs in several lists in site (all lists have same permissions)
    if browsing inside the LAN everything works just fine
    updating from the UI works fine in all means
    It really seems like a Rest related problem(is there anyone from the Microsoft REST team who can take look at this error?)
    Thanks
    Hushay

  • Database logon failed when opening report with parameter values in CrystalReportViewer

    Hi,
    I designed 2 crystal reports: report A contains parameter fields and report B did not contain any parameter
    I can open both reports in development site using CrystalReportViewer control. When I open the reports in testing site,
    I can open report B but can't open report A. It display error message "Database logon failed". When I set EnableDatabaseLogonPrompt
    to true and try to open the report A again, it shows database connection data which was created on report.
    In addition, it is strange that it displays error "Database logon failed" when I click an item in group tree panel of the report B. This indicates that it can load data from database
    in testing site but it connect to development database when clicking items in group tree panel
    All reports connect to database using Windows Authenication. It use dynamic database connection at runtime
    How to ensure the report always connect database using login data dynamically at runtime?
    Below is my code about database connection:
    string strServerName = null;
    string strDatabaseName = null;
    ReportDocument rptDoc = new ReportDocument();
    rptDoc.Load(strFilePath);
    ConnectionInfo connInfo = new ConnectionInfo();
    TableLogOnInfo logonInfo;
    for (int i = 0; i < rptDoc.Database.Tables.Count; i++)
    logonInfo = rptDoc.Database.Tables[i].LogOnInfo;
    ReportHelper.GetReportConnection(ref strServerName, ref strDatabaseName, strSystemType);
    logonInfo.ConnectionInfo.ServerName = strServerName; 
    logonInfo.ConnectionInfo.DatabaseName = strDatabaseName;
    logonInfo.ConnectionInfo.IntegratedSecurity = true;
    rptDoc.Database.Tables[i].ApplyLogOnInfo(logonInfo);
    rptDoc.Database.Tables[i].Location = rptDoc.Database.Tables[i].Location.Substring(0, rptDoc.Database.Tables[i].Location.Length - 2);
    crvViewer.ReportSource = rptDoc;
    crvViewer.DataBind();
    Development environment:
    - SAP Crystal Reports 2013 Support Pack 1
    - Visual Studio Professional 2012
    - .NET Framework 3.5
    - DDL
    CrystalDecisions.Shared (v 13.0.8.1216)
    CrystalDecisions.Web (v 13.0.8.1216)
    CrystalDecisions.CrystalReports.Engine (v 13.0.8.1216)
    Database connection in crystal report:
    - Database Type: OLEDB (ADO)
    - Provider: SQLOLEDB
    - Integrated Security: True
    Thanks and Regards,
    Tony

    Hi Tonylck
    Try  to pass login info to crystal report dynamically as follows:
    using System;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    namespace WindowsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    ReportDocument cryRpt = new ReportDocument();
    TableLogOnInfos crtableLogoninfos = new TableLogOnInfos();
    TableLogOnInfo crtableLogoninfo = new TableLogOnInfo();
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    Tables CrTables ;
    cryRpt.Load("PUT CRYSTAL REPORT PATH HERE\CrystalReport1.rpt");
    crConnectionInfo.ServerName = "YOUR SERVER NAME";
    crConnectionInfo.DatabaseName = "YOUR DATABASE NAME";
    crConnectionInfo.UserID = "YOUR DATABASE USERNAME";
    crConnectionInfo.Password = "YOUR DATABASE PASSWORD";
    CrTables = cryRpt.Database.Tables ;
    foreach (CrystalDecisions.CrystalReports.Engine.Table CrTable in CrTables)
    crtableLogoninfo = CrTable.LogOnInfo;
    crtableLogoninfo.ConnectionInfo = crConnectionInfo;
    CrTable.ApplyLogOnInfo(crtableLogoninfo);
    crystalReportViewer1.ReportSource = cryRpt;
    crystalReportViewer1.Refresh();
    Ref
    http://csharp.net-informations.com/crystal-reports/csharp-crystal-reports-dynamic-login.htm
    Mark as answer if you find it useful
    Shridhar J Joshi Thanks a lot

  • WebLogic 12.1.2 fails when deploying ear with injecting extension and bean with injection of this extension in ejb

    WebLogic 12.1.2 fails when deploying an enterprise application(ear) that contains a ejb in which injected 1) an extension 2)bean with injection of this extension.
    The following exception is thrown:
    Caused By: org.jboss.weld.exceptions.DeploymentException: WELD-001409 Ambiguous dependencies for type [CdiExtension] with qualifiers [@Default] at injection point [[field] @Inject private test.extension.Bean1.extension].
    Possible dependencies [
    [Extension [class test.extension.CdiExtension] with qualifiers [@Default]; zip:/domain1/servers/AdminServer/tmp/_WL_user/test/7x6roh/lib/test-extension-0.0.1-SNAPSHOT.jar!/META-INF/services/javax.enterprise.inject.spi.Extension@1[test.extension.CdiExtension@1115deb],
    Extension [class test.extension.CdiExtension] with qualifiers [@Default]; zip:/domain1/servers/AdminServer/tmp/_WL_user/test/7x6roh/lib/test-extension-0.0.1-SNAPSHOT.jar!/META-INF/services/javax.enterprise.inject.spi.Extension@1[test.extension.CdiExtension@ed791f]]]
        at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:314)
        at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:280)
        at org.jboss.weld.bootstrap.Validator.validateBean(Validator.java:143)
        at org.jboss.weld.bootstrap.Validator.validateRIBean(Validator.java:163)
        at org.jboss.weld.bootstrap.Validator.validateBeans(Validator.java:382)
        at org.jboss.weld.bootstrap.Validator.validateDeployment(Validator.java:367)
        at org.jboss.weld.bootstrap.WeldBootstrap.validateBeans(WeldBootstrap.java:379)
        at com.oracle.injection.provider.weld.WeldInjectionContainer.start(WeldInjectionContainer.java:106)
        at com.oracle.injection.integration.CDIAppDeploymentExtension.initCdi(CDIAppDeploymentExtension.java:70)
        at com.oracle.injection.integration.CDIAppDeploymentExtension.activate(CDIAppDeploymentExtension.java:47)
        at weblogic.application.internal.flow.AppDeploymentExtensionFlow.activate(AppDeploymentExtensionFlow.java:37)
        at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:729)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:42)
        at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:258)
        at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:61)
        at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:165)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
    Problem can be easily reproduced by a minimal case:
    test.ear:
    \lib\test-extension-0.0.1-SNAPSHOT.jar
    test-ejb-0.0.1-SNAPSHOT.jar
    where
    test-extension-0.0.1-SNAPSHOT.jar contains:
    CdiExtension.java:
    package test.extension;
    import javax.enterprise.inject.spi.Extension;
    public class CdiExtension implements Extension {
        private String someString = "Some String";
        public String getSomeString() {
            return someString;
    Bean1.java:
    package test.extension;
    import javax.enterprise.context.ApplicationScoped;
    import javax.inject.Inject;
    @ApplicationScoped
    public class Bean1 {
        @Inject
        private CdiExtension extension;
        public String get() {
            return extension.getSomeString();
    test-ejb-0.0.1-SNAPSHOT.jar contains:
    EjbBean.java:
    package test;
    import test.extension.Bean1;
    import test.extension.CdiExtension;
    import javax.ejb.Stateless;
    import javax.inject.Inject;
    @Stateless
    public class EjbBean {
        @Inject
        private CdiExtension extension;
        @Inject
        private Bean1 bean1;
        public String getSomeString() {
            return extension.getSomeString() + "\n" + bean1.get();
    p.s. i seen same problem in community.oracle.com/thread/2577403 , but it happen in "war", not "ear", and seems successfully patched with patch №17424706

    Hi,
    It looks like there is patch exists for this issue.
    Patch 17198187
    Please try to download from the MOS or try to open a ticket with support.
    Regards,
    Kal

  • Listener  fails when not connected with network .

    Hi ,
    this again same old problem of listener.
    I have installed oracle 8 on my home pc RUNNING WIN2000 SP 4.
    The listenet runs fine when I am connected to the internet through dialup CONNECTION but fails when I am not connected .
    I donnt have a network adapter with my pc.
    How caN i run listener on a stand alone system ?
    the computer name is kabilpc
    Following error is spitted when I give start command from LSNRCTL80
    System parameter file is d:\orant\NET80\admin\listener.or
    Log messages written to d:\orant\NET80\log\listener.log
    Listening on: (ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\O
    Listening on: (ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\E
    Listening on: (ADDRESS=(PROTOCOL=nmp)(PIPENAME=\\KABILPC\
    Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=392)(HOST=127.0
    Listening on: (ADDRESS=(PROTOCOL=tcp)(DEV=404)(HOST=127.0
    Attempted to listen on: (DESCRIPTION=(CONNECT_TIMEOUT=10)
    (HOST=127.0.0.1)(PORT=1520)))
    TNS-12542: TNS:address already in use
    TNS-12560: TNS:protocol adapter error
    TNS-00512: Address already in use
    32-bit Windows Error: 48: Unknown system error
    THE FOLLOWING IS THE CONTENT OF LISTENER.ORA
    # D:\ORANT\NET80\ADMIN\LISTENER.ORA Configuration File:d:\orant\net80\admin\listener.ora
    # Generated by Oracle Net8 Assistant
    PASSWORDS_LISTENER= (oracle)
    LISTENER =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = ORCL))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (ADDRESS = (PROTOCOL = NMP)(SERVER = KABILPC)(PIPE = ORAPIPE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = kabilpc)(PORT = 1520))
    (ADDRESS = (PROTOCOL = TCP)(HOST = kabilpc)(PORT = 9999))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1520))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = kabilpc)
    (SID_NAME = ORCL)
    (SID_DESC =
    (SID_NAME = extproc)
    (PROGRAM = extproc)
    THANKS
    K.M.DHALI

    (ADDRESS = (PROTOCOL = TCP)(HOST = kabilpc)(PORT = 1520))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT =1520))Are these two entries not one and the same? Could you get rid of one of the entries and try.

  • Script Error Message When Browsing Pages With Contribute

    My client is getting the following message when browsing their site .
    The site has been functioning for many years and has just started to show this message today (see attached screen shot below), an error has occurred in the script on this page.
    As far as I can tell the site has not been modified in any way in recent days and there is no mention of 'MM_swapimage' in the code at the location referenced in the message.

    Thanks Anit,
    The web address is www.thormining.com
    Here is a screen shot.

  • Site failing starting 9/21 with new Chrome and new Flash updates - PLEASE HELP!

    I have a vertical site for boating with 110,000 users.  The main part of the site is based around a 400KB swf that is mostly AS3.  It has worked flawlessly for years.  I haven't updated it in about 4 months.  There has been no server update that would be causing any issues at all in at least a month.
    All of a sudden on 9/21, some users started complaining that the main map view was all white.  Other things are not working correctly either.  It happened mostly with users who had automatic updates turned on in Google Chrome.  I understand that a new Flash version was auto-installed as a part of a Google update yesterday.
    I went to the Adobe Flash page and was prompted to update my player although I have 10.3.183.10 installed.  I didn't do that.
    Today people on other platforms are complaining that they're getting the same white screen although the bulk of our users are having no problems, probably because they haven't been updated.  It seems to happen in Internet Explorer and Firefox starting today.  I have a feeling these people had their Flash version updated.
    I updated to the beta v11 and now I'm experiencing the white screen blank problem - it is perfectly reproducible.
    To view the place where this is happening, go to:
    https://activecaptain.com/X.php
    The problem occurs on both OSX and Windows.  I don't think it is operating system involved at all.
    There are no errors, warnings, messages, traces, etc. coming out on the developer windows in Safari in v11.  Absolutely everything appears perfect except it isn't working at all.
    This is causing a major problem and I don't know what to do.

    Hi JeffActive,
    Sorry for all the inconvenience you encountered so far.
    We did investigation on your problem and found out it's related with our security update on 9/21/2011.
    When load your website with debugger plugin player, the following stack overflow errors are found:
    AS error occurred:
    Error: Error #1023: Stack overflow occurred.
                    at com.afcomponents.umap.gui::UIMapControl/getClassByName()
                    at com.afcomponents.umap.gui::UIMapControl/getClassByName()
                    at com.afcomponents.umap.gui::UIMapControl/getClassByName()
    This haven't been seen in flash player no later than 10,3,183,7.
    By confirming with our developers, in 10,3,183,10, we added some checks to detect stack overflow conditions. That's why 'Stack Overflow Occurred' errors are detected in your codes.
    If go to below security bulletin page, you can find more detailed information of security updates in 10,3,183,10:
    http://www.adobe.com/support/security/bulletins/apsb11-26.html
    As there are stack overflow errors in your codes, flash player(later than 10,3,183,10) avoids loading it. To fix the problem, need to fix those AS stack overflow errors in your codes.
    We don't have the source code of your swf file right now, so can't tell which AS codes cause this stack overflow issue. Could you test your swf file in our latest debugger player(10,3,183,10), then find out which lines of AS codes caused the problem? Once the stack overflow issue is solved, the swf should be loaded correctly.
    Again, sorry for all the inconvenience cause by this new security changes. We're improving our player to be more secure. We would be glad to work with you to solve your problem ASAP if any help needed from us.
    Thanks,
    Yan

  • Ios 7 REAR CAMERA FAILS WHEN USING  UIIMAGEPICKERCONTROLLER

    We're developing a simple application that uses rear camera. We've seen
    that when we save pictures with the presented code
    UIImageWriteToSavedPhotosAlbum(_image,self,@selector(image:finishedSavingW
    ithError:contextInfo:),nil)"
    the app memory jumps out dramatically from 11mb to 48mb and for each
    picture that you take it gets more memory consumption until the console
    Starts to display "Received Memory Warning" and Finaly a message appears
    saying <project Exited unexpectedly. Terminated due to memory pressure.>
    It also happens if you don't save or use the code above, to save the
    Photo the only thing that changes is that the memory consumption is not
    dramatically incremented but the received memory warning message still
    there and the final message that crases the app too.
    I get this error with XCODE 5 and IOS 7 Because with my code was compiled in IOS6 and the last XCode and it didn't fail. But also If I create a new project and use uiimagepickercontroller to start the camera and take pictures I get the same error.
    This error is most noticeable in an iPad mini because of his ram memory.

    You probably want to post this in the Developer Forums. This is the general user forum.
    Best of luck.

  • Why do I often come with an error message "Secure Connection Failed" when browsing or searching google. is the problem wiyh google or actually firefox.

    Every then and now I get this error message while doing a research on google, or switching my search from web to search. Is the problem actually with google or firefox, because when this occurs I simply go to yahoo. It would actually be great if this error message quit showing up, either you guys call google and try to have this fixed or talk to your guys to fix this error. I don't understand why it's showing up when i'm already doing a search and write something else to research.
    Thanks for reading this and understanding the frustration
    -Chris

    Hello Chris,
    This behaviour could be triggered by corrupt cookies and cache.
    Follow the easy steps below to clear your browsing cookies and cache:
    1. Tap the "menu" button and select "Settings"
    2. Tap "Privacy" and choose "Clear private data"
    3. Put a check mark next to the items you want to clear and then tap "Clear data"
    Hope this helps!

  • Hi how to enable my safari browse website with TAB? My iPad vision is 4.3.5

    As I found it is a difference of the way to browse the website between my iPad which purchased 1 mth ago and my friends's newly one. Just want to know how can I enable the TAB function of Safari on my iPad so that works convenience. Is that something about vision? My iPad is 4.3.5 and if it can, I do no want to upgrade to IOS 5 as it got a lot of crash issue.  Hope some one can help me. thank u

    Most people have no problem with IOS5.
    Those who seek help here are the minority. Don't forget there are millions of iPad sold.

  • When loading websites with a lot of thumbnails that are linked for example to imageshack Firefox 6 will just freeze and become unresponsive. If i press the reset page buttom sometimes they will load or sometimes firefox will crash, why is this?

    If a website has a lot of thumbnails or animated gifs for example firefox will become unresponsive and sometimes either lag and use a lot of system resources i have seen it as high as 1.2GB or it will just lock up and crash.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    In Firefox 4 and later [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • Migrate Roles failes when migrating VMs with legacy network adapters (2008R2 - 2012)

    I'm working on a upgrade of Hyper-V 2008R2 cluster to Hyper-V 2012 cluster. I am using the "migrate roles" feature of failover clustering to migrate the CSV's and VM's. The wizard ask to which switch the VMs need to be connected on the target cluster.
    All VMs with network adapters can be started in the new cluster without any issues. If you look at the XML file of the migrated VMs with normal network adapters, a new XML has been generated in the proper 2012 format. However, all VM's with a legacy
    network adapter fail to start. Also there is no migrated XML file in the VM directory. It is impossible to check or adjust the settings of the migrated VMs with legacy network adapters using the failover clustering console.
    I have reproduced the issue in my lab several times, and it seems like a bug.
    There are several workarounds, but I am looking for a real solution.

    Hi,
    We recommend that you use the legacy network adapter only to perform a network-based installation or when the guest operating system does not support the network adapter.
    If the virtual machine continues to use the legacy network adapter it will not be able to leverage many of the features available in the Hyper-V virtual switch. You may want
    to replace the legacy network adapter after the operating system is installed.
    The related KB:
    Building Your Cloud Infrastructure: Converged Data Center without Dedicated Storage Nodes
    http://technet.microsoft.com/en-us/library/hh831829.aspx
    Configure Networking
    http://technet.microsoft.com/en-us/library/cc770380.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Midnight Commander fails when entering directories with special chars

    I'm not sure if I should tackle this problem here, but here it goes.
    Few days ago I installed Arch, and I'm pretty happy with it. It works lean & clean, but there are still some issues that irritate me. One of these is MC, which acts kind of odd.
    When I enter a directory containing some "special" characters in it's name (eg. "directory_name_has_underscores") it messes MC's view up displaying a warning message saying: "Cannot change to: /prefix/directory_name_has_underscores". However, I can browse through the (with disorted view) directory's contents, until I do Ctrl+O, and return. If I do that I get back to the /prefix/, i.e. the place, just before entering the directory "directory_name_has_underscores".
    I used Slackware before, and haven't experienced any problems back then.
    Those may help understanding the issue:

    It needs a patch since a recent bash update. I would suggest enabling the community repository in pacman.conf and installing mc-utf8 instead, which (a) has been patched already and (b) works with utf8.

  • Firefox starts, but fails to display websites with no error message.

    Firefox starts, but when it tries to connect to a real website, i.e. google.com, mozilla.com, etc. it just... doesn't. There is no error message. There is no progress bar. No "Loading...". Nothing. It just continues to say "Untitled" in the tab name.
    I tried updating to the latest firefox version. I tried reinstalling firefox. I tried creating a new profile. I tried clearing cache/cookies/etc. Nothing I did caused any change.
    I have noticed that if I attempt to type in a random string of characters (clearly not a real website) or a made-up ip address, then it displays the proper error message... intermittently. I just tested it again, and apparently it doesn't always work.
    *sigh* What now?
    == This happened ==
    Every time Firefox opened
    == I went back to firefox after using Chrome.

    I have mac. And I have the same problem.
    First page loads - and I can click on any link from that to continue opening it in tabs. But when I open new tab cmd+t and enter a website address to location bar, nothing happens.
    I don't have a firewall.
    I already deleted Firefox from applications and reinstalled.

Maybe you are looking for