IDisk syncing error driving me crazy!

Every time my iDisk syncs, it fails and I get an error message saying that a file can't be found. I know I deleted that file a few days ago. I looked on all my other computers and searched spotlight and can't find anything. I deleted some of the preferences related to syncing, and now because of this I can't sync my iDisk at all! I signed out and back into my mobile me account. I reset iSync and reset sync data in preferences.
Can anyone PLEASE HELP? Thanks.

You can try this simple fix -
Quit DW.
Find this folder -
C:\Documents and Settings\<username>\Application
Data\Macromedia\Dreamweaver
8\Configuration\WinFileCache-*.dat
(these folders are normally hidden - you may have to use
Explorer > Tools >
Folder Options to unhide them)
or on Mac -
Library/Application Support/Macromedia/Dreamweaver
8/Configuration/MacFileCache-*.dat
and delete it.
Restart DW. Works better?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"jmath_sf" <[email protected]> wrote in
message
news:ee9lvg$5k9$[email protected]..
> Help! I keep encountering the following error message
when trying to
> access the
> EDIT menu or right-clicking:
> At line 30 of file "Disk:Applications:Macromedia
Dreamweaver
> 8:Configuration:Menus:MM:Edit_Paste.js".
> Exception thrown in native function."
>
> Has anyone seen this? How can I deal with this??
>
> Thanks!
>

