Need Help with 404 error

Hello,
I have completed the local folder, tesing server, and remote server setup correctly  (i think so).
My testing setup and files shown below:
My local folder for site shown below:
My advanced settings shown below:
I have downloaded all the files to the local folder from my remote server which are working fine on the live website http://www.caremoreconstruction.co.uk.
No layouts of the files/folders etc have been changed, I simply moved them over from the FTP server in to local folder I had created.
Just to confirm I have XAMPP installed and Apache runnining.
When I open DW CS5 and select the index.php file form the FILES tab, the main home page opens up and I little bar comes up at the top and says "This page has server proccesing directives that design view cannot display. Switch to Live View".
So I click on Live View and the home page loads up. I then press ctrl and click one of the links. (See picture below)
For some reason I am getting the following error message when I click on my links.
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact thewebmaster.
Error 404
localhost
12/30/10 11:58:51
Apache/2.2.14 (Win32) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l mod_autoindex_color PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1
Please can someone help me!!
Regards
James

David,
This is the responce I have had from my website designer.
Happy new year to you also.  Re Dreamweaver it’s not a tool we use I’m afraid, we generally use tools like Netbeans and code oriented text editors so I’m not best placed to advise on the config of it. I have used it back in 2003, it’s a great development platform, but I just ended up working with other tools.
Looking at the post though, you seem to have got the site running but the issue seems to be the friendly URLs. As David correctly identified, .htaccess and mod_rewrite are used to effect this. If you don’t have the correct .htaccess file in place this aspect of the navigation won’t work.  You should also be running the site from the root directory – both the production (live) website and our development environments are setup in this way, so though I don’t think we implement root relative URIs in the site navigation, I can’t say there won’t be issues running it in a subdirectory off http://locahost without reviewing all the code, which I haven’t.
The .htaccess file you need is on your live website, but many FTP clients will not display this by default, so your FTP download may have missed it.
You can create it yourself, it needs the following directives.  The “.” on the front of the filename is very important.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
That should solve your navigation issue, providing the Apache mod_rewrite module is enabled.  If it doesn’t I can’t really help you further, other than to suggest you get a second hosting account online.  I seem to think you can use a remote development environment in Dreamweaver.  The advantage here is that you’ll have an environment that you know to work, with all the components installed.  No disrespect, but even we can spend ages configuring our development servers to work as we need, and much depends on the installation approach you use in setting up Apache, PHP and MySQL
Re the database, as David has sussed there is no MySQL database to concern yourself with. Other red herrings include login and register handlers which are not implemented.  Your original brief included the possibility of a customer login to access your quotes & progress reports down the line, so we allowed for that in the initial build and planned for MySQL access but didn’t implement those features.
Hope that helps. Great to see how far you’ve come with this – I probably couldn’t get as far building in the same time! Also glad to see that the comments re the code and structure are good – it’s always interesting to see what another developer, who obviously knows his stuff, thinks of your code!!
Regards
Oliver Phillips
http://www.eantics.co.uk
OMG ITS WORKING NOW!!!!!
1. Move all files and folders for the website to the main root directory http://localhost/
2. Open notepad and copy/paste code above in to note pad.
3. Click Save As from files menu. Change save format to all files and call it .htaccess (dont forget to put the ''.'' before htaccess)
4. Move .htaccess file to the root directory of the local/testing site.
and that's it!
There is just one small problem, I have had to move the XAMPP folder out of the root directory http://localhost for the links to work in DW CS5. When I first tried the link on my home page (both in DW CS5 and Browser) it redirected me to the XAMPP home page.
I think the solution for this would be to put XAMPP back in http://localhost/xampp and move website file and folders to vhost.

