HT4103 have a problem with shared file does not exist? used sudo but "no file in directory". i think the problem is from when i tried to move itunes files to an external drive to save space on laptop, cant remember what i actually did!

followed support steps  (sudo) to recover itunes sync authorization "permission error" but did not work

i tried both steps but did not help: "disk utility" first aid and iTunes: Missing folder or incorrect permissions may prevent authorization.

Similar Messages

  • File does not exist: /www/public_html/null, referer:  - error in log file from IE8 and IE9

    I just updated an existing slide show that was created several months back. Since loading my new set of files to our web server, we keep getting the following error in our server log files when someone loads our page in IE8 and IE9:
    File does not exist: /www/public_html/null, referer:
    One of our programmers tracked the error to this line of code, but we're not sure what's causing it:
    Muse.Utils.addSelectorFn('#slideshowu70', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:6000,slideLinkStopsSlideShow:false,transitionStyle:'horizo ntal',lightboxEnabled_runtime:false,shuffle:false}); });/* #slideshowu70 */
    Any suggestions?
    Thanks!

    The errors aren't showing up on the client side, only in the server access logs. Every time the page is loaded with IE8 or IE9 and the Muse.Utils.addSelectorFn with the #slideshowu70 line is hit, it generates four errors in the server access logs.
    Our admin guy pulled the errors from where it was clicked on from the Adobe forum. He said it also appeared that you tested it with www added to the url (if this was when you were testing it)...
    [Mon Feb 04 13:58:57 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:00 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:08 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://stingrayboats.com/
    [Mon Feb 04 13:59:33 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    [Mon Feb 04 13:59:43 2013] [error] [client 121.242.198.2] File does not exist: /www/public_html/null, referer:http://www.stingrayboats.com/
    The reason we find it strange is because it did not result in errors with the previous version of the slideshow. The only thing that changed this time around is that I removed some slides and added additional ones, but I noticed that there is a lot of difference in the code and even the scripts that are used. And I did copy over all of the scripts, css files, etc., so it's using all of the new source files.
    I was hoping it was something that you guys had noticed if you review the access logs when you're testing. While it works perfectly on the client side, the IT guys do go through our access logs, so it would be nice to eliminate the errors.
    Thanks for looking at it!

  • Error: An error occurred importing the file. Detail: File does not exist or

    Hi,
    I am getting the error the below error while importing the file in FDM. I have read and write access to the folder. I tried loading text and excel files, I am getting the same error.
    An error occurred importing the file.
    Detail: File does not exist or access denied.
    Thanks.

    Hi Tony,
    Thanks for the reply.
    I have Oracle Database and the version is 11.1.0.7; So even for this version do I need to have SQLLDR.exe on the server where FDM is installed.
    Thanks,
    Edited by: user10720012 on May 16, 2011 11:42 AM

  • Sender File adpter --don't raise alerts when file does not exist in folder

    Hi,
    My Scenario is File --- >XI ---> SAP.
    I must archieve the file after it got polled. and iam polling for every 60 mins, if the file does not exist,it is throwing an alert like "Could not process file '.file..xml: No such file or directory '
    Is there any way i can avoid raising an alert if file does not exist in the source folder.
    we are on XI 3.0 sp23?
    Thanks
    Srini

    Hello,
    Your Subject:
    >Sender File adpter --don't raise alerts when file does not exist in folder
    is contradictory to your question.
    >if the file does not exist,it is throwing an alert like "Could not process file '.file..xml: No such file or directory '
    > Is there any way i can avoid raising an alert if file does not exist in the source folder.
    I know you want to say "Don't Raise alerts when file does not exist in folder". Correct me if I am wrong.
    Some times it happens, when we write the right thing but it means something else and this is the reason many experts have replied, "how to raise an alert". So if you remove the word "Sender File adapter" from your subject then it will be easy to understand the exact meaning.
    Regards,
    Sarvesh

  • Itunes Producer Problems Uploading - File not saving - file does not Exist.

    Can someone please help me out, this problem is killing me. I've uploaded over 200 UPC Albums using Old G3 and Elderly ITunes Producer, but apple asked me to upgrade, so new machine to me Macmini maverics 10.9.? ITunes Producer 3.1.
    So I click open ITunes producer 3.1. Click on make project from Audio
    Files. Name and Save the project in Music-ITunes Producer-Playlists.
    Plug in my external Flash drive and import the 40 Audio files for the
    project. I am using an external flash drive as I can’t get ITunes Producer to
    see my internal hard disk, I do not know if this is normal??
    Go through the process of saving the project to Music – ITunes Producer –
    Playlists – in this case 5060101121313
    I then go through name all Tracks and make sure that all Data is correct.
    Then when I finally go to either save the document or send it to you I get the
    first Screen shot saying
    "The Document "5060101121313" COULD NOT BE SAVED. The File does not exist".
    As I say I have delivered 200 UPC’s to you with the old software and never
    had any problems, I am in urgent need of making significant delivery to you so
    would appreciate you help ASAP.
    Paul

    I have been victorious. Now I am going to post my solution for all those that may have the same problem in the future. I'll even throw in a few key words so it will be more easily found by the search engine.
    Connection conn = null;
            try{
                //connect to database
                DAOManager dao = new DAOManager();
                conn = dao.connectToDB();
                String query = "update ASSIGNMENT set file_object = ?, filename = ?, filetype = ? where a_key = 1"; //sql query
                PreparedStatement pstmt = conn.prepareStatement(query);
                ByteArrayOutputStream baostream = new ByteArrayOutputStream();
                //write to output stream
                byte[] buffer = new byte[1024];
                int len = -1;
                while ((len = instream.read(buffer)) >= 0 )
                    baostream.write(buffer, 0, len);
                baostream.flush();
                byte[] filebytes = baostream.toByteArray();
                baostream.close();
                pstmt.setBytes(1,filebytes); //set blob
                pstmt.setString(2,filename);
                pstmt.setString(3,filetype);
                pstmt.executeUpdate();
                pstmt.close();
            catch (SQLException e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error uploading file -- " + e);
                e.printStackTrace();
            catch (Exception e) {
                System.out.println(Tools.getLoggingDate() + " upload() Error: " + e);
            finally {
                try{
                    conn.close();
                }catch (SQLException e) {}
            }Keywords: setBinaryStream(), setBytes(), MySQL, upload file, InputStream, Blob

  • Error when opening indd-file: Either the file does not exist, you do not have permission, or the...

    Hi! I'm having trouble opening a indd-file. It was sent to me as a zip-fil along with the used fonts and links. When I try to open the file, I'm getting this error: "Either the file does not exist, you do not have permission, or the file may be in use by another application". I've tried to look up this error both here in these forums and through google, but can't find a similar case. Hope someone can help me with this. Please let me know if you need more information/details, and I'll provide. Thanks!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    I'm suspecting it to come from a mac user, if that could influence the case...
    It does come from a Mac, as is proven by the fonts, which are of no use on my Windows machine, but that doesn't prevent my CS4 to open it without any problem. It seems to me it's a perfectly regular CS2 file.
    Just for cheers I set the file to Read-only, but my InDesign opens it regardless (again as a copy, because it's a "converted" file).
    Could it be something in your environment? No network read/write privileges, insufficient free hard disk space, stuff like that?

  • Error message Indesign:Either the file does not exist, you do not have read access to it, or use the file in another application.

    I've got problem with opening a file in InDesign. The file type is an InDesign Markup Document. The error message is: Either the file does not exist, you do not have read access to it, or use the file in another application. What's wrong?

  • I cannot log into facebook. I get the following message: 404 Error - Not Found The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request,

    I am not able to go to the facebook site. www.facebook.com is not working. I get the following error message. 404 Error - Not Found
    The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request, or the file is not accessible in the requested directory. Please verify that:
    * You have used the proper case; requests ARE case-sensitive!
    * You have entered the URL correctly. (i.e. proper directory/filename)
    * You used the FULL URL. (i.e. proper file type: .html, .gif , .jpg, etc.)
    * You use a tilde (~) before user directories. (i.e. www.furcen.org/~jurann/ )
    * The user/file still exists on this server.
    I also get redirected to "Busca Google" when typing www.facebook.com in the address bar.
    == URL of affected sites ==
    http://facebook.com; buscagoogle.com

    I have the same problem and it does not have to do with firefox. Do you have any idea how to fix it through?

  • I have created a data module in s1000d application of framemaker 10.While publishing it in publication module it says"File does not exist".

    1- I have created a data module in s1000d application of framemaker 10.While publishing it in publication module it says”File does not exist”.
    2- Does FrameMaker 10 supports s1000d 4.1 ?

    See Lorna...it's almost second nature to you now,
    editing those js files! I TOLD you you could do it!
    Mark, it's EERIE that you should say this to me today because this is exactly what I have been thinking! I can put a song on a page with one eye shut now, and I can zip around those files pretty well (except for the recent fiasco where I didn't even look at the right folder). I also notice that the level of my writing is sounding more technical and familiar with digital world jargon. I remember how you told me I could do it, and you were right. You all were right and I feel more knowledgeable and at a point where I suspect that I can take steps on my own. HTML is a strange land, but just being able to edit that .js file and FIND it by navigating for it in Text Edit has made me feel much more competent.
    Before iWeb I didn't realize what Text Edit was for. I used it to take quick fast short notes. I never understood that concept of "opening something up in so and so application." The first time I clicked OPEN in Text Edit, and I saw all those danged files staring at me with beady eyes, I wanted to throw a white hanky and run for the hills. Not any more!
    Lorna in Southern California

  • File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif

    Seeing this error in the apache log:
    File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif
    I know there are spacer.gif files under the theme folders but why is it looking for a spacer.gif file in the images folder? Is this a bug?

    Hello,
    Yes I just checked it's a problem with theme 9 there are a couple of places where the theme calls #IMAGE_PREFIX#spacer.gif when it should call #IMAGE_PREFIX#themes/theme_9/spacer.gif
    There are two ways for you to fix this
    1. Copy themes/theme_9/spacer.gif to the top level images directory, I recommend this one because then if someone creates the theme from the repository again it wont' come up agian.
    2. Change all #IMAGE_PREFIX#spacer.gif to #IMAGE_PREFIX#themes/theme_9/spacer.gif in theme 9, if you export the theme you can just us a search and replace the export to do this and then reapply the theme.
    This as been bugged and will get fixed in future version.
    Carl

  • Either the file does not exist, you do not have permission, or the file may be in use

    Had this file open this morning all the sudden Im getting this error.
    Either the file does not exist, you do not have permission, or the file may be in use
    Useing win 7 64bit.
    I think its version 6
    Thanks

    Was it properly closed? There may still be a lock file (.idlk) in the folder where it is saved.

  • File does not exist: /oa_servlets/AppsLogin-Urgent plz

    Hi;
    I have r11.5.9 on AIX 5.2 i create one new AIX 5.3 server give same IP and copy all folder from 5.2 to 5.3 wiht exact path.
    With same user i can open db+lsnr+apache on new 5.3 server But when i try to login EBS i can see login page also Ebuniess enter link but when i click it it thoruh 404 page can not found
    In apache log file i have File does not exist: /oa_servlets/AppsLogin, i can not find pages under $COMMONTOP on 5.2 and my new 5.3 server. But on 5.2 i canlogin system wihtout any issue
    All services start wihtout problem also db, i run autoconfig on appstier but when i try to run on dbtier it thotugh error:( I am not sure i need to run autoconfig on dbtier for upper erro)
    AutoConfig will consider the custom templates if present.
    Using ORACLE_HOME location : /xxx/xxdb/9.2.0
    /xxx/xxdb/9.2.0/jdk/bin/jre and /xxx/xxdb/9.2.0/jdk/9.2.0/jdk/bin/java not found Pass option 'java' on command line
    and yes there is no such a file like that. How i can solve those problem
    thanks

    Hussein i cant run autoconfig also preclone on dbtier but apps tier i could run autoconfig and its end wihtout error
    http://xx:8001/OA_HTML/jsp/fnd/aoljtest.jsp http://xxx:8001/pls/TEST2/FND_WEB.PING - too
    http://xx:8001/aplogon.html
    I cant open those too
    Fri Sep 17 19:49:00 2010] [error] [ File does not exist: /oa_servlets/AppsLogin
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=DiscoGroup, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=OACoreGroup, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:00:01 2010] [error] OPM: EW: Fail to start process with mod=JServ and grp=XmlSvcsGrp, it's possible that your configuration file is not correct.
    [Fri Sep 17 20:14:39 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:39 2010] [error] [] File does not exist:
    [Fri Sep 17 20:14:51 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:51 2010] [error] [] File does not exist:
    [Fri Sep 17 20:14:55 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:14:55 2010] [error] [] File does not exist:
    [Fri Sep 17 20:15:06 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:06 2010] [error] [ File does not exist: /servlets/Hello -
    [Fri Sep 17 20:15:11 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:11 2010] [error] [ File does not exist: /servlets/Hello
    [Fri Sep 17 20:15:14 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:14 2010] [error] [] File does not exist: /servlets/
    [Fri Sep 17 20:15:50 2010] [error] [] File does not exist: /xxxx/portal/oracle/_servlets/Hello
    [Fri Sep 17 20:15:59 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:15:59 2010] [error File does not exist: /oa_servlets/Hello
    [Fri Sep 17 20:16:15 2010] [error] OPM:Can not find one alive process
    [Fri Sep 17 20:16:15 2010] [error] [] File does not exist:
    [Fri Sep 17 20:18:04 2010] [error] script not found or unable to stat: /xx\xxora/8.0.6/tools/web60/cgi/ifcgi60

  • Error: File does not exist (while trying to get Petstore and demos to run)

    Hi all,
    I have been trying in vain to get the Petstore demo and other servlet demo HelloWorld to run. It seems to install okay cause it creates the directories and extracts the .ear or .war files. My problem is connecting to the application. When I run http://my.host:7778/estore or http://my.host/7778/HelloWorld/HelloWorld I get and error in the Apache error_log that says: File does not exist: c:/oracle/components/apache/apache/htdocs/helloworld/helloworld and File does not exist: c:/oracle/components/apache/apache/htdocs/estore
    I have looked and searched everywhere for help but to no avail. Under the WebModule the URL Binding is /HelloWorld and /estore.
    Please help me!!! I am going crazy with this.
    Thanks,
    Grant
    PS. I am running 9iAS 9.0.2.0.1 and everything is on 1 Windows 2000 (sp1) machine. Infrastructure and Components in separate dirs with port 7777 and 7778 for each.

    I'm having the same problem under a solaris system did anyone ever find the solution to this problem. For some reason the server just wants to use the document root instead of the deployed application directory.

  • Load file does not exist

    We have several users using OLS V4.2 on one of our citrix servers. However, one of our users can upload an excel sheet into OLS. She always gets the error :
    Package Result = Error]
    Package:                     Import excel V2
    Appset:                      Blagden
    Application:                 SALES
    Request Time:                2009-04-14 16:56:18
    Start   Time:                2009-04-14 16:56:18
    End     Time:                2009-04-14 16:56:18
    Total   Time:                00:00:00
    TOTAL STEPS  8
    1. Assign initial parameters:        completed  in 0 sec.
    2. Create Temp Table:                completed  in 0 sec.
    3. Transform Data Task1:             completed  in 0 sec.
    4. update:                           completed  in 0 sec.
    5. update rejected:                  completed  in 0 sec.
    6. Transform Data Task2:             completed  in 0 sec.
    7. Convert data:                     completed  in 0 sec.
    8. Load and process:                 Failed  in 0 sec.
    [Selection]
    XLFILE= DATAMANAGER\DATAFILES\FL_sales reporting outlooksoft_FL1_FL3_A2009_03.xls
    SHEET=TOTAL
    TRANSFORMATION= DATAMANGER\TRANSFORMATIONFILES\my Files\import historical data.xls
    CLEARDATA= No
    RUNLOGIC= Yes
    [Messages]
    [ The load file does not exist ]
    I deleted the user from the userlist and reprocessed security. I added the user again in the admin group and reporcessed user security. Same error.
    When the user logs on on citrix using her profile  and starts Webexcel using my profile - no problem.
    My profile has administrator rights and she may not have them. So I really want her into the usergroup.
    We renamed the file to upload to a file with 8 characters - same problem.
    Anyone any experience with this error and how to solve it ?
    Thanks for your reply.
    Johan

    Hello,
        From what I understand from your log file, this is a custom import package. It is failing into the last step, loading data into the cube and it seems there is no file to be loaded. If the same package is working well for the other users, this means that the user has not enough security rights to load data from that file (maybe the file contains data for which the user is not authorized to see).
       To understand better what is happening, just try to activate the debug using the DEBUG(ON) instruction into EvModifyPackage. This will create more information regarding the parameters passed to your tasks and you will be able to identify the file name passed to Dump&Load task.
    You can verify then into Private publication\user name\Temp files the content of file (and the content of all temporary files generated by your package) and this will help you to understand where is the problem.
    Hope this can help you,
    Mihaela

  • File does not exist after ftp downloading

    Hi all,
    I have a really strange problem.
    I'm getting a file from a remote server (ftp "get"), the process ends with no exceptions, but when I go to the specific directory where the file should have been - there is nothing there.
    I tried to get the file manually through acommand line ftp and it succeeded, but performing the same operation in the java code gives me no result.
    I also scanned the entire hard-disks but again - the file does not exist anywhere.
    Any idea? Anyone?

    performing the same
    operation in the java code gives me no result.Obviously not the same operation. As Hiwa says, impossible to say further without some code.

Maybe you are looking for

  • Disp+work stop because of shared memory?

    Hello Gurus, I have an SAP server that will not start. It was running previously, but after a parameter update and an instance restart, I cannot get the dispatcher running. System is Windows 2012 Server, MSSQL 2008 R2, 16 Core 132 GB RAM. I believe i

  • Creation of Sales Order through EDI

    Hi Can anybody explain in detail the configuration steps involved in creating the sales order through EDI. If possible with screen shots. Points will be rewarded. Thanking you chan

  • Some of the SQL Server 2012 are not getting monitored in SCOM 2012 SP1.( basics monitoring is happening, expect SQL role)

    Found that all the SQL servers are getting monitored, expect few servers which are having SQL server 2012 role. proxy is enabled for these servers, when I checked discovered inventory for SQL 2012 database unable to find these servers in that list. a

  • Problem Performing 1:N multi-mapping in ccBPM

    Hi, I am trying to work out this simple scenario with the help of BPM.      1. The BPM is receiving a Collection of Purchase Orders(say PO_Collection consisting of N PO).      2. The Message is split by Transformation state(1:N) to N POs.(PO is Multi

  • Mial Package with Attachments

    Hi All, We have setup the mail package and created the appropriate message maps where we now send emails out from XI for certain message types. This works great but we want to also send document attachments with our current message. If I check the ke