Similar Messages

  • Errors driving me crazy! But, it all compiles fine

    Errors driving me crazy! although compiles fine
    I am working on a project for an online class - I am teaching myself really! My last assignment I cannot get to work. I had a friend who "knows" what he is doing help me. Well that didn't work out too well, my class is a beginner and he put stuff in that I never used yet. I am using Jgrasp and Eclipse. I really am trying but, there really is no teacher with this online class. I can't get questions answered in time and stuff goes past due. I am getting this error:
    Exception in thread "main" java.lang.NullPointerException
    at java.io.Reader.<init>(Reader.java:61)
    at java.io.InputStreamReader.<init>(InputStreamReader .java:55)
    at java.util.Scanner.<init>(Scanner.java:590)
    at ttest.main(ttest.java:54)
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    This is my code:
    import java.util.*;
    import java.io.*;
    public class ttest
    static Scanner console = new Scanner(System.in);
    public static void main(String[] args)throws IOException
    FileInputStream fin = null; // input file reference
    PrintStream floser = null; // output file references
    PrintStream fwinner = null;
    Scanner rs; // record scanner
    Scanner ls; // line scanner
    String inputrec; // full record buffer
    int wins; // data read from each record
    int losses;
    double pctg;
    String team;
    String best = null; // track best/worst team(s)
    String worst = null;
    double worst_pctg = 2.0; // track best/worst pctgs
    double best_pctg = -1.0;
    int winner_count = 0; // counters for winning/losing records
    int loser_count = 0;
    // should check args.length and if not == 1 generate error
    try
    Scanner inFile = new Scanner(new FileReader("football.txt"));
    catch( FileNotFoundException e )
    System.exit( 1 );
    try
    floser = new PrintStream( new FileOutputStream( "loser.txt" ) );
    fwinner = new PrintStream( new FileOutputStream( "winner.txt" ) );
    catch( FileNotFoundException e )
    System.out.printf( "unable to open an output file: %s\n", e.toString() );
    System.exit( 1 );
    try
    rs = new Scanner( fin );
    while( rs.hasNext( ) )
    inputrec = rs.nextLine( ); /* read next line */
    ls = new Scanner( inputrec ); /* prevents stumble if record has more than expected */
    team = ls.next( );
    wins = ls.nextInt();
    losses = ls.nextInt();
    if( wins + losses > 0 )
    pctg = ((double) wins)/(wins + losses);
    else
    pctg = 0.0;
    if( pctg > .5 )
    if( pctg > best_pctg )
    best_pctg = pctg;
    best = team;
    else
    if( pctg == best_pctg )
    best += ", " + team;
    fwinner.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    winner_count++;
    else
    if( pctg < worst_pctg )
    worst_pctg = pctg;
    worst = team;
    else
    if( pctg == worst_pctg )
    worst += ", " + team;
    floser.printf( "%10s %2d %2d %5.3f\n", team, wins, losses, pctg );
    loser_count++;
    fin.close( );
    floser.close( );
    fwinner.close( );
    catch( IOException e ) {
    System.out.printf( "I/O error: %s\n", e.toString() );
    System.exit( 1 );
    System.out.printf( "%d teams have winning records; %d teams have losing records\n", winner_count, loser_count );
    System.out.printf( "Team(s) with best percentage: %5.3f %s\n", best_pctg, best );
    System.out.printf( "Team(s) with worst percentage: %5.3f %s\n", worst_pctg, worst );
    The assignment is:
    Create a Java program to read in an unknown number of lines from a data file. You will need to create the data file. The contents of the file can be found at the bottom of this document. This file contains a football team's name, the number of games they have won, and the number of games they have lost.
    Your program should accomplish the following tasks:
    1. Process all data until it reaches the end-of-file. Calculate the win percentage for each team.
    2. Output to a file ("top.txt") a listing of all teams with a win percentage greater than .500. This file should contain the team name and the win percentage.
    3. Output to a file ("bottom.txt") a listing of all teams with a win percentage of .500 or lower. This file should contain the team name and the win percentage.
    4. Count and print to the screen the number of teams with a record greater then .500 and the number of teams with a record of .500 and below, each appropriately labeled.
    5. Output in a message box: the team with the highest win percentage and the team with the lowest win percentage, each appropriately labeled. If there is a tie for the highest win percentage or a tie for the lowest win percentage, you must output all of the teams.
    Dallas 5 2
    Philadelphia 4 3
    Washington 3 4
    NY_Giants 3 4
    Minnesota 6 1
    Green_Bay 3 4

    If you are working in Eclipse IDE, you can set a breakpoint and single step through your code to determe what line crashes. You can also examine variable values before the crash. Locate a line before the crash and set a breakpoint by double clicking on the vertical blue line that appears immediately to the left of the line of code. A blue 'dot' will appear on the line. Then,from the menu, select 'debug as application'. This will run your main() function up to that break point. In the menu, there are icons to allow you to single step through lines of code from that point, and another icon to step over lines of code if you want.
    Alternatively to setting break points, you can sprinkle your code with piles of System.out.println statements. Example: you have System.out.println("1"), and in another part of your code System.out.println("2"). If you code runs and prints out "1", but not "2", then you code crashed between them. I use breakpoints and System.out.println to debug.
    In your trace, you have "at java.util.Scanner.<init>(Scanner.java:590)" which means it crashed at line 590 (note in all the tracings, Scanner.java is a name of one of your custom classes and not a vendor class, thats how you can quickly find what part of the trace is important to you).
    NullPointerException means you tried to call a function on an object that is not instansiated (its null).
    Example: person.getName() will not work if person is null. Its the call to getName() that crashes.
    Debugging code is a very important skill set that you have to develop in which you have to logically track down and isolate problems.

  • IDisk Sync Errors

    Since installing Snow Leopard, I have two types of iDisk Sync Errors:
    1) It says a file was modified on Mobile Me and also modified on My Computer. This is simply untrue. I never use Mobile Me.
    2) It says the file cannot be synced because it is "in use" even when it is not in use and the application is actually closed.
    I have used iDisk for 1 year before Snow Leopard and never experienced either of these problems.
    Is there a solution?

    G'day,
    Have you tried the steps in this article:
    http://support.apple.com/kb/TS1546
    Cheers,
    Rodney

  • Disappearing Webpages and iDisk syncing errors in Leopard

    (1) I am having a problem that just started today. I installed Leopard on Oct. 29, I've had it for a couple of weeks. At first, I loved it, but new problems keep popping up every few days. I have an at-home business and I run Safari, Firefox and Safari Mail simultaneously to monitor two businesses. Safari hasn't been affected, so far, but Firefox and Mail will shut down spontaneously. It always happens after I leave my computer, so I don't know what actually happens. But when I come back all I have is my desktop but no webpages are open. The only way I can get them to re-open is to Restart the computer.
    (2) Another problem that started last night is with iDisk sync. I get an error box stating that certain items were unable to sync. Always different items, but all are photos that are on iWeb or .Mac Homepage and have been there since Tiger. I have not changed or altered anything in my iDisk folders since installing Leopard.
    The very first problem that I noticed after installing Leopard is that webpages are opening much more slowly than with Tiger. Evenings are always the slowest but it's never been as fast as Tiger. I'm on an ethernet cord, but that didn't speed things up at all from wireless.
    Any help or fixes to these glitches will be much appreciated!
    These are my browsers' stats and HD info.
    Firefox v. 2.0.0.9
    Safari Mail 3.0 (912.1/912)
    Capacity: 232.44 GB
    Available: 185.26 GB

    Yep, I am getting this A LOT too. Hah! ..but not always. By one if those strange acts of synchronicity and after the 6th attempt and 3rd reboot this evening it just finished syncing whilst typing this message. Typical.
    But it's been very temperamental and I have had it syncing for hours with no response after only changing a small file. Pretty frustrating - can't really rely on it anymore and am thinking of giving up on the stupid thing and going back to using a USB stick again.

  • GoodReader iDisk sync error 404

    I encountered an error when trying to sync an iDisk folder with my iPad GoodReader:
    "Failed: Invalid server reponse: 404 not found."
    After some search I found that similar error was reported on a DropBox forum and related to " ; " used in a filename. I hadn't had anything like this but there were " ? " question marks in my names. After deleting them, the sync was all fine.
    So if you get this error, check the filenames for some unusual letters, rename files and try again.
    Good luck

    I found that it was the file name with a / in it.

  • Outlook sync is driving me crazy

    I've been trying to get Outlook and iPhone to sync reliably since I got it. Initially it synced correctly. Then it stopped syncing calendar and contacts (it has never synced email).
    I have been through the technical note on how to fix sync problems. I uninstalled iTunes and reinstalled it. That fixed the problem -- for one day. The problem returned. I went through the uninstall and reinstall again. Again, fixed for one day (approximately). I tried doing a repair install. Fixed again, for one day.
    I'm now stumped. Maybe Apple will update the tech note on what to do if the tech note's steps don't fix the problem permanently. But I'm not holding my breath.

    Damon M. wrote:
    here is an article from the apple support website that might help out.
    http://docs.info.apple.com/article.html?artnum=305845
    Damon,
    That is the article that I used. Resetting sync history did not help.
    Removing and reinstalling iTunes fixes it briefly. It works for a few syncs, then stops working again. Removing and reinstalling again fixes it for a few cycles, but the problem still comes back. This is not a practical workaround.
    The following note appears in the Event Viewer under applications as Information (not Error):
    The description for Event ID ( 0 ) in Source ( iPod Service ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: Service started.
    This Information message appears with the same time stamp:
    The description for Event ID ( 1903 ) in Source ( HHCTRL ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: http://go.microsoft.com/fwlink?LinkID=45839.
    I don't know if this will help.
    best,
    Larry

  • "File is in use" error driving me crazy

    I have a few files on an xServe drive that I am trying to delete. They are not being used by any application and I have no applications open, yet I can not delete them. I keep getting the error, "The operation cannot be completed because the item "item name" is in use."
    Other files can be deleted, only a select few continue to give me this error. Any solutions??

    This is what I get....looks like either no program is using it, or I am doing something wrong:
    Last login: Tue Jun 10 09:45:08 on ttys000
    MARK-Mark-I:~ markivey$ sudo lsof /Volumes/xserve/Marketing/Personal\ Folders/Mark\ Ivey/TRASH/4DDW1696.tif
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    MARK-Mark-I:~ markivey$

  • Audio out of Sync is driving me crazy

    In the past I have been criticized for going back to tape too often just to consolidate a bunch of short clips. So this time I kept my new project to the absolute minimum until it was all done.
    #1 - import 16 bit tape for new project (Option move from Pane to Viewer)
    #2 - Edit 3 or 4 clips into about 50 clips
    #3 - Share 100 clips to tape (resultant 16 bit tape out of sync)
    #4 - Import tape to get 2.4 clips totaling 22 min (out of sync)
    This is the absolute minimum of back and forth, yet (again) my audio on tape is lagging at 3 sec out of sync. No titles, effects, or transitions were used. I have not changed a thing since the import. How can I fix it?
    What can Extract Audio, Scroll to Playhead, Paste Over at Playhead, Restore Clip, and Lock Audio at Playhead do for me? I have never tried using any of them. Can audio be separated from picture and shifted in time? If so is it done by the clip or all clips at one time?

    The problem:
    http://www.dvformat.com/htm/features/2000/800/dv_formatfaq.htm
    (Scroll down about two thirds to "What's the difference between locked and unlocked audio?" )
    The solution:
    Always use 16-bit/48kHz audio.
    iMovie: Audio and Video Lose Synchronization
    http://docs.info.apple.com/article.html?artnum=61636
    A few possible solutions here:
    http://www.danslagle.com/mac/iMovie/audio/1001.shtml
    iMovie: Improving audio and video synchronization
    http://docs.info.apple.com/article.html?artnum=42974

  • Mail Error - Driving Me Crazy!

    I keep getting the following error:
    "Some actions taken while the account “[email protected]” was offline could not be completed online.
    Mail has undone actions on some messages so that you can redo the actions while online. Mail has saved other messages in mailbox “INBOX” in “On My Mac” so that you can complete the actions while online.
    Additional information: The connection to the server “mail.mac.com” on port 143 timed out."
    It is from an email the was marked as junk, and then I marked it as not-junk & tried to move it to my Inbox.
    I keep trying to delete the “INBOX” in “On My Mac” & the email - I have even tried on the webmail, but it keeps showing this error.
    Any suggestions?

    Nevermind - I figured it out - I just deleted the account in Mail.app & created it again. Problem solved!

  • Sync Rules driving me crazy.

    I am some trouble with sync rules.
    Login and logout rules are
    Inculde
    ~/Desktop
    ~/Documents
    ~/Library
    Exclude
    Starts With Exchange-
    Starts With Exchange IMAP-
    Starts With Mail/IMAP-
    Starts With Mac-
    Starts With POP-
    Starts With VW Backup
    Full Path ~/Music
    Full Path ~/Pictures
    Full Path ~/Downloads
    Full Path ~/Movies
    Full Path ~/Library/Mail Downloads
    Full Path ~/Library/Mail/Mailboxes
    Full Path ~/Documents/Microsoft User Data
    Full Path ~/.SymAVQSFile
    Full Path ~/.Trash
    Full Path ~/.Trashes
    Full Path ~/Library/Application Support/SyncServices
    Full Path ~/Library/Caches
    Full Path ~/Library/Logs
    Full Path ~/Library/Printers
    Name Is .rnd
    Background Sync Rules are:
    Inculde
    ~/Desktop
    ~/Documents
    Exclude
    Starts With Exchange-
    Starts With Exchange IMAP-
    Starts With Mail/IMAP-
    Starts With Mac-
    Starts With POP-
    Starts With VW Backup
    Full Path ~/Music
    Full Path ~/Pictures
    Full Path ~/Downloads
    Full Path ~/Movies
    Full Path ~/Library/Mail Downloads
    Full Path ~/Library/Mail/Mailboxes
    Full Path ~/Documents/Microsoft User Data
    Full Path ~/.SymAVQSFile
    Full Path ~/.Trash
    Full Path ~/.Trashes
    Full Path ~/Library/Application Support/SyncServices
    Full Path ~/Library/Caches
    Full Path ~/Library/Logs
    Full Path ~/Library/Printers
    Name Is .rnd
    From what I can figure out if the back gournd rules are not set the system will sync everything in the user folder.
    This was all working correctly, but now I have some users that I am moving form local users to portable users.
    On the login and logout the sync is scanning the ~/Documents/Microsoft User Data folder and finding Entourage databases that are still in use but being moved away from. It sits there going through a copy type process where it will take 10min or so to copy up an entourage database, but in the end does not actually copy it and carries on syncing the rest of the data it needs to.
    So it is working correctly, although my login logout process is being extended by about 10 15 minutes because it is having to look at this entourage database file.
    Does any one know why it would be doing this and how to stop it.
    Server is on 10.5.8

    Hi,
    YOu could check the log file whether the ~/Documents/Microsoft Data folder is still excluded.
    If it is snot in the log (as excluded) you need to reset the sync list on the local computer.
    I find it the easiest way to just delete the ~/.FileSync folder from both client and server. (be sure to do this when the user is 'not' logged on)
    If it is excluded, well, then I have similar problems. I recently made a change to the exclusion list and now it seems that almost everything is synced even though files are excluded..

  • Apple TV Syncing Issues Driving Me Crazy!

    Hi All :o)
    I've had my ATV from launch and it has hardly had any problems at all but since the latest software update and the latest Time Capsule update i have had nothing but trouble at least two to three times a week my ATV forgets all and has to re-sync everything its now to the stage where i cant be bothered to use it?
    My question is has anyone with this set up found this issue? and does anyone know if apple is AWARE of this issue?
    Any one with any ideas would be a great help cheers all :o)

    Hello, I have had both the ATV and Time Capsule running and done all the updates whenever they came out and have never had that happen, except when I accidentally unchecked 'all' in iTunes and it had to re-synch, but that was me clicking things I wasn't aware of. So sorry, can't help, it works for me.

  • IDick Sync Error, with no info about problem!

    I keep getting the following iDisk Sync Error on my MacBook Air but it doesn't give me any info to resolve -
    " Your iDisk did not finish syncing because a problem occurred, please try again later."
    My sync setting are set to sync automaticlly with my MobileMe account and the problem has been happening for 5 days without me being able to resolve. When I dismiss the messag eit keeps popping bavk up every 2/3 minutes
    I am using OS X v10.7.2. Can anyone advise how to resolve?
    Thanks
    Sean

    Just wanted to add:
    Even when I just change the name of the voice memo in iTunes I get the unknown error -13019.
    Name changes on the iPhone app are not reflected in iTunes (the still have the date/time stamp as a name there). But sync works.
    When I change the name in iTunes too to match the name on the iPhone the sync is not working.

  • I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    I can no longer back up my iphone to my computer on selecting 'sync'. I can back up to iCloud but I get an error message telling me I cannot backup to my Mac. Can any one help? It's driving me crazy!

    Hello joelfromn. charleston,
    It seems you are unable to activate iMessage on a device with no carrier service. The following article provides information regarding activation issues:
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    Check your device settings
    Make sure that you’re connected to a cellular data or Wi-Fi network. If you're using an iPhone, you'll need SMS messaging to activate your phone number with iMessage and FaceTime. Depending on your carrier, you might be charged for this SMS.
    Go to Settings > General > Date & Time and make sure that your time zone is set up correctly.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • My i tunes won't open. i keep getting error7 (windows error 193) . contacted microsoft(thought it was a windows thing...not) have uninstalled itunes and everything related to it ,re installed and message still comes up. Help please,driving me crazy.

    help. my iTunes wont open. I keep getting the message error7 (windows error 193). contacted Microsoft they said contact iTunes support. I have uninstalled all iTunes componets and then reinstalled everything but message still comes up... its driving me crazy.

    If it's a Windows error, it's typically going to be a Microsoft problem. Uninstall any security software you have and if you have a restore point for your PC, you may want to restore your PC back to when iTunes was working normally. If none of those work you would need to contact Microsoft and demand help.

  • Auto Sync driving me crazy!

    Hi can anyone help me.
    Im using LR CC and when i select 2 or more images in develop module and make changes (when auto sync is selected) only my visible image changes (not all selected images).
    what am I doing wrong? its driving me crazy!!
    any advice appreciated
    Andrew

    Never heard of such a thing - are you sure auto-sync is enabled in develop module?
    Note: Develop module and Library module both have a separate auto-sync control (i.e. one can be enabled and the other disabled).
    Are you saying that the other images are not appearing changed (previews in filmstrip not being updated), or their settings are not being changed (develop settings unaltered).

Maybe you are looking for

  • ITunes has stopped working - iTunes 12.1

    I just updated iTunes 12 to 12.1 on two Windows 7 x64 systems. On both systems, iTunes fails to run now although 12.0 ran perfectly. Upon clicking on the iTunes program icon, I get a dialog:           Runtime Error!           Program:  C:\Program Fil

  • HT1044 Issues w/Low Resolution when trying to print pics from Iphone 4s

    Been trying CONTINUALLY to print images from my Iphone 4S.  Example, uploaded a few pictures from phone to Kodak site.  Get error message, "Low Resolution, may print blurry", message for the photos.  Yes, They DID print blurry.  Recommended by someon

  • Printer selection problems iPhoto 6

    Since upgrading to iPhoto 6, I have to change my default printer in the printer setup utility in order to print to the printer I want. Before the upgrade I simply selected the printer I wanted to print on in the print menu (just like in any other app

  • How to download ESS EHP4 BP

    Hi, Please provide me the path in the service market place to download the ESS EHP4 BP. Thanks, Anumit

  • My os x lion download is taking ages. does anyone know why?

    i started the download at 6pm yesterday and it is only 3/4 of the way there now, almost 24 hours later! if i cancel it and then start the download again, will i be charged twice? thanks james