Similar Messages

  • Installing Elements 11 on Mac. Need help with install error "Setup wants to make changes."

    Installing Elements 11 on Mac 10.8.2. Need help with install error:  Setup wants to make changes. Type your password to allow this."  After entering Adobe password, nothing happens.  Locked from further installation.  Any ideas?  Adobe phone support could not help.

    Just before letting changes (installation in this case) be made on the system, Mac OS prompts for password & this has to be the Mac system password. This password prompt is the system's own native prompt & would accept the system password only. Please make sure it is the right system password (all/admin rights) and the installaion should run.

  • Need help with an Error

    Hello, im using this class to query a table from my database. everything is ok, but when i write the closing } of the Main class the Program gives an error. In the main class ive wrote here at the bottom, the main class has no ending } . Now only the final } gives an error but everything else is ok, ive double checked all brackets, they are all in good place, what is going wrong?
    package DBandQueryHandler;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    class Main {
        public static void main(String[] args){
            Class driver_class=null;
                    try{    
                        driver_class=Class.forName("com.mysql.jdbc.Driver");         }
                    catch(ClassNotFoundException e){ 
                        e.printStackTrace(); 
                        return;
            System.out.println("Found Driver"+ driver_class);
            Connection connection=null;
            try{
                connection= DriverManager.getConnection("jdbc:mysql://localhost:3306/....", ".....", "........");
            catch(SQLException e){
                e.printStackTrace();
                return;
            try{
                System.out.println("Established connection to"+ connection.getMetaData().getURL());
            catch(SQLException e1){
                e1.printStackTrace();
            Statement statement=null;
            try{
                statement= connection.createStatement();
                statement.execute("SELECT * FROM KLANTEN");
                Resultset resset= statement.getResultSet();
                System.out.println("Row user_id, username, password, abbonement1, abbonement2, openstaand");
                while(resset.next()){
                    System.out.println(resset.getRow());
                    System.out.println("" + resset.getSring("user_id"));
                    System.out.println("" + resset.getSring("username"));
                    System.out.println("" + resset.getSring("password"));
                    System.out.println("" + resset.getSring("abbonement1"));
                    System.out.println("" + resset.getSring("abbonement2"));
                    System.out.println("" + resset.getSring("openstaand"));
                resset.close();
            catch(SQLException e){
                e.printStackTrace();
            finally{
                if(statement=null){
                    try{
                    statement.close();
                    catch(SQLException e){
                e.printStackTrace();
                if(connection=null){
                    try{
                    connection.close();
                    catch(SQLException e){
                e.printStackTrace();
       }

    javaboy2 wrote:
    Like i said, when i write all brackets correctly, the program gives errors, but when i delete the the last bracket, the program doesnt give errors(except for the last bracket=> '}' expected). I dont understand this.
    The errors of the program with correct amount of brackets are these: Yes, the errors come up with correct brackets because you have errors . When you take out the bracket, the structure is too bad so it doesn't look for the rest of the errors. This problem has absolutely nothing to do with brackets at all. That's why you needed to post the errors in your first post, rather than ignoring them and pretending your code is perfect and blaming it on brackets.
    And these errors would be fixed if you read them.
    Cannot find symbol ResultsetThat's because there is no class called Resultset. It's called ResultSet.
    Your if statements are using assignment instead of equality
    statement=null; //that assigns null to the statement object
    statement==null; //that checks to see if statement equals nullAgain, read your errors. They don't lie.

  • Need help with resolving error

    Hi,
    I am working on an ADF aaplication Each time I hit the execute button on my application I get the following error message,
    JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was null
    JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was null
    Does anyone know why this come up? and what can I do to resolve this issue?
    Be very grateful to get a response soon.

    The page is suppose to be a search page, you could key in all the information in all the fields, but not mandatory. when I run the seach and key the info, then hit execute, the first time it runs very fine, but if want to make a second search it come up with the error.
    I hope with this I could get some help.
    Thank you very much

  • Need help with download error on windows 8 computer.

    I have a windows 8 computer, and I have been trying to download Itunes to my computer but am getting an error that apple support was not included or that apple application support software was not found to uninstall and try again same thing several more times.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Need help with an error message: Can't repair volume.

    Hi, folks.
    While checking my HD with Disk Utility, I found a message error. It says that I have to repair the disk but the button "Repair Disk" is not available.
    The message is copied below... if anyone can read it and help me, I'd appreciate.
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Overlapped extent allocation (file 1022303 /Applications/Macromedia Dreamweaver MX 2004/Dreamweaver MX 2004/Contents/MacOS/Dreamweaver)
    Overlapped extent allocation (file 1034457 /Users/Johnny/Library/Mail/[email protected]/INBOX.mbox/Messages/16 143.emlx)
    Overlapped extent allocation (file 1034472 /Users/Johnny/Library/Caches/Mail/11/05/1521797044-3222719574.cache)
    Overlapped extent allocation (file 1035396 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16148.emlx)
    Overlapped extent allocation (file 1035401 /Users/Johnny/Library/Mail/[email protected]/Junk E-Mail.mbox/Messages/16149.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file s/DisplayPictures/[email protected]/VnRhV1J0dXR3eG41aG04T3UxOXIrU lZWZ3AwPQ==.png)
    Overlapped extent allocation (file 1042618 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/[email protected]/ R3FDbDlPNllTRGhhUmNXd3p2Sm55clQ0aUx3PQ==.png)
    Overlapped extent allocation (file 1049904 /Users/Johnny/Library/Mail/[email protected]/Sent Messages.mbox/Messages/16257.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file ail/02/12/4236346157-3219157957.cache)
    Overlapped extent allocation (file 1050553 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6261.emlx)
    Overlapped extent allocation (file 1050558 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6262.emlx)
    Overlapped extent allocation (file 1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx)
    1050573 /Users/Johnny/Library/Mail/[email protected]/Drafts.mbox/Messages/1 6263.emlx
    @)",1)
    1054976 /Users/Johnny/Mercury/MSN/Resources/CustomEmoticons/patinhodeborracha22@hotmail .com/NUxYOXd5ZkZiRjR0Wm5Ob3NZY0p6K09oWWFnPQ==.gif
    Overlapped extent allocation (file 1055000 /Users/Johnny/Mercury/MSN/Resources/DisplayPictures/patinhodeborracha22@hotmail .com/TzNFcmEzTWxaMmV4L0NOelVEUllsaEJjd1BRPQ==.png)
    Overlapped extent allocation (file 1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx)
    1057743 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/16313.emlx
    t allocation (file %@)",1)
    1057789 /Users/Johnny/Documents/Yazigi/Events/OFICIO_SDUMA.doc
    Overlapped extent allocation (file 1057880 /Applications/Microsoft Office 2004/Clipart/Yázigi)
    Overlapped extent allocation (file 1058044 /Users/Johnny/Library/Caches/Mail/04/11/2078440011-2247275449.cache)
    Overlapped extent allocation (file 1058045 /Users/Johnny/Library/Caches/Mail/10/07/0272707744-3809369458.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file ny/Library/Caches/Mail/00/15/2244060425-1075118591.cache)
    Overlapped extent allocation (file 1058051 /Users/Johnny/Library/Caches/Mail/09/11/0695285650-1820972980.cache)
    Overlapped extent allocation (file 1058052 /Users/Johnny/Library/Caches/Mail/00/11/0589583874-0597952182.cache)
    Overlapped extent allocation (file 1058053 /Users/Johnny/Library/Caches/Mail/05/12/0478257501-4274710467.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file Mail/00/01/0993945094-0587616530.cache)
    Overlapped extent allocation (file 1058055 /Users/Johnny/Library/Caches/Mail/00/05/0791764484-0602406228.cache)
    Overlapped extent allocation (file 1058056 /Users/Johnny/Library/Caches/Mail/00/15/1220797701-0859034105.cache)
    Overlapped extent allocation (file 1058057 /Users/Johnny/Library/Caches/Mail/00/07/1625158921-0865946749.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file 179-0596073421.cache)
    Overlapped extent allocation (file 1058060 /Users/Johnny/Library/Caches/Mail/00/11/1196125704-0590536112.cache)
    Overlapped extent allocation (file 1058062 /Users/Johnny/Library/Caches/Mail/00/11/1422978311-0856115643.cache)
    Overlapped extent allocation (file 1058063 /Users/Johnny/Library/Caches/Mail/04/12/2763023681-0835402695.cache)
    Overlapped extent allocation (file Overlapped extent allocation (file he)
    Overlapped extent allocation (file 1058065 /Users/Johnny/Library/Caches/Mail/00/03/1827339531-0863388223.cache)
    Overlapped extent allocation (file 1058066 /Users/Johnny/Library/Caches/Mail/07/03/3539577467-0911802683.cache)
    Overlapped extent allocation (file 1058067 /Users/Johnny/Library/Caches/Mail/00/04/1321888006-0860911682.cache)
    Overlapped extent allocation (file 1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache)
    1058069 /Users/Johnny/Library/Caches/Mail/00/02/1726249226-0867834918.cache
    extent allocation (file %@)",1)
    1058070 /Users/Johnny/Library/Caches/Mail/05/01/0121999446-2569076246.cache
    Overlapped extent allocation (file 1058071 /Users/Johnny/Library/Caches/Mail/12/14/3415372742-4138529506.cache)
    Overlapped extent allocation (file 1058076 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/19/19e520537f725be8.dat)
    Overlapped extent allocation (file Overlapped extent allocation (file nc/d5/d5f85bf4508148d5.dat)
    Overlapped extent allocation (file 1074308 /Users/Johnny/Library/Caches/com.apple.AddressBook/MetaData/2A56AA5D-FD59-4B78- BF65-25589E601017/ABPerson.abcdp)
    Overlapped extent allocation (file 1083386 /Users/Johnny/Music/iTunes/iTunes Music/Podcasts/NEWSWEEK On Air Podcast/NEWSWEEK On Air 1092005.mp3)
    Overlapped extent allocation (file Overlapped extent allocation (file XlSOE96L2VJPQ==.png)
    Overlapped extent allocation (file 1094018 /Users/Johnny/Library/Application Support/Skype/joaopaulo_yazigi/chatsync/15/150fcbaa76a7fb93.dat)
    Overlapped extent allocation (file 1120553 /Users/Johnny/Documents/Yazigi/Events/PRELISTAECOLOCICA2005.doc)
    Overlapped extent allocation (file 1182160 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17264.emlx)
    Overlapped extent allocation (file Overlapped extent allocation (file /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17267.emlx)
    Overlapped extent allocation (file 1182217 /Users/Johnny/Library/Mail/[email protected]@[email protected]/Sent Messages.mbox/Messages/17269.emlx)
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Volume Bit Map needs minor repair_
    Checking volume information.
    Invalid volume free block count_
    (It should be 3677631 instead of 3677630)
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Thanks in advance.
    JP

    You will need to try and repair the drive with Disk Warrior. Otherwise, the only option is to reformat the drive. Note that DW may not be successful in fixing all the errors, and you may end up having to reformat anyway.
    It may be possible to fix the problem manually, but it's quite involved. Here's the info:
    http://docs.info.apple.com/article.html?artnum=25770
    Manually fix Overlapped Extent Allocation Errors without Disk Warrior
    Overlapped overlapped extent allocation errors can be the bane of any Mac user's existence. Often, these errors go unnoticed until the problem becomes visible: your Mac might refuse to boot, crash unexpected, or worse, critical data might disappear from the Finder. Disk Utility can detect, but not fix overlapped extent allocation errors, and certain third-party utilities, such as Alsoft Diskwarrior, can fix them, but generally without reporting the consequences.
    Overlapped extent allocation error occur when the file system thinks that two files are occupying the same area on the hard disk, hence overlapping on the same "inode," which is the structure which holds the location of the data blocks the file occupies, and also file permissions and flags.
    Clearing the "overlapped" or "overallocated" extent allocation essentially means that you'll have to lose some data, because the only way to remove the overlap is to delete the file that's occupying the inode. So, if you suspect, or find out, that the guilty file is a critical system file that resides in one of the hidden system directories such as /etc /var /usr/ or visible system directories such as /System or /Library, and you don't want to reinstall the whole OS (which might not fix the overlapped extent allocation anyway), it's good to have another disk available to copy the files back to your original disk if necessary: a second bootable hard drive or a firewire drive connected to your Mac when you remove the misbehaving file. Just make sure that when you copy the file back to your boot disk that the permissions are correct, so it's best to use the "ditto" command, so that all sticky bits, flags, and permissions are preserved.
    In case you didn't know, you don't have to boot from an install CD in order to check for overlapped extent allocations. All you need to do is restart your Mac, while holding down command + S to boot in "single-user mode."
    At the command prompt that appears, type:
    $ fsck -fy
    If you have an overlapped extent allocation, you'll see:
    "Overlapped Extent Allocation" (File 123456d)
    No matter how many times you run fsck -fy, you'll never be rid of the error.
    So, simply issue the following command:
    find / -inum 123456 -print
    Note the "d" was dropped, or any extra letter that appears after the inode number.
    The find will return a file name that matches with the inode number, and the path to that file. If you remove the file then the fsck will not return this error next time you run it.
    However, before you can delete the file(s) in single-user mode, you'll need to mount the file system. Type:
    $ mount -uw /
    When done, issue the "sync" command, and that will flush the write cache so that all pending writes are written from memory to the disk. Also, since most OS X 10.3 Macs use the HFS+ Journaled file system, it might be a good idea to disable the journal before booting into single-user mode by typing:
    $ sudo diskutil disableJournal /
    then re-enable it when done fixing the overlapped extents and rebooting normally:
    $ sudo diskutil enableJournal /
    Chris Anderson is a long-time Linux propellerhead who just got his first Mac, an ibook G4, and can't keep his hands off of it. He currently works as a "The Architect" and general visionary for a maker of world-class collectibles.

  • Need help with an error message when making changes to an IMAP account

    I have several IMAP accounts in my Mac Mail. Today when I tried to edit the, "Full Name" associated with the account I got an error message that said:
    Invalid Directory
    The account path /Users/kristen/Library/Mail/[email protected]@host365.ISPhost.com is already being used by the account "Silver"
    Did I somehow corrupt something? I'm not sure why making this small change to the full name would cause such an error. Please help.
    Thanks!!

    stop() forcibly kills a thread. You shouldn't use this method because if the thread is in a critical section of code, you can cause data corruption or deadlock.
    Instead, if you need to stop execution from another thread, invoke the interrupt() method.
    Good luck.

  • I need help with this error message "seek encountered an internal error"

    I wonder if anyone can help me with a Captivate issue: I just upgraded to 5.5 - when I try to insert a video slide I get an error "seek encountered an internal error". The video is a 35.3 MB flv file.
    This is a prroject that I have been working on for months and need to switch the video on the slide to an updated video - so I try to delete the video slide that is there and insert a new slide but when browse for the new video file I want to use, I keep getting this error message.

    Try <fx:XML>

  • Need help with syncing error!

    hey guys... kam here... every time i try to sync my iphone 4 up with itunes i get an error message saying unable to sync... i've updated all the dumb updates and all that crap but it still won't work... any ideas?

    Hi Reynold,
    Thanks for your response, the error is posting error. Can I change the document date even for the components of a production order inorder to process the COGI's. For example if an order is confirmed last month with missing parts, and if I adjust the stock for the components today, can I process the COGI'S by changing the document date as suggested by you.
    Follow-up question.
    When a Production order is confirmed the stock moves to quality, we have a hard stop here for certain meterials. The stock will show under quality in MMBE. Quality need to accept the results inorder to move the stock to unrestricted stock.
    When this stock is in quality, for some reason if a user cancel the confirmation I see two errors in COGI with movement type 101 and 102 with error M7. I have following two questions.
    If quality accepts the results the stock will move from quality to Unrestricted and the production order status is delivered DLV, can I delete the two COIG's with movement type 101 and 102?. We use PPIO_ENTRY to do a mass TECO, orders of these type are not being TECO'ed automatically and What is the impact on Costing.
    If quality decline the results and the period is closed how can we clear the COGI's and how the cost will be settled.
    I appreciate your help.
    Thanks & Regards
    Srini

  • I need help with Capturing error message

    I shot some DVNTSC footage in widescreen on my sony Handycam.
    I set up my final capture presets to capture DVNTSC Anamorphic. When I try to capture I get an error message saying... Dropped frames were detected in my video footage.
    Final cut gets all hung up and won't capture a thing.
    Can anyone help me with this problem?
    Thanks

    What David is saying is that it's not recommended to capture to your internal drive. It's already running the OS and the software, trying to write video to it at the same time can often cause, imagine that, dropped frames.
    The second setup you mention is also not recommended. USB hard drives transfer data in bursts, instead of firewire's stream. This can lead to, imagine that, dropped frames.
    And finally, the firewire drive and camera attached to the same FW bus will essentially double the data rate needed, and is not recommended, as it will cause, imagine that, dropped frames.
    The solution you should be looking for is a express/34 card with an external SATA attached to avoid the bottlenecks you are experiencing.

  • I need help with and Error PLEASE!!

    Everytime i try to upgarde my itunes 6 to itunes 7 i get and Error Drive E:/ message and then i get a message saying The installer encountered errors before Itunes could be configured.
    WHAT DO I DO? I NEED SERIOUS HELP HERE!

    After installing iTunes 7, it tried to update my daughter's 20G wheel iPod but failed crashing the iPod. After the crash, my daughter got a 1418 error reporting the iPod could not be restored. An iPod salesman sold her a new iPod – blaming her for screwing up her iPod, so much for sales “experts.”
    Her iPod problem was merely caused by upgrading to Apple’s iTunes to version 7 with its dysfunctional built-in updater (OS = Windows XP), not by anything to do with the iPod hardware.
    The fix was to uninstall the iPod in Windows/Device Manager/disk Drives and rename the c:\program files\ipod\bin\ipodservice.resources folder – thereby disabling it - uninstall iTunes v. 7, reboot and install the last iPod updater, dated 6/2006. Then restore the iPod (wiping out everything) using the 6/2006 updater. Next, reinstall iTunes ver7.1, which will report all is well with the restored iPod. (Or, buy another iPod).
    Also, if the “do not disconnect” iPod message is persistent, just go into My Computer and “eject” the iPod to clear the iPod error message.

  • Need help with mysterious Error #2030

    We have a customer who gets this issue 100% of the time when using IE6 from his workplace.  When he access the same Flex application from his home, he does not get the error.  I've done a lot of researching on the net and this error can occur when the resource is not present but this is not the case since the HTTP response and result show that a HTTP status code 200 was returned with data.   I also doubt there were any stream errors as this can be reproduced 100% of the time.
    Has anyone run into a similiar problem where this 2032 problem is reproducible 100% on certain browser but not others?  Thanks!
    Here the error message:
    FaultEvent fault=[RPC Fault faultString="HTTP request error faultCode="Server.Error.Request" faultDetails="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2030"]. URL: /flex/getAllReports"] messageId="04F7CC69-F6EE-E748-A833-C9D287A932BC" type="fault" bubbles=false cancelable=true eventPhase=2]
    HTTP REQUEST:
    POST /flex/getAllReports HTTP/1.1
    Accept: */*
    Accept-Language: en-US
    Referer: https://xxxxxxxx.xxxxxxx.com/clearview.swf
    x-flash-version: 9,0,124,0
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 25
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)
    Host: xxxxxxxx.xxxxxx.com
    Connection: Keep-Alive
    Cache-Control: no-cache
    Cookie: JSESSIONID=C979C8E019E3EC372BC0E7D0C37EF945.sv4proapps44-vip1.xxxxxxxx.net
    currenttime=1242164281750
    HTTP RESPONSE:
    HTTP/1.0 200 OK
    Date: Tue, 12 May 2009 21:37:20 GMT
    Server: Apache
    X-Powered-By: Servlet 2.4; JBoss-4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139)/Tomcat-5.5
    Vary: User-Agent,Accept-Encoding
    Content-Encoding: gzip
    Connection: close
    Content-Type: text/xml;charset=UTF-8
    Content-Language: en

    That link wasn't helpful for us. The HTTPService call did get a reponse back with code 200 and XML.  The error must've occurred somewhere between the response going into the browser and the HTTPService receiving the response.  Everything is on the same domain so no cross policy file is needed.  This problem has only occurred 100% on IE6 when accessed from work but when access from home, the same Flex URL works fine.  Still dumbfounded....

  • New to Macs and need help with communication error in video chat

    Hello! I have the same problem with video chatting that many others are having with errors -7 and -8. I am brand new to macs, and while I understand what the other threads are talking about about changing ports and settings, I don't exactly know how to do those things on my new system (iMac with OS X tiger 10.4.8). My quicktime settings are set to 1.5 and my iChat port is changed to 443. I have been able to connect with one person via iChat video on a different network, but I was given the above errors when I tried to connect with someone else tonight. I am using my built in airport with a Lynksys WRT54G broadband router. Please let me know how I can go about fixing this problem. Thank you!

    here is the full error message:
    Date/Time: 2007-06-14 20:23:30.478 -0400
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 606431946.
    prettyinpink93873: State change from AVChatNoState to AVChatStateWaiting.
    0x10850570: State change from AVChatNoState to AVChatStateInvited.
    0x10850570: State change from AVChatStateInvited to AVChatStateConnecting.
    prettyinpink93873: State change from AVChatStateWaiting to AVChatStateConnecting.
    prettyinpink93873: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x10850570: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0xda4c000 - 0xda4efff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0xda52000 - 0xda56fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0xda5b000 - 0xda5bfff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0xdd05000 - 0xdd0efff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xdd2a000 - 0xdd2ffff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xdd4d000 - 0xdd89fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xdd95000 - 0xddc5fff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xddcf000 - 0xde0bfff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xde2f000 - 0xdf88fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xdfb4000 - 0xe1a2fff com.apple.ATIRadeonX1000GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xe1de000 - 0xe1fafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0xe201000 - 0xe225fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xe4b2000 - 0xe4b5fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe4d1000 - 0xe4fbfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xe78f000 - 0xe7a8fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xe7ad000 - 0xe7c6fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xf905000 - 0xf908fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90172fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c2000 - 0x901c4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c6000 - 0x90203fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9022a000 - 0x90300fff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90320000 - 0x90775fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080c000 - 0x908d4fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90912000 - 0x90912fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90914000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9143afff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9144c000 - 0x91453fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91933fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91946000 - 0x919f8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3e000 - 0x91a54fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a59000 - 0x91a77fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7c000 - 0x91adbfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aed000 - 0x91af1fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af3000 - 0x91b77fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7b000 - 0x91bb8fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbe000 - 0x91bd8fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdd000 - 0x91bdffff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be1000 - 0x91cbffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdc000 - 0x91cdcfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cde000 - 0x91d6cfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d73000 - 0x91d73fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d75000 - 0x91dcefff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd7000 - 0x91dfbfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e03000 - 0x9220cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92246000 - 0x925fafff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92627000 - 0x92714fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92716000 - 0x92793fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d4000 - 0x92a04fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b1e000 - 0x92b35fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b40000 - 0x92b98fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bac000 - 0x92bacfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bae000 - 0x92bbefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcd000 - 0x92bd5fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdb000 - 0x92be1fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be7000 - 0x92c78fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8c000 - 0x92c90fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cb1fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc3000 - 0x92cc9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccf000 - 0x92d32fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d59000 - 0x92d9afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc1000 - 0x92dcffff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd6000 - 0x92ddbfff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de0000 - 0x930d5fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931db000 - 0x931e6fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931eb000 - 0x93206fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93256000 - 0x93256fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93258000 - 0x9390efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8f000 - 0x93d0afff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d43000 - 0x93dfdfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e40000 - 0x93e40fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e42000 - 0x94003fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94049000 - 0x9408afff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94092000 - 0x940ccfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d1000 - 0x940e2fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94126000 - 0x9416efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94178000 - 0x941b6fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941fa000 - 0x9420bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94219000 - 0x94257fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94273000 - 0x94282fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94289000 - 0x94294fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e0000 - 0x942fafff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94300000 - 0x945bafff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9471e000 - 0x94864fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948f0000 - 0x948fffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94906000 - 0x9492ffff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94935000 - 0x94944fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94948000 - 0x9496dfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94979000 - 0x94996fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9499d000 - 0x94a03fff com.apple.Bluetooth 1.7.14 (1.7.14f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94cc2000 - 0x94d54fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94dae000 - 0x94e30fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e69000 - 0x95148fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x952c7000 - 0x952eafff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96471000 - 0x96471fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96958000 - 0x9697afff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x969eb000 - 0x96ac2fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96add000 - 0x96adefff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96ae0000 - 0x96ae5fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96c3c000 - 0x96c3cfff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9739e000 - 0x97487fff com.apple.viceroy.framework 278.2 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97bcb000 - 0x97bcdfff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97dfa000 - 0x988dafff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98aea000 - 0x98aecfff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98aee000 - 0x98c97fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98d07000 - 0x98dc4fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9923b000 - 0x99246fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99250000 - 0x993bcfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • Need help with Adobe error

    I am taking an online course that has the class information on its website as PDF files. I am using Adobe Reader Ver 9.3. When I attempt to open the PDF files, I get an error that states "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web browser. Please exit Acrobat/Reader and exit your web browser and try again."
    I have opened Acrobat/Reader in its own window and attempted to open the file again and the same error comes up.
    Since these files contain the information I need to learn for the class, it is imperative I can open these files. Any help would be appreciated.
    Thank you in advance.

    This is the Acrobat forum, not the Reader forum. However, you should be able to right click on the files and download them to disk. Then simply open them locally. I am not sure what your problem may be - possibly a browser issue.

  • I NEED HELP WITH KERNEL ERROR THINGS

    So...yesterday I was on the Apple website looking up why my computer shuts off randomly and I was going to download new firmwear but it said that I needed to download Mac OS X 10.4.8 first...(I have Mac OS X 10.4.6) So I started to download it and I left the room. When I came back to check on the progress it had turned off and whenever I try to turnit back on it says "You need to restart your computer. Hold down the Power button for several seconds or press the restart button" and in the background it says:
    panic(cpu 0 caller 0x0039BDDF): Unable to find driver for this platform: "ACPI".
    Debugger called: <panic>
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0xb973e04 : 0x128b5e
    ...and a buch of other stuff and then...
    Kernel version:
    Darwin Kernel Version 8.6.2: Thur Apr 13 18:48:29 PDT 2006; root:xnu-792.9.59.obj~1/RELEASE_I386
    Can you help me get my computer to turn on again??? I've tried restarting it multiple ways and am at a loss.

    Hi,
    the XLabs have a good article on how to resolve Kernel Panics: http://www.thexlab.com/faqs/kernelpanics.html
    'Reboot while depressing C' means that you put the OSX DVD 1 that came with your Mac into the optical drive; restart your Mac from the Apple-Menu and during the restart hold down the 'C'-key on your keyboard.
    That way your Mac is not booted from the internal harddisk but from the OSX DVD.
    Good Luck
    Stefan

Maybe you are looking for