How can I solve my 'run time error' accessing MySpace?

For the last 4 days, everytime I try to log in to my MySpace account I get the same 'runtime error' message as follows....
'Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>'
Other people who have tried to log into different MySpace accounts on my page get the same message. however, all other websites are working fine.
Help! I am totally computer illiterate so any help would be much appretiated!
BEX83
MacBook   Mac OS X (10.4.6)  

Hi tranzrock69,
Welcome to Apple discussions:)
I don't think it had anything to do with an MS dnld.
Glad resetting Safari worked for you thanks for letting us know.
I didn't recommend resetting Safari, unless it proved necessary,
Resetting does all of the below, & some folks rather not lose one or the other
of the items listed, for me it would be my saved names & passwords.
"Resetting Safari clears the history, empties the cache, clears the Downloads window, and removes all cookies. It also removes any saved user names and passwords or other AutoFill data and clears Google search entries." "
If your mac is acting oddly & are concerned about the ms dnld, you may want to post in one of the apple fdiscussions forums. OS Tiger forum for instance.
Enjoy both, your mac & my space!
Eme'~[)

Similar Messages

  • How can I see a run time error?

    When I run the VI in development mode the VI works just fine. But after I compile and run the VI I get an error that flashes across the screen and then disappears. Arggg! How can I stop the process to see my error?

    Steve,
    There are a few possible solutions to this.
    One, I am writing an article about right now. It involves writing a Loader. This is a simple VI that loads and runs your main program, so that it can remain as a VI. If this is a viable solution for you (your VIs remain as VIs), then it is probably a great solution, as you won't have to worry about why your VI runs differently as an executable than in development.
    The second is a lot more involved. You need to troubleshoot this error. First, you should already have in place some good error handling. If you don't, get it. Once you have it, or if you already do, you need to determine about where the error is coming from, and start putting in some troubleshooting. I always like to create a singl
    e Global Variable (this to me is the ONLY good use for a global) with all sorts of indicators to act as a runtime probe (since you can't probe a built application.) You just write values to various controls as you need them, when you need them, and this allows you to view those values. Since this is designed primarily to view data in reentrant VIs, you will have to create a viewer for your built application. Simply create a VI that loads when you run your app that displays all of the global values.
    Those are the only suggestions I can offer for now. Without knowing the nature of the error, etc, I can't give you any further advice.

  • How can I correct a "Run time error" on my mac mini?

    On one web site in my book marks I have suddenly got this message -"Runtime error" How can I fix it?

    Please post a screenshot that shows what you mean.
    To take a screenshot, follow the instructions linked below. Be careful not to include any private information.
    Shortcuts for taking pictures of the screen
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • How to display "Non-Fatal Run-Time Error In Function Panel" dialog?

    I'm learning how to develop an IVI-C specific driver using LabWindows/CVI. When I run my function from its function panel and it returns an error, I would like to display a dialog with both the error code and error message (as opposed to simply returning an error code on the function panel). This would save the user from having to call Prefix_error_message() to translate the error code to its error message. NI-DCPower driver is a good example of this behavior (see attached error dialog). How do I show the "Non-Fatal Run-Time Error In Function Panel" dialog? Any help is greatly appreciated. Thanks!
    Attachments:
    ErrorDialog.png ‏8 KB

    Hi Shawn,
    Thank you for replying to my post. The checkErr is just an error handling macro defined in ivi.h to goto Error: tag when the function returns a non-zero value. I have been using the checkErr macro (as well as viCheckErr and other macros) in my driver.
    Using the same hp34401a specific driver as an example, please allow me to explain my question in more details:
    Let's take the hp34401a_close function as an example. It is a simple function with only a few lines of code:
    When the hp34401a_close function is run from its front panel using an invalid session handle (e.g. "8" in this screen capture):
    You will get three "Non-Fatal Run-Time Error" popup dialogs, one from each of the IVI library functions that it calls: Ivi_LockSession, Ivi_UnlockSession, and Ivi_Dispose. However, there is no "Non-Fatal Run-Time Error" popup dialog from the hp34401a_close itself.
    My IVI-C specific driver is behaving identical to the hp34401a specific driver.
    In comparison, if run niDCPower_close function from its front panel using an invalid session handle (using the same "8" in this screen capture):
    You will only get one "Non-Fatal Run-Time Error In Function Panel" from the niDCPower_close function itself:
    I think the behavior of niDCPower driver is much better than the hp34401a driver. It replaces the three "Non-Fatal Run-Time Error" popup dialogs from the IVI library with a single "Non-Fatal Run-Time Error In Function Panel" popup dialog from the driver function itself. I would like to do the same thing with my driver but have not figured out how to display a "Non-Fatal Run-Time Error In Function Panel" dialog. Thanks in advance for your help!

  • How do I fix this run time error crash on start up?

    Whe I start Elements 10, it stops and waits at the "Organize" or "Edit" choice. (normal operation.) I chose edit and it crashes with a C++ run time error.

    See if this Adobe troubleshooting document helps:
    http://helpx.adobe.com/x-productkb/global/troubleshoot-c-runtime-errors-products.html
    Ken

  • How can I delete a "Run Time Air" from my mac book pro

    how can I get rid of the "Run Time Air" on my Macbook Pro

    Welcome to the Apple Support Communities
    If you use Snow Leopard, open iTunes, go to iTunes Store in the iTunes sidebar and log out

  • How can I test the running time of a method?

    c.What is the running time of your method smallest, as a function of n, the number of elements in the list? Use big-Oh notation.
    I quoated from a java problem..
    Anyone can tell me how I can test the running time? Thanks ! :D

    it depends on what is in the method. For example a for loop executed n times would have a O(n). A double for loop (each loopp run n times) will have O(n^2). Do this: determine how many times each loop in the method is run. This is the first term in your runtime equation. Do this for all other loops in the method and add them all together. Most other statements that are not iterative should have a constant runtime so O(1). For conditional statements, the runtime depends on the most time consuming portion of the statement. Once all these are added together, take the O(equation) which should just leave the biggest term. i.e. O(5n^2+3n+8) = O(n^2). Hope this helps.
    note: this does not apply to recursive methods

  • How can I uninstall Labview run time engine from the machine?

    I understand that Labview has not given any provision to show customized 'License Agreement screen'. Isn't it? This is the main cause of my problem. Since I want to show our own license agreement (LA) screen, I made the one using Labview. To show this license agreement screen, I first install a small application which has only this LA screen with Labview run time engine. The customer can see License Agreement Screen with Labview Run Time Engine on his machine. If My customer accepts the LA, I will install the main application further by calling another setup.EXE file.
    If my customer selects 'Do Not Agree' to the LA, I will quit the installation process. Here I also want to 'uninstall' Labview Run Time Engine
    from his machine since he doesn't accept License. I would like to know how to uninstall Labview run time engine from his machine?
    Another way which I could think is to run the LA screen from the CD with Labview run time engine on the CD. I will start installing the main S/W to the customer's machine with LABview Run Time Engine only after he accepts License agreement. I would like to know how to run the Labview application from CD without installing run time engine on the target machine?
    Can anyone suggest solution to my problem?
    Thanks,
    Chander

    J-Tek,
    I would suggest re-installing the Run-time Engine and then uninstalling it after a reboot. Also, you can download a program called Msicuu.exe (for NT, 2000, XP or Msicu.exe for 9x) to help clean up the registry for uninstalled programs.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • How can I get the run time of a method?

    I click a button "draw" to invoke a method such as draw many shades.
    It hangs a long time.
    I want to get the information of how long it spent.
    How can I do it?
    I'm new guy, more detailed please .
    one example would be much better
    ThankS all :)

    Try JAMon. It is much more flexible than currentTimeMillis() and easier to use.
    import com.jamonapi.*;
    drawShape()
    Monitor mon=MonitorFactory.start();
      ..code being timed...
    System.out.println(mon.stop());// prints time in ms.
    }steve - http://www.jamonapi.com - a fast, free, simple performance tuning API.

  • How can I solve out of memory error on excell file in PL/SQL

    Hi,
    I'm new on PL/SQL. One of the PL/SQL code which is created excell report got out of Memory error. The first reason of this error, excell file not supported more than 65536 data. So I change the excell file separeted sheets. So that the single sheet size cannot exceed 65536 data.
    All the data are held on system cach and if many user want to take the report the they would get an out of memory error.
    So I want to change the code like that; when out of memory exception raises,
    the old excell file save to disk and new excell file is created,
    and go on to write the new file without exiting the program.
    At the end of the data all the excell file append and show only one file to the user.
    I do know how to save the file and create a new file. But I don't know how can PL/SQL program to turn back to loop again when the exception occurs.
    Is anyone help me on this issue?
    Here is my code
    Thank you
    dworkbook:=hssfworkbook.new;
    dCurrentItem := Get_Block_Property(pCurrentBlock, FIRST_ITEM);     
    while not (name_in('system.last_record')='TRUE') loop
    /* The data would be written to the excell file column order. */
    if (dRow=0) then
              /* Create a new sheet */
    elsif (dRow <= dMaxWorksheetNum) then
         /* Data of the report are written here. The data are written in column order */
    if (dRow > dMaxWorksheetNum) then
         /* give dRow and dColumn intial value */
    /* increase worksheet number */
    end if; /* End of if (dRow=1) */
    if (isWritten) and not name_in('system.last_record')='TRUE'then
         /* if not at the end of the record and the previously read record is written to the file
         , then go to next record */
         next_record;
    end if;
    /* save excell report */
    workbookwriter.save(dworkbook,global.gethome||dFileName);
    web.show_document('/users/'||dFileName,'_BLANK');
    /* when exceptions occurs */
    EXCEPTION
    WHEN ORA_JAVA.EXCEPTION_THROWN THEN
    begin
         javaException := ORA_JAVA.LAST_EXCEPTION;
         -- Print out the Exception by using the toString()
         -- Method of the exception Object
         javaException2 := Exception_.new(javaException);
         mess(27002,Exception_.getMessage(javaException2));
         -- and clean up
         ORA_JAVA.CLEAR_EXCEPTION;
    exception
         WHEN ORA_JAVA.JAVA_ERROR THEN
    -- In this case, the error would be
    -- Argument 1 can not be null
    mess(27002,ORA_JAVA.LAST_ERROR);
    --Clean up
    ORA_JAVA.CLEAR_ERROR;
    end;
    WHEN ORA_JAVA.JAVA_ERROR THEN
    -- In this case, the error would be
    -- Argument 1 can not be null
    message(ORA_JAVA.LAST_ERROR);
    --Clean up
    ORA_JAVA.CLEAR_ERROR;

    No need to double-post... most questions are answered pretty quickly...

  • How can attach movieclip in run time

    Hi,
    Getting some problem to attach movieclip at run time...............
    I have a shell.swf and at run time i am attaching a template.swf. In template.swf file have mcMenu Movieclip.
    I am unable to access the or attach the movieclip at run time getting this error  (1180: Call to a possibly undefined method mcMenu.)
    that movieclip is not available on the stage.... it is in the library of template.swf file. Need help
    thanks in advance
    flash@dicts

    use the applicationdomain class:
    load(yourswfURL,yourclassString);
    // you don't need to change anything below:
    function load(urlS:String, classS:String) {
        var ldr:Loader = new Loader();
        ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, function(e:Event){loadCompleteF(e,classS);});
        ldr.load(new URLRequest(urlS));
    function loadCompleteF(e:Event,classS:String):void {
        var loadedAppDomain:ApplicationDomain = e.target.content.loaderInfo.applicationDomain;
        var C:Class = loadedAppDomain.getDefinition(classS) as Class;
        var instance:* = new C();

  • How can I limit the run time of my VI so that it starts when the arrow is clicked, and stops automatically when a specified time has elapsed using Labview 7?

    I can't seem to find the proper tools to do this. Any help would be greatly appreciated. Thanks in advance.

    I'm guessing that you're running something in a While loop, so you should be able to stop whenever you want.
    In LabVIEW 7, there is a new Express VI on the Time & Dialg palette named Elapsed Time. You specify the time you want, and it generates a boolean True after that amount of time has passed. Just connect this boolean to the Wile loops conditional terminal, either directly or "OR" it with a stop button so you can stop it yourself if needed.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • How can I solve an "Unknown server error"?

    I've been trying since YESTERDAY to download the Photoshop trial and it keeps saying that an "unknown server error" occurred with the message: "Sign in is currently unabailable. We are unable to access your account. Please try again later."
    - Always when it happens I AM logged in on the website. It can't be a login issue
    - I have already uninstalled and installed again the Creative Cloud app
    - I have already restarted the computer
    - I have already signed out and in again on the website
    - I have already closed and opened the Creative Cloud window a thousand times
    - And I have already tried later
    I don't know what else to do, and this thing is delaying my work.

    Hi Prii,
    Please refer the KB : http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html

  • HT1414 i was restore my iphone 5 but last time itune show error (-1) so how can i solve this problem?

    i was restore my iphone 5 but last time itune show error (-1) so how can i solve this problem?

    Error -1 indicates a serious hardware failure.
    Try restoring the device again, try on a different computer.  If the issue continues, take the device to Apple for evaluation and possible replacement.

  • I'm a Mac user, at the start of Adobe Lightroom I receive an error of changing modules. How can I solve the problem?

    I'm a Mac user, at the start of Adobe Lightroom I receive an error of changing modules. How can I solve the problem?

    Error changing modules | Lightroom
    Mylenium

Maybe you are looking for

  • How can I use the iPhone i bought here in the US in the philippines?

    i have an iphone and i was just wondering how can i can use the iphone i bought here in the united states to the philippines? is it even possible? please help me. thanks!

  • Lost i-Tunes and need to get all my music back onto it

    Hi everybody, I really need some help! Last week my computer crashed and I lost every files I have had, so basically I have bought a new computer with nothing on it. The last two days I have been installing new files and other things. Now the thing i

  • How to copy a physical Alias table from one rpd to another

    Hi I am copy pasting the physical tables from one rpd to another. I first copied the physical table and then tried to copy the alias table i get the message ' Unknown Error' when i click ok it says 'Failed to copy from clip board"

  • Usage of TREX  for SAP CRM

    Hi Admins, Can some one throw some light on usage of TREX in the CRM space.  The specific questions i have are : 1. I know its optional but  which module of CRM needs it more - Please confirm  Regards, Rakesh Neni.

  • Create drop-down menus in Captivate 4

    I need your help! I need to create a dropdown menu in Captivate! It's supposed to be used in a simulation, not a quiz! Is it possible to create this in a Captivate simulation? Thanks!