TS1424 File doesn't exist but says it's installed.

Purchased app. Says installed but won't let me download.

It's not the AppleScript that's failing, but more likely the shell script.
It's likely that AppleScript is calling the perlscript.pl file just fine, but perlscript.pl is failing because it can't find a file. That error gets passed back to AppleScript, and AppleScript reports it to you as the user.
The reason behind the failure is almost certainly because you're relying on some element of the user's environment  that doesn't exist in the do shell script environment - most typically $PATH.
For example, your user's $PATH may include the path to perl, but the do shell script's environment does not. If that's the case, then writing the first line of the script as:
#! perl
will work when called from your shell, but may fail when called from do shell script if the $PATH isn't configured.
The solution? Look at the perlscript.pl and make sure you're using absolute paths where necessary - at the very least it'll need a full path for /usr/bin/perl, but maybe also other files referenced by the script.

Similar Messages

  • Hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder go it says this file doesn't exist. can some1 plz help?

    hi when i open my application folder, all the application is shown in trash folder. when i click the application it says this app is in trash first move it out. and when i try to open through finder> go it says this file doesn't exist. can some1 plz help? how can i put all my application through application folder?

    Something really odd is going on. In your first screen shot, I noticed that the Applications folder does not have the proper icon displayed in the side bar. Also, in the title bar it lists it as Applications 08-59-29-909.
    Not sure where it's picking up that odd name, unless it's because it's still truly within the Trash folder.
    Try this. In the Finder > Preferences > General > turn on "Always open folders in a new window". (I have a feeling you have the default setting with this off).
    Now, in Finder > Go > move down and open the Applications Folder from there. Now open the folder where you see all your applications that you show in your screen shot, select all, and move them to this true appliactions folder.
    This is what you should properly seeing (but with different apps listed):
    See how the Applications folder has the icon of the letter A shaped with a pencil, ruler & pen.

  • Dashboard doesn't work and com.apple.dashboard* files doesn't exist

    Like the headline says, my dashboard doesn't work at all, and my com.apple.dashboard* -files doesn't exist in the preferences file.
    Is there annyway to redownload or reinstall it?
    Please help!

    Hello there,
    Have you tried killing the Dock Process through Activity monitoring and then relaunching it? I would also try logging out and then back in or doing a complete reboot of the machine to see if that helps.
    If still no luck, it may be a good idea to trash the dashboard preference file.
    The two dashboard preference files are in the following directory:
    yourusername -> Library -> Preferences ->
    The file names are:
    com.apple.dashboard.client.plist
    com.apple.dashboard.plist
    Hope this helps.
    B-rock

  • File doesn't exist in lightroom 2

    hi.  when i try exporting my pictures it says the file doesnt exist...can they be found anywhere?
    thank you
    esther

    nwbazl,
    >When I try to update cache for patch MS11-003 Cumulative Security Update
    >for Internet Explorer 7 Dynamic Installer for Windows XP (KB2482017)
    >cache status displays failed and error detail displays Signature file
    >doesn't exist.
    Just had this happen to me. I was able to fix it by re-caching the patch.
    (Server-side)
    Jared Jennings
    Senior Systems Engineer, Computer Integrated Services (CIS)
    http://www.ciscony.com
    My Blog and Wiki with Tips, Tricks, and Tutorials
    http://jaredjennings.org
    Twitter@ jaredljennings

  • Attempting to upgarde itunes and I get an error message looking for "an alternate path to a folder containing 'iTunes.msi' location.  I've searched my hard drive and the file doesn't exist.  What to do?

    Attempting to upgarde itunes and I get an error message looking for "an alternate path to a folder containing 'iTunes.msi' location.  I've searched my hard drive and the file doesn't exist.  What to do?

    This worked...found on a prior discussion:
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page)...
    http://majorgeeks.com/download.php?det=4459
    From the link above (near the top of the page)....Under 'download locations'   click on 'download@majorgeeks'
    To install the utility, doubleclick the msicuu2.exe file you just downloaded and ran.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Restart your computer.
    Re-download Itunes (latest version form Itunes website) and install.  It worked!

  • When I rec videos with iPhone 5 the sound doesn't exist but only a annoying noise..WHY?!

    Suddenly now when I rec videos with iPhone 5 the sound doesn't exist but only a annoying noise..WHY?!

    Only songs that are physically stored on the iOS device can be deleted with a swipe. Songs that have been listened to, and are in the temporary cache, apparently can not be deleted with a swipe. The easiest way to get rid of these songs is to go to Settings > General > Usage, tap Music (you may need to scroll down in the list), swipe across "all music" then tap the delete button. This will delete ALL music on the device.
    Also, iCloud and iTunes Match are not the same service.

  • Signature file doesn't exist in Cache Status Patch Manageme

    When I try to update cache for patch MS11-003 Cumulative Security Update for Internet Explorer 7 Dynamic Installer for Windows XP (KB2482017) cache status displays failed and error detail displays Signature file doesn't exist.
    Does anyone know how resolve this issue?
    Thanks in advance.

    nwbazl,
    >When I try to update cache for patch MS11-003 Cumulative Security Update
    >for Internet Explorer 7 Dynamic Installer for Windows XP (KB2482017)
    >cache status displays failed and error detail displays Signature file
    >doesn't exist.
    Just had this happen to me. I was able to fix it by re-caching the patch.
    (Server-side)
    Jared Jennings
    Senior Systems Engineer, Computer Integrated Services (CIS)
    http://www.ciscony.com
    My Blog and Wiki with Tips, Tricks, and Tutorials
    http://jaredjennings.org
    Twitter@ jaredljennings

  • Trying to Do TotPlan Refresh but TotPlan.dmp file doesn't exist

    I tried using C:\demos\TotPlan\PLN\Batch\Refresh_demo_TotPlan.bat , however I get an error when it tries to restore ORCL db using backup file -
    C:\demos\TotPlan\PLN\Backup\TotPlan.dmp . I search my drive and there is no .dmp file anywhere on the drive. Is this an issue with the Vlamis version of the drive for partners or are all EPM 11.1.1 Demo iamges missing this file? If someone has the .dmp file, please send it (zipped or non-zipped) to [email protected]

    It's not the AppleScript that's failing, but more likely the shell script.
    It's likely that AppleScript is calling the perlscript.pl file just fine, but perlscript.pl is failing because it can't find a file. That error gets passed back to AppleScript, and AppleScript reports it to you as the user.
    The reason behind the failure is almost certainly because you're relying on some element of the user's environment  that doesn't exist in the do shell script environment - most typically $PATH.
    For example, your user's $PATH may include the path to perl, but the do shell script's environment does not. If that's the case, then writing the first line of the script as:
    #! perl
    will work when called from your shell, but may fail when called from do shell script if the $PATH isn't configured.
    The solution? Look at the perlscript.pl and make sure you're using absolute paths where necessary - at the very least it'll need a full path for /usr/bin/perl, but maybe also other files referenced by the script.

  • ITunes error 13010, but this 'iTunes Library Genius.itdb' file doesn't exist...?

    I had to force quit iTunes and since then it won't open again, showing that godawful 13010 error that so many people seem to get. I searched through the forum and everyone keeps saying to delete the file 'iTunes Library Genius.itdb' but I've looked everywhere and that files DOES NOT EXIST on my macbook. How can I fix my iTunes, what's going on?

    Oh boy.  Ok the answer here is not good.  The database that iTunes holds all the song info in is hosed.
    First try re-installing iTunes.  This has almost no shot of doing anything, but it is worth a try since the next option is a HUGE pain.
    When that does not work go with all the song info is hosed.  So in your <User>/Music/iTunes folder you need to delete the files listed below if they are there.  Then restart iTunes.  You are going to have to re-import all of your content since this is deleting all the index information iTunes has about where the files are at.
    iTunes Library Genius.itdb
    iTunes Library Extras.itdb
    iTunes Library.itl
    iTunes Music Library.xml

  • Write to text file. Append to existing file. Create file if file doesn't exist.

    Hi folks,
    up to LabVIEW 7 there was a wonderful "Write to Text File" vi which allowed the option "Append to File". Now, in LabVIEW 8, this old vi is not longer supported anymore. Instead, I am suggested to use a new "Write to Text File" vi. This vi does not offer the option "Append to File" anymore. Rather it is proposed in the online help that one should use the "Set File Position" in order to append text to the file. This much less straightforward than the old solution. Furthermore, I miss an option which would create the complete path if it doesn't exist yet.
    To summarize: Isn't there really any smart "Write to Text File" vi available which offers both the options "Append" and "Create path if file does not yet exist". Of course, I could write such a file on my own but I am sure that it is of such general interest that it already exist. In any situation, when a log file shall be written, the wanted vi would be ideal.
    Thanks a lot,
    Peter

    Ray,
    I know that the old vi is still available. See the screenshot which I attach to this message. What I am missing is an option "Create file or even complete path if file or path do not yet exist.". Is there any reason why NI doesn't provide neither this option nor a simple "Append to file" functionality in the new "Write to Text File" vi?
    Regards,
    Peter
    Attachments:
    Clipboard01.png ‏7 KB

  • How to determine whether a file doesn't exist or doesn't have enough perms

    Hello everone,
    I am stuck in determining whether a file does not exist or does not have enough permissions so that access to this file is denied?". I am using
    java.io.File.exists() or java.io.File.canRead() methods to check this but both of them just return false in both above mentioned cases.
              In the documentation however its mentioned that these method throw SecurityException - If a security manager exists and its SecurityManager.checkRead(java.lang.String) method denies read access to the file. But then problem is to write a security manager which denies
    read access if the file does not have permissions so that exception can the thrown.
    Any suggestions or pointers will be highly appreciated.
    Thank You.
    Regards,
    Vikash Kumar

    Some platforms will let you rename or remove an open
    file.Unless those platforms support file locking, and the file has a lock on it.

  • File doesn't exist e:\as_apps\apache\apache\htdocs\index.html

    I have a OracleAS 10g server setup and I placed the this in the CGICMD.DAT file
    cgicmd.dat file
    I put this in the cgicmd.dat file in the Apps home and the reports/forms home.
    hpl: destype=cache server=rep_cte07 userid=hplwebr/internet@hplprd %*
    cscprd: destype=cache server=rep_cte07 userid=internet/reports@cscprd %*
    cscdev: destype=cache server=rep_cte07 userid=bat/job@cscdev %*
    In the rep_cte07.conf File I made these changes and it was in both places.
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1"
    maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000">
    <property name="sourceDir" value="E:\GMCD_web_reports"/>
    <property name="tempDir" value="c:\temp"/>
    And put the patch to the reports in the my rep_cte07.conf file but when I run the reports the screen gets white and stays that way.
    The error file only states this:
    [Tue Dec 28 07:00:10 2004] [error] [client 127.0.0.1] [ecid: 1104235210:172.25.94.105:1908:12772:865,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:00:30 2004] [error] [client 127.0.0.1] [ecid: 1104235230:172.25.94.105:1908:12880:923,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:00:50 2004] [error] [client 127.0.0.1] [ecid: 1104235250:172.25.94.105:1908:12948:910,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:01:10 2004] [error] [client 127.0.0.1] [ecid: 1104235270:172.25.94.105:1908:14136:901,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:01:30 2004] [error] [client 127.0.0.1] [ecid: 1104235290:172.25.94.105:1908:12948:911,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:01:50 2004] [error] [client 127.0.0.1] [ecid: 1104235310:172.25.94.105:1908:4060:932,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:02:10 2004] [error] [client 127.0.0.1] [ecid: 1104235330:172.25.94.105:1908:3656:911,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    [Tue Dec 28 07:02:30 2004] [error] [client 127.0.0.1] [ecid: 1104235350:172.25.94.105:1908:1380:900,0] File does not exist: e:/home_apps/apache/apache/htdocs/index.html
    Can anyone please help me out.
    Thanks, so much

    Hi,
    I saw the same problem once I changed the docRoot of apache. in one of the opmn config file I saw reference to this index.html. I workedaround it by adding empty index.html to the docRoot.
    Best,
    EA

  • Powershell reports that AD group doesn't exist (but it does)

    Starting about two weeks ago, my Powershell script to verify that groups exist before attempting to add a user to them has started reporting that a particular group does not exist, even though it does. 
    It's not a new group, it doesn't have a horrific number of members, it's set up the same way as similar groups, has been around for a long time, has the same properties as similar groups, it's not disabled, etc.  From the AD side I can see absolutely
    nothing wrong.  I can add users to it with no problem.  And yet Get-ADGroup insists that it doesn't exist.
    I know this isn't a Powershell failure because it's accurately finding every other group.  It's just this particular one. 
    I did notify our "AD guy" but he hasn't had time to look into it.  I'm hoping that I can get a jump-start on identifying and thus fixing the problem by posting this question.
    I apologize for the lack of detail - I'll be happy to provide more info if I know what you need!

    Does this happen from all computers running powershell or just one? Are you using the full dn when referencing the group
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:
    It is happening to any user on any computer.  We're not using the full dn - the cmdlet used is "get-adgroup 'admin-mke'.  Interestingly though, when I tried the dn instead, it does find the group:  get-adgroup -identity 'cn=admin-mke,ou=exchange
    groups,dc=na,dc=qb,dc=llp'.
    Does that suggest that it IS a Powershell issue after all?  It's just strange because it used to work, and all the other groups can be found with the simpler cmdlet.

  • File api - directory exists but returns false.

    Flash Media Server 4.
    in main.asc - onconnect.
    var my_dir = new File("/xxx/yyy/atest");
    trace(my_dir.exists); // false
    if ( my_dir.isDirectory ) // false
    Do I need to configure something to use API.
    I know the directory exists and as shown below.
    under the directory /xxx/yyy/
    drwxrwsr-x 2 flash content 512 May  3  2011 atest
    Thanks

    I tried using symlink from the application and tried still it failed. I also
    tested creating local directory it failed.
    /opt/app/adobe/fms/applications/myapp - location of app
    /content - nas location
    under myapp directory created a symlink to /content
    ln -s /content .
    under myapp directory it created a content directory.
    I tried to access content/my_test - directory and it gives false.
    Do I need to enable something here to to know if the file or directory
    exists.
    I also tested by created a local directory and tested it also fails.
    #Version: 1.0
    #Start-Date: 2011-05-05 11:27:17
    #Software: Adobe Flash Media Server 4.0.0 r1121 x86
    Thanks for all the help.

  • What is wrong with this program it keeps telling me the file doesn't exist?

    this program is supposed to write the file so why does it need the file to already exist?
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.ArrayList;
    import java.util.Scanner;
    public class NewClass implements ActionListener{
        static List list = new List();
        static TextField input = new TextField(20);
        static Button submit = new Button("Submit");
        static Frame f = new Frame("RealmList editor");
        static File file = new File("/Applications/World of Warcraft/realmlist.wtf");
        static Label status = new Label("");
        static Button selected = new Button("Change to Selected");
        static File config = new File("/Applications/RealmLister/config.txt");
        static File dir = new File("/Applications/RealmLister/");
        public static void main(String[] args) {
            f.setLayout(new BorderLayout());
            f.add(list, BorderLayout.CENTER);
            Panel p = new Panel();
            p.add(input);
            p.add(submit);
            p.add(selected);
            f.add(p, BorderLayout.NORTH);
            f.add(status, BorderLayout.SOUTH);
            new NewClass();
            f.setSize(500,500);
            f.setVisible(true);
            try {
                loadConfig();
            } catch(Exception e) {}
            f.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent we) {
                    try {
                      writeConfig();
                      System.exit(0);
                    } catch(Exception e) {
                       status.setText("Error: config couldn't be written!("+e+")");
        public NewClass() {
            submit.addActionListener(this);
            input.addKeyListener(new KeyAdapter() {
                public void keyPressed(KeyEvent e) {
                    if(e.getKeyCode() == KeyEvent.VK_ENTER) {
                    try {
                    editRealmlist(input.getText(), true);
                    input.setText("");
                 catch(Exception ex) {
                   status.setText("Error: "+e);
            selected.addActionListener(this);
        public void actionPerformed(ActionEvent e) {
            if(e.getSource() == submit) {
                try {
                    editRealmlist(input.getText(), true);
                    input.setText("");
                } catch(Exception ex) {
                   status.setText("Error: "+e);
                   wait(3000);
                   status.setText("");
            if(e.getSource() == selected) {
                try {
                    editRealmlist(list.getSelectedItem(),false);
                } catch(Exception ex) {
                    status.setText("Error: "+e);
                    wait(3000);
                    status.setText("");
        public static void loadConfig() throws Exception{
            if(config.exists()) {
                Scanner scan = new Scanner(config);
                ArrayList<String> al = new ArrayList<String>();
                while(scan.hasNext()) {
                    al.add(scan.nextLine());
                for(int i = 0; i < al.size(); i++) {
                    list.add(al.get(i));
        public static void writeConfig() throws Exception{
            FileWriter fw = new FileWriter(config);
            dir.mkdir();
            config.mkdirs();
            String temp = "";
            for(int i = 0; i < list.getItemCount(); i++) {
                temp += list.getItem(i)+"\n";
            fw.write(temp);
            fw.flush();
            System.gc();
        public static void editRealmlist(String realm, boolean addtoList) throws Exception{
            FileWriter fw = new FileWriter(file);
            fw.write("set realmlist "+realm+"\nset patchlist us.version.worldofwarcraft.com");
            fw.flush();
            status.setText("Editing RealmList.wtf Please Wait...");
            Thread.sleep(3000);
            status.setText("");
            System.gc();
            if(addtoList)
                list.add(realm);
        public void wait(int time) {
            try {
                Thread.sleep(time);
            catch(Exception e) {}
    }

    Erm, you should call mkdirs() on a File object that represents a directory.

Maybe you are looking for

  • Ipod Touch Apps NOT syncing (Bonus: manually managing smart playlist)

    Can Someone Please Explain this to me simply? 1) I have a 32GB ipod Touch and it will NOT let me do anything with my apps from my itunes. I click on my ipod touch under devices on itunes. Then I click on apps next to summary and the entire section is

  • Slow broadband since 3 days

    Hi, I got BT fot 1 year and everything was all right. But for 3 days now it's very slow.  Normaly I got 5m, now it's 300ko ! Stange thing : It was working at 3am this morning (5mega), but not anymore.  I tried to reset/restart the box, it still the s

  • Error occured during the "test of the interface"

    Hi,everybody where I do the "Test Configuration" in the ID(Tools->Test Configuration),an error occured. Internal Error                      HTTP connection to ABAP Runtime failed.             Error:403ForbiddenURL:http://NEUESDNWXI01:8001/sap/xi/simu

  • Aperture vs Lightroom Color Renderign

    Like many I have downloaded the Lightroon beta to stack against Aperture. It is an interesting excercise to run the two side by side on a 30" screen. Takes a bit of grunt..... I have a question that maybe someone can answer: If I open the same image

  • What are trojan horses

    What are Trojan horses