URGENT HELP : CANNOT ACCESS FILES/FOLDERS in my IPOD :(

Folks,
Two days back, i dropped my IPOD Video and since then it has gone nuts. I used to use it as storage device and have around 70 GB of data stored in it. Now when i connect my IPOD video to my PC through USB cable, though i can see the folders i cannot open the files or folders. it says following on the pop up - cannot open and read the file.
also all my videos and mp4 songs have been deleted from my ipod. god knows how.
can someone help

Dropping the iPod might have caused the reason into this problem. For what I do is I keep my set of music & videos into a seperate USB flash and computer. I'm not an iPod expert but you might want to have it fixed at a local store that can fix iPods. Look into the apple website to find further instructions. For the worse, you probably will lose your files.

Similar Messages

  • Cannot access file from JApplet

    I have used the swingall.jar file with my JApplet for any
    version of IE. It gives one error
    i.e
    Cannot access file c:\prog\project
    I want to create a directory within c:\prog and also i want
    to write some files there. Pls help me.

    try this my friend!
    1.     Compile the applet
    2.     Create a JAR file
    3.     Generate Keys
    4.     Sign the JAR file
    5.     Export the Public Key Certificate
    6.     Import the Certificate as a Trusted Certificate
    7.     Create the policy file
    8.     Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1.     Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2.     Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3.     Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4.     Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5.     Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6.     Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7.     Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
         permission java.security.AllPermission;
    8.     Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9.     Run the Applet in Browser
    Download JRE 1.3 from Javasoft
    save this to write.jp
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant {
    permission java.security.AllPermission;
    save this to signedAppletDemo.java
    * File: @(#)SignedAppletDemo.java     1.1
    * Comment:     Signed Applet Demo
    * @(#)author: Satya Dodda
    * @(#)version: 1.1
    * @(#)date: 98/10/01
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.io.*;
    import java.awt.Color;
    * A simple Signed Applet Demo
    public class SignedAppletDemo extends Applet {
    public String test() {
    setBackground(Color.white);
         System.out.println(System.getProperty("user.home"));
         String fileName = System.getProperty("user.home") +
                        System.getProperty("file.separator") +
                        "newfile";
         String msg = "This message was written by a signed applet!!!\n";
         String s ;
         try {
         FileWriter fos = new FileWriter(fileName);
         fos.write(msg, 0, msg.length());
         fos.close();
         s = new String("Successfully created file :" + fileName);
         } catch (Exception e) {
         System.out.println("Exception e = " + e);
         e.printStackTrace();
         s = new String("Unable to create file : " + fileName);
         return s;
    public void paint(Graphics g) {
    g.setColor(Color.blue);
    g.drawString("Signed Applet Demo", 120, 50);
    g.setColor(Color.magenta);
    g.drawString(test(), 50, 100);

  • ACS 4.2.(1) build15 - replication failed with Cannot access file

    Just upgraded from 4.0 - to 4.2 then to 4.2.1 15. As you may have seen with periovous posts of mine its not been an esay ride.
    I have now managed to get it all working - backups AAA etc but for some reason i cannot get the replication to work! Its states the following...
    Within the Database Replication active log - Error OutBound database replication failed - refer to CSAuth log file.
    Other lines in the log state  its ok eg - Component logging reports was updated - being replicated to slave...
    Looking at the CSAuth log file...
    .....DBReplication thread kicked..starting sync.
    ODBC Operation failed with the folowing information: Message = [Sybase] [ODBC Driver] [Adaptive Server Anywhere] Cannot access file "D:$etworks\CiscoSecure 4.2\CSAuth\DbSyncSratch\users\users.dat~ -- Invailed argument, sqlStates=S1000, Native error = -602$
    SL:saveUserTable - execution Failed.
    Please note that the $ is a symbol that i have used because the symbol in the log is strange and i  cannot seem to be able replicate here with this text, for example $etworks - should be networks...
    Everything else seems to be working except this - any help would be great..
    Oh Merry Xmas and Happy new year to you all!
    John

    Did you find a solution?
    I have the same problem with the exact same symptoms - I can't get replication to work. The path name in the error message is missing the first letter, too.
    PS: It has nothing to do with the firewall, the replication fails even before it tries to connect to the network.
    Greetings
    Mathias Rufer

  • Cannot access files on Android phone

    Hello! I just setup a WD My Cloud 3TB and copied some pictures to a private share.  When using WD My Cloud app on my android phone, these pictures are getting listed; however, when I try to launch/open any picture, I get the message "cannot access file." Also, on WD Photos app, I get the message "No photos found." On my Windows 8 PC, using WD My Cloud, I can see and open pictures. No problem here. The problem seems to be only through remotely. I'm puzzled why I'm presented the list of pictures but when I try to open I'm not allowed to. Thanks for your attention!Ravi.

    denisdyer wrote:
    Hi,I hope you can help, I'm having exactly the sam eissue. I bought the my cloud yesterday have uploaded about 1TB of photos and video and i can access everything no problem except the photos. When I try and open any of the photos form my samsung galaxy S5 I get the spinning circle and then it says the photo cannot be accessed, do I just have to wait? Any assitance would be appreciatedWhich Android app are you using that generates the error? The WD Photos or the WD My Cloud app? May want to unsintall the app and reinstall it. Sometimes that can fix strange app behavior.

  • HT1918 I cannot access files I uploaded from an old computer.  The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address?

    I cannot access files I uploaded from an old computer. The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address and username?

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • I cannot access files saved prior to Lion download.  Help?

    How can I access files from operating system prior to Lion?

    Do you mean from prior backups?   If so, what kind (Time Machine, "clone," or what)?

  • HP SimpleSave SD500a cannot access files

    I cannot access any of the files/folders that I had backed up HP SimpleSave SD500a USB disk. I backed up by files before using XP, Vista and Windows 8.1 and have important information on it.
    I had to restore my Dell 1545 laptop OS to factory defaults due to problems with Windows Vista Home Premium Edition and took a backup of all my files onto the SD500a where I store all my other backup data and verified that the backed up copy was fine.
    After restoring Vista and installing updates, which included Vista SP2 I went to restore my backed up files. I connected my USB drive to the laptop and I noticed that Vista automatically installed the driver and 2 new drives appeared: CD Drive G: HP Launcher and Local Disk H:.
    I then ran a virus scan using ESET Smart Security software that I had newly installed on the Vista laptop and found that the scan finished in no time. I changed the parameters to “in-depth” and this too finished quickly. Now I started to suspect that something had gone awry.
    I could not access both of them in Explorer. I checked the drive properties and I got a message: H:\ is not accessible Data error (cyclical redundancy check). Drive G: is HP Launcher. I noticed that a “blue” light on the USB drive keeps flickering on most of the time when I open Explorer. At one point I did get a message if I wanted to format the disk which I declined.
    I checked the status of both drives (G and H) in Disk Manager. Disk G: file system CDFS, capacity 1Mb, free 0Mb, status healthy and H: file system RAW, capacity 465.11Gb, free 465.11Gb, status healthy.
    I tried connecting the SD500a to a desktop with Windows 8.1 and got the same result. I am not sure if the file formats changed after I connected it to my Vista laptop following the restore of the OS (NTFS vs CDSF/RAW) but I don't know what they were originally.
    I am hoping that someone will be able to help to resolve this issue so that I can access my files.

    If in fact you have to create a new volume and start all over, there are several data recovery programs that are free that should work just fine. Like I said, it wont get every file back, but it should get most of them.
    http://www.easeus.com/
    http://www.piriform.com/recuva
    Personal commentary:
    I do not trust ANY automatic backup service that runs in the background. I also don't want my backups compiled into a proprietary format that I have to use that specific program to access that backup with. Also for reasons you just experienced.
    Although there a many different opinions about backing up files, One method that is minorley cumbersome but tried and true is Mark Russinovich's Sync Toy 2.1.  It is not automatic, I have to initiate it manually each time. But it will find and add/replace updated files when told to do so in Synchronise, Echo or Contribute modes. I can set up several categories to backup separately.  I just feel more confident its done when I manually do it myself and the files are accessible as if I drag and dropped directly.
    Just my humble opinion.
    Hope it helps. Good luck.

  • Cannot Move Files/Folders on Desktop

    One of the Mac Pros in my computer lab suddenly developed a strange behavior: I can't move any of the file or folder icons on the desktop, nor can I drag files/folders between windows or columns. They don't snap back to their original position; they won't move at all.
    I can select the icons on the desktop and in windows, but cannot move them. This behavior is the same in my Admin account and a restricted student account.
    I've repaired permissions with Disk Utility, and run Onyx (Optimize The System; Execute Maintenance Scripts; Clear: Application, Internet, Font and System Cache; Clean Recent and Temporary Items). I've relaunched the Finder several times, and zapped the PRAM. Restarting doesn't help.
    Anyone seen this before?
    Thanks,
    Robert

    Robert B wrote:
    I'm unable to start from the Install disk; I get the "Black Veil of Death" every time (You Need To Restart Your Machine...).
    Oh, well this is very much more serious than a permissions problem. I would tell you to Repair your disk, but
    I can Safe Boot and choose either account. Except for the non-moving icons, the machine seems to run fine.
    A Safe Boot automatically runs Repair Disk as many times as needed to fix things. Trying to start from the Install disc gives you a kernel panic, and yet you are able to Safe Boot? I don't know what could cause this.
    After a Safe Boot, and in my Admin account, can I affect the changes you suggest when starting from the Install disk?
    Well, not by the method I initially suggested, but you can using Terminal. But I see no point in doing that—you really need to fix the kernel panics.
    However, as a temporary thing, try this.
    Open the Terminal (from /Applications/Utilities) and copy and paste the following into the Terminal window, one line at a time, with a return after each line:
    chmod -R -N .
    chmod +a "everyone deny delete" . Desktop Documents Downloads Library Movies Music Pictures Public Sites
    chmod +a "`id -un` allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" Public/Drop Box
    That will fix things for the account you have logged in with. If you need to fix the other one, you must repeat while logged in to that account

  • Cannot access some folders from Bridge CS6

    Only certain folders on my internal drive can't be accessed from Bridge.
    I can access the folders from PS CS6 but from Bridge, files cannot be displayed.

    Not sure where to look to ensure a folder is both read & write permission. Focusing on one of the folders which suddenly I can't access from Bridge - Pictures; if I use Finder all pics  are visible from the folder. If I open a file from the folder in Photoshop I can edit and save in the Pictures folder.
    Select a folder in the finder and choose cmd + i or use menu File / show info. This provides a window and at the bottom it shows the permissions that are set. If you are the user and have administrator privileges (meaning you you have access with password to the account and are able to install and uninstall applications) it should sat for both system and administrator 'read and write'
    Only from Bridge are certain folders inaccessable....in Bridge the folder has a red circle with white - and message 'no items to display'
    This is getting a bit tricky. If you have jpeg or raw files in the picture folder that also show in the Finder Bridge should display them without problems. If you try to visualize a library form iPhoto or Aperture this will not be able in Bridge because those files are packages.

  • Account deleted cannot access moved folders! HELLLPPP!!!

    hi!
    i had multiple user accounts, and since my mac is running out of memory i decided to delete the ones that i didnt need so i transferred all my folders and pictures to one account and deleted the old account right after. and now i cannot access any of the folders that i moved to the new account they have a red dot with a "-" sign on them.
    the old account is gone so i cannot really go back to it and do some changes to it so that i could access them publicly. pleeaassee HELLLPP!!!!!

    katrinagarcia wrote:
    hi!
    since my mac is running out of memory
    Monolingual is a program for removing unnecessary language resources from Mac OS X,in order to reclaim several hundred megabytes of disk space. It requires at least Mac OS X 10.3.9 (Panther) and also works on Mac OS X 10.4 (Tiger). It worked for me on 10.4
    http://monolingual.sourceforge.net/
    A detailed write-up on how to use Monolingual:
    http://www.jklstudios.com/misc/monolingual.html
    These pages have some hints on freeing up space:
    http://thexlab.com/faqs/freeingspace.html
    http://www.macmaps.com/diskfull.html
    WhatSize is a simple tool that allows the user to quickly measure the size in bytes of a given folder and all subfolders and files within it. You would be surprised at to how many useless files might be laying around on your hard disks. The files and folders are automatically sorted by size, with the biggest sizes first. Note: WhatSize displays only files accessible by the current user. See:
    http://www.macupdate.com/info.php/id/13006/
    Disk Inventory X is a disk usage utility for Mac OS X 10.3 (and later). It shows the sizes of files and folders in a special graphical way called "treemaps".
    http://www.derlien.com/
    Yasu is a “Universal Binary” Macintosh utility that performs maintenance routines and clears the many cache files used by OS X. Yasu was designed to be a simple, first line of attack for a workstation that has started “acting up.” More often than not, a thorough purge of the cache files of a Mac will bring its behavior back into line.
    http://jimmitchell.org/projects/yasu/
    OnyX allows you to run misc tasks of system maintenance, to configure certain hidden parameters of the Finder, Dock, Safari, Dashboard, Expose, Disk Utility... to delete cache, to remove a certain number of files and folders that may become cumbersome, to see the detailed info of your configuration, to preview the different logs and CrashReporter reports, and more.
    http://www.versiontracker.com/dyn/moreinfo/macosx/20070
    You can use the terminal find command enter below to display all files greater then 25meg.
    Macintosh-HD -> Applications -> Utilities -> Terminal
    sudo find -x / -size +51200 -exec ls -lh {} \;
    I assume that you have logged on as an administrator. Enter your logon password.
    The -x / combination says to search all files on the startup partition. The +51200 says to select all files greater than 51200 blocks of 512 length which is 25meg. The -exec indicates which comman to run on a selected file. The {} is the filename of the selected file.

  • Cannot access files on Time Capsule

    Cannot acess files on the TC HDD anymore. The TC HDD appears on the left panel in Finder, but if I doubleclick the disk, the TC drops connection and restarts. Soft, hard and factory resets of the TC did not help.
    Last months the TC has always dropped connection or acess to the HDD but a soft reset helped every time.
    File sharing in Airport Utility is on.
    The TC router works good and I have acess to the Internet as long as it restarts.
    Is there any chance to restore my data from the TC? All the media files have been stored there.
    Using Lion, TC 7.5.2.
    Thanks in advance for your hints

    I don't have a guaranteed solution to your problem, just some suggestions:
    1) Try powering down the Time Capsule for at least 15 minutes, then plug it in again and see if it works better.
    2) If you suspect that heat might be a problem, try raising the Time Capsule to give better air flow below it.  I have mine on an inverted plastic-coated-wire basket of the type used to organize kitchen drawers.
    3) If AirPort Utility can "see" the Time Capsule, you should be able to use the "archive" function (in the Disks panel, Disks tab) to write the disk's contents to a drive connected to the Time Capsule's USB port.
    4) In the worst case, you should be able to access the files on the Time Capsule's disk by opening up the Time Capsule, removing the disk drive, mounting the drive in an external enclosure, and attaching the enclosure to your Mac.

  • Urgent Help With Connections File Needed Please

    Hello All!
    I am getting the following error when I attempt to test my
    live site. I am testing database connectivity within my site that
    is hosted by GoDaddy. All pages are ASP and the database is stored
    in the root directory in GoDaddy's folder called "access_db". The
    folder has read/write access.
    Here is the error:
    Microsoft JET Database Engine error '80040e4d'
    Cannot start your application. The workgroup information file
    is missing or opened exclusively by another user.
    /sitename/requestquote/index.asp, line 130
    Here is the code from the connections file:
    <%
    ' FileName="Connection_ado_conn_string.htm"
    ' Type="ADO"
    ' DesigntimeType="ADO"
    ' HTTP="false"
    ' Catalog=""
    ' Schema=""
    Dim MM_connNAME_STRING
    MM_connNAME_STRING =
    "Provider=Microsoft.Jet.OLEDB.4.0;DataSource=username\access_db\filename.mdb;UserId=usern ame;Password=password;"
    %>
    The error above refrences "/sitename/requestquote/index.asp,
    line 130", and here is the code:
    rs_quote.ActiveConnection = MM_connNAME_STRING
    Please help.
    Thanks - Matt

    Sorry Tim? This is Dave. Did you read what said? I'm not
    Matt.
    Dave
    "TC2112" <[email protected]> wrote in message
    news:[email protected]...
    > It could be, you'd have to check in the control panel to
    make sure
    > permissions are set to read and write.
    > Have you tried changing the path in your connection
    string to the GoDaddy
    > path and uploading the file?
    > The info I posted tells you how to find out what the
    path on GoDaddy is.
    >
    > Tim
    >
    >
    > "Baxter" <baxter(RemoveThe :-)@gtlakes.com> wrote
    in message
    > news:[email protected]...
    > > Tim,
    > > Very good reply! I have no experience with GD other
    than the complaints
    I
    > > have read here about connections to databases etc.
    I think that if his
    > > connection test is ok that it has to be a
    permissions issue? What do you
    > > think?
    > > Dave
    > > "TC2112" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> Hello,
    > >>
    > >> Sorry if some of this is repetitive in respect
    to what others have
    > >> advised
    > >> in this thread.
    > >> It's an answer I gave someone with similar
    problems a while ago.
    > >> It does answer your question about the
    successful path on your local
    > > server
    > >> being different than the path on GDs server.
    > >> There are also instructions on how to find the
    path on GD's server if
    > > needed
    > >> for DNS-Less connection.
    > >>
    > >>
    > >> Option 1:
    > >> You can try using a map path function like this
    in your connection
    > >> string:
    > >> access_db is the folder the database is in and
    mydatabase.mdb is the
    > > access
    > >> file.
    > >> Substitute your names.
    > >>
    > >> STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=" &
    > >> Server.MapPath("access_db") &
    "\mydatabase.mdb;User Id=admin;Password="
    > >>
    > >> -or-
    > >>
    > >> Option 2:
    > >> You could try an OLEDB DSN-Less connection
    instead of using a DSN. It's
    > > not
    > >> hard to do.
    > >>
    > >> Step 1 is to figure out the location of the
    root directory on the
    host's
    > >> server..That's very easy to do yourself.
    > >>
    > >> Just make an asp page (I named mine
    "findit.asp"), and put the
    following
    > >> code between the <body> tags, like so:
    > >> <body>
    > >> <%
    > >> Response.Write("The location of this page
    is:<br>")
    > >>
    Response.Write(Request.ServerVariables("PATH_TRANSLATED") &
    "<br>")
    > >> Response.Write("The location of my root
    directory is:<br>")
    > >> Response.Write(Server.MapPath("\"))
    > >> Response.Write Path
    > >> %>
    > >> </body>
    > >>
    > >>
    > >> Upload it to the same location as your site's
    home page.
    > >> Once your new asp page is uploaded, just
    navigate to that page in your
    > >> browser.
    > >>
    > >> For a site on GD the "findit.asp" page displays
    something like this:
    > >>
    > >> The location of this page is:
    > >> d:\hosting\mysite\findit.asp
    > >> The location of my root directory is:
    > >> d:\hosting\mysite
    > >>
    > >> Now that you know the root directory location
    on their server, you can
    > >> figure out the path to your database.
    > >> Let's say that the folder your database is in
    is named _private, and
    it
    > >> happens to be in the root
    > >> directory along with your home page.
    > >>
    > >> Next, just add the database folder name
    (_private) and the database
    > >> inside's name (mydatabase.mdb) to the root
    directory location:
    > >>
    > >> d:hosting\mysite\_private\mydatabase.mdb
    > >>
    > >> That's your Data Source path.
    > >>
    > >> The connection string would look something like
    this:
    > >>
    > >> = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    > >>
    Source=d:hosting\mysite\_private\mydatabase.mdb;User
    ID=;Password=;"
    > >>
    > >> (the code above may appear wrapped (two lines)
    in the forum/ng but it's
    > > one
    > >> line with no return within)
    > >>
    > >> IMPORTANT: If you are using a local testing
    server, make a copy of your
    > >> connection asp page as a backup.
    > >> The reason? The connection information you are
    going to put in this
    file
    > >> will only work on the host's server.
    > >> Once you upload the new connection.asp page
    with the changes for the
    > >> host,
    > >> you'll need to change your local copy back to
    your local connection so
    it
    > >> will work on
    > >> your local testing server.
    > >>
    > >> Upload to server.
    > >>
    > >> Please note: From now on, when you upload (or
    "put" if you're using DW)
    > >> files that refer to your connection asp page
    you're going to get a
    > >> warning
    > >> that your connection asp on the host is
    different than your local copy.
    > >> Always say "No" to updating it, or you'll
    replace the GD DSN-Less
    > > connection
    > >> with your local one.
    > >>
    > >>
    > >> Did you set the appropriate read/write
    permissions on the
    > > directory(folder)
    > >> your database is in?
    > >> You can do that in GD's control panel.
    Hosting> Select your site >
    Manage
    > > to
    > >> open it.
    > >>
    > >> I hope this helps.
    > >>
    > >> For what it's worth, I only use GD for domain
    names now.
    > >> I had numerous problems with some sites hosted
    there, switched them to
    > >> HostMySite and haven't had any.
    > >>
    > >> Take care,
    > >> Tim
    > >>
    > >>
    > >>
    > >>
    > >>
    > >> "Baxter" <baxter(RemoveThe
    :-)@gtlakes.com> wrote in message
    > >> news:[email protected]...
    > >> > Baxter - I get "Connection was Made
    Successfully" if connection to
    the
    > >> > database was made Successfully not sure
    what's going on here? When
    you
    > >> > look
    > >> > at your site files in Dreamwerer on the
    server is there a folder
    named
    > >> > access_db? If so is your data base in that
    folder? The database needs
    > >> > permissions set to read and write to that
    file. Have you checked
    > >> > permissions
    > >> > on the site? does GD give you a control
    panel so that you can set the
    > >> > permissions your self? I have never used
    GD but have seen where
    people
    > >> > have
    > >> > had lots of problems with them when using
    a scripting language. I
    don't
    > >> > know
    > >> > what else it could be at this point.
    > >> > Dave
    > >> > "mtrueblood"
    <[email protected]> wrote in message
    > >> > news:[email protected]...
    > >> >> Baxter - I get "Connection was Made
    Successfully" with the
    credentials
    > >> >> you
    > >> > gave
    > >> >> me. My site works just fine on my
    local machine with
    > > access_trueblood.dsn
    > >> > (it
    > >> >> also worked with the dsn I initally
    created for the site). All pages
    > >> > display
    > >> >> and I get no errors. I think where the
    issue may be, now I am
    guessing
    > >> > here, is
    > >> >> that my connection refrences a
    database located in the folder
    > >> >>
    C:\Users\Administrator\Websites\Sitename\access_db, but once I
    upload
    > > my
    > >> > site,
    > >> >> the database still sits in access_db,
    but the root folder possibly
    has
    > >> > changed
    > >> >> (maybe causing the connection to
    fail).
    > >> >>
    > >> >> Dooza - I don't understand how I can
    use "c:myDsnFile.dsn", when
    once
    > > I
    > >> > upload
    > >> >> my site, "c:myDsnFile.dsn" would then
    not be the location of my dsn.
    > >> >> "c:myDsnFile.dsn" refrences a file on
    my computer. I am using an
    > >> >> online
    > >> > hosting
    > >> >> company. Am I not understanding you
    correctly? See note above. I did
    > > use
    > >> > your
    > >> >> information and got the following
    browser error:
    > >> >>
    > >> >> Microsoft OLE DB Provider for ODBC
    Drivers error '80004005'
    > >> >> General error: Invalid file dsn ''
    > >> >> /sitename/contactus/index.asp, line
    130
    > >> >>
    > >> >> line 130 -
    rs_contactus.ActiveConnection = MM_connTrueblood_STRING
    > >> >>
    > >> >> I am researching on how to do a
    dsn-less connection, unless I can
    get
    > >> > this
    > >> >> figured out.
    > >> >>
    > >> >> Thanks - Matt
    > >> >>
    > >> >
    > >> >
    > >>
    > >>
    > >
    > >
    >
    >

  • Help - "Cannot copy file: Data error (Cyclic Redundancy Check)"

    Hey there,
    I'm having problems with my Zen Mosaic EZ00. Up until a few weeks ago it has been working fine however, since then, has begun to show the error message? "Cannot copy file: Data error (Cyclic Redundancy Check)" whenever I try to copy files on to it. I have tried the recovery software available and it only updated the firmware. Some files do occasionally (and very occasionally) copy but usually it shows the error message and cancels the copy.
    I would really appreciate if anyone could help me with this?
    Many thanks :smileytongue:

    sorry for the double post!
    ive just realised that my ipod isnt actually charging, its just got the orange light blinking!
    not too sure what is going on now!
    lol

  • Cannot access shared folders anymore....

    Hi,
    We have a naughty problem at the office for accessing shared folders .
    We use G5 Xserve + Xraid serving home access to 12 macs.
    Our problem started when we updated all machines to 10.5.2 (nor did we have a problem with 10.5.1 or with 10.5.0).
    All machines login correctly, fetch their folders with their home accesses located in the Xserve, as allways did, BUT :
    ·Almost all the machines running Leopard (except two) CANNOT access shared items. They get Error -5002
    ·The old machines running Tiger (G3 Imac's) acess shared items without problem.
    So after many weeks doing multiple tests, we got the following conclusions:
    ·Problem is not server related.
    ·Problem si related to Leopard clients , although not in all
    ·Problem is not related to the machine, but with the account (accounts that can access shared items do it on any machine, and accounts that can't, don't do it on any machine)
    ·It seems that the trouble is related somewhat with Kerberos authentication, but it's not related to tickets (renewing them is no use)
    ·If we create new account with new name, it can access shared items
    ·If we create new account with same name that of the faulty one (renaming the later), it CANNOT access shared items.
    We have got a problem in the office, and no clue of solving it.... Have read all over apple discussions over the internet, and although some people have similar issues, they are not as close as ours....
    And none of the solutions proposed have solved the problem.
    Any ideas would be greatly appreciated, cause we are starting to get desperate
    Thanks everyone.

    new update:
    we are able to connect to remote shared folders with a different remote server (dual G4) from every machine
    machines who can connect to local server are INTELs, the one who can't are PPCs
    makes any sense to anyone?¿

  • Cannot rename files, folders and drives

    tried to GRAB the error message, and it's hanged when I tried to save the image.....
    There are problems on rename files, folders and drives, also have problem to delete things....
    what can I do.....!!!!

    Ok, finally i just reboot the machine and it is fine now.
    I guess there are some bugs related to the user permissions...
    Indeed, I encountered a few bugs and they were fixed by rebooting the machine.
    More details: I am using a early 2008 version mac pro with mountain lion and upgrade os to mavericks last nite.
    At first, it cannot connect to my wifi network, it kept asking me to enter password for my network but kept saying it s failed. After trial to fix it by a few methods which were failed, i gave up and reboot, and vala~ It worked again..
    Then i tried to rename my system drive as it was named "mountain lion", and i just want to rename it to "mavericks", error popped out, and i found that i cant rename folders or files, or put them in trash.... Again, it worked again after reboot!!!!
    Guys, for those who wannna upgrade to mavericks now, better wait for a few more weeks till some update come up n fix those issues....

Maybe you are looking for

  • Can I stream live iPhone App Sports to my TV

    Hi, I have a great sports App to watch live games on my iPhone.  I now have a iPhone to TV cable. I can watch saved videos but not the live sports app stream.  Is there an App or setting that makes this possible?

  • Nokia no longer hosting Booklet 3G drivers/apps?

    Noticed the drivers/applications link is now dead and the only item relating to the Booklet on the whole nokia site is an archived user manual.... This might cause problems for those doing clean installs on new hard drives? Anyobody know if these are

  • Missing Weight in Sales Order and Invoice

    Hi  My Friends, We create first Sales Order then PR created automatically, then we create PO. Only at this time we know the net/gross weight, so we update the PO. We want this weight appear on the Sales Order and then on the billing document. Is it p

  • In xp I can use wmpplugin dll3.0.2.629 to play a certain audio file,in win7 I can't get the plugin for FF,why

    Our site is lsracers.com, as soon as you open the site,an audio file is supposed to play, (lower left hand corner an icon is displayed) It says, a plugin is needed to play this content, this is on a win 7 Ltop. If I use an XP pc, it gave me the optio

  • Dragging photo files from Entourage into iPhoto 09

    I recently upgraded to iPhoto 09 running on Snow Leopard. I believe I was previously running 10.4.9? At any rate, I can no longer drag photo files from an email in Entourage and drop them into the iPhoto icon in the menu bar for import. Now it seems