Could someone check my site with IE please?

My url is http://www.mamaloveproducts.com
I would so appreciate knowing if it's working ok.
Thanks!

Looks fine in IE 6 on PC.

Similar Messages

  • Could someone check my site on IE PC please.

    I've got rid of all spacial lines (though I can't get rid of the ones created on blog pages) and would like to know if it still crashes on a PC with IE.
    Help owuld be grate ful as I most of my friends are mac users.
    Ta

    Yes, everything looked ok. They had that same ol' "PNG reload after the page is loaded" thing, but other than that, looks great.
    Actually, now I'm on your "Audio" page and, since it takes awhile for the audio to load, those images stay gray for quite awhile. Also, when you scroll the page, all those QuickTime controls smear up and down (only under IE, Firefox is fine).
    In Firefox on the PC, it just holds up loading those other pictures until all the audio is loaded. I wonder if moving the audio clips further forward would mean the graphics would go ahead and load under them first.

  • Could someone check my site in IE 7?

    Anybody running a PC with IE 7? My work-in-progress site looks fine in Safari, but terrible in IE5 which is all I have on my Mac. Firefox also seems to put the navigation bar on two lines for some reason.
    On the Home page, the copyright and Quicktime lines should each be on one line. My quicktimes load very slooowly, but I'm working on it...
    thanks, I really appreciate it!
    www.robwatzke.com

    While you're waiting for a volunteer you can test your site in IE 7 here:
    http://browsershots.org/

  • Kernel-fglrx-custom: Please could someone check/improve my PKGBUILD

    I decided to share a script as it has been very useful to me.  I have never written a PKGBUILD before and it took some attempts to make a working one, so please could someone check the PKGBUILD over and let me know how horrible it is and what I should do differently
    https://aur.archlinux.org/packages/kern … ustom-git/
    It installs fine on my PC, but I'm pretty sure that I'm not using the PKGBUILD file properly.
    Last edited by windows_me (2013-08-27 17:18:45)

    There's a couple of things I would change:
    1) The name doesn't really tell the user what the package is for. "kernel-fglrx-legacy" would probably be more helpful.
    2) Rather than pulling a script that will then pull down the kernel package, why not use the existing kernel PKGBUILD in the ABS? You can easily modify that PKGBUILD to apply your script/patches.

  • Could someone check my codes. I am doing If...else and msg....please check

    am doing the assignment. #A it is working ok...but I am adding the code for #B it won't work...could anyone help me with #B assignment?
    Thanks for your help alot...
    * A. Write a program named Balance.java that compares your checking account balance with your savings account balance (two doubles). Assign values to both variables and compare them, and then display either �Checking is higher� or �Checking is not higher�.
    public class Balance
    public static void main(String[] args) throws Exception
    char saving_Balance;
    char check_Balance;
    System.out.println("Enter Checking Balance" );
    check_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    System.out.println("Enter Saving Balance");
    saving_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    if(check_Balance > saving_Balance)
    System.out.println("Checking is higher");
    else
    System.out.println("Checking is not higher");
    B. Change the Balance.java program so that is compares your checking account balance and your savings account balance to less than zero. If the first balance is less than the second balance, and the first balance is greater than or equal to zero, then display the message �Both accounts in the black�.
    public class Balance
    public static void main(String[] args) throws Exception
    char saving_Balance;
    char check_Balance;
    System.out.println("Enter Checking Balance" );
    check_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    System.out.println("Enter Saving Balance");
    saving_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    if(check_Balance > saving_Balance)
    System.out.println("Checking is higher");
    else
    System.out.println("Checking is not higher");
    if(check_Balance >= 0 )
    System.out.println("Both accounts in the black");

    mchanO,
    Thanks for your help...but I tried your last codes it doesn't work like I want...sorry...but I am still glad for your help me ...
    Anyway see you around...
    Flower
    2. Write a program for a college��s admission office. Create variables to store a student��s numeric high school grade point average (for example, 3.2) and an admission test score. Print the message ��Accept�� if the student has any of the following:
    �h A grade point average of 3.0 or above an admission test score of at least 60
    �h A grade point average of below 3.0 and an admission test score of at least 80
    If the student doesn��t meet either of the qualification criteria, print ��Reject��.
    The class name is Admission.
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    char GPA;
    char ATS;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
    if(GPA > 3.0 && ATS > 60)
    System.out.println("Accept");
    if(GPA < 3.0 && ATS >= 80)
    System.out.println("Accept" );
    else
    System.out.println("Reject");

  • Could someone convert this VI for me please?

    I downloaded a VI from the message board that might be able to help me with a problem I am having. Trouble is it is written in 7.1 and I have 7.0. Could someone please please please convert it for me?
    Attachments:
    filter_error_due_to_dt.vi ‏69 KB

    Here it is...
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    filter_error_due_to_dt[1].zip ‏18 KB

  • Could Someone check my cabinet???

    Could someone please check my cabinet my postcode is GL528WP

    Hi, at this moment in time your exchange is not currently in the rollout plans, sorry buddy
    If you want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side If the the reply answers your question then please mark as ’Mark as Accepted Solution

  • Could someone check my code please

    COuld some one check for me...I think i am doing Part A ok...but I am sure in Part B and C....
    Thanks,
    Flower
    A. Write a program that prompts a professor to input grades for five different courses for 10 students. Prompt the professor to enter one grade at a time using the prompt �Enter grades for student #1� and �Enter grade #1�. Verify that the professor enter only A, B, C, D, or F. Use variables for the student numbers (1 through 10) and grade numbers (1 through 5). The class name is GradePoint.
    public class GradePoint
    public static void main(String[] args) throws Exception
    char[][] studentGrades = new char[10][];
    for(int student = 0; student < 10; ++student)
    studentGrades[student] = new char [5];
    for(int student = 0; student<10; ++student)
    System.out.println("Enter grades for student # " +(student + 1));
    for(int course = 0; course < 5; ++course)
    char grade;
    System.out.println("Enter grade # " + (course +1));
    System.out.println("Entry must be A or B or C or D or F!");
    grade = (char)System.in.read();
    System.in.read();System.in.read();
    B. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    C. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.
    public class GradePointB
    static final double A = 4.0;
    static final double B = 3.0;
    static final double C = 2.0;
    static final double D = 1.0;
    static final double F = 0.0;
    public static void main(String[] args) throws Exception
    char[][] studentGrades = new char[10][];
    for(int student = 0; student < 10; ++student)
    studentGrades[student] = new char [5];
    for(int student = 0; student<10; ++student)
    System.out.println("Enter grades for student # " +(student + 1));
    for(int course = 0; course < 5; ++course)
    char grade;
    System.out.println("Enter grade # " + (course +1));
    System.out.println("Entry must be A or B or C or D or F!");
    grade = (char)System.in.read();
    System.in.read();System.in.read();
    if(grade == 'A')
    System.out.println("Grade Point Average:" + A);
    if(grade == 'B')
    System.out.println("Grade Point Average:" + B);
    if(grade == 'C')
    System.out.println("Grade Point Average:" + C);
    if(grade == 'D')
    System.out.println("Grade Point Average:" + D);
    if(grade == 'F')
    System.out.println("Grade Point Average:" + F);

    Try this for getting the correct character from the User:
    private char getUserChar (char[] canAccept)
         // Build up a list of the valid characters as a string, we will use it in 2 places...
         StringBuffer buf = new StringBuffer ();
         for (int i = 0; i < canAccept.length; i++)
              buf.append (canAccept);
    if (i < (canAccept.length - 1))
    buf.append (", ");
    // Build up an error string we use for when the User gets it wrong...
    StringBuffer errstr = new StringBuffer ("Input value must be one of: ");
    errstr.append (buf);
    // Not the best use of while here but not too bad...
    while (true)
    System.out.println ("Please enter a character [" + buf.toString () + "]");
    // Read a character from the User.
    char c = (char) System.in.read ();
    // Determine whether the character is one of those that we allow...
    for (int i = 0; i < canAccept.length; i++)
    if (c == canAccept[i])
    // It is one, cool...let's return, no more to do here...
    return c;
    // If we are here then they've got it wrong, output a message.
    System.out.println (errstr.toString ());
    And then usage would be simple:
    char[] grades = {'A', 'B', 'C', 'D', 'E', 'F'};
    char c = this.getUserChar (grades);Enjoy...

  • I have a issue with installing Photoshop Creative Cloud, could someone kindly lend me a hand please?

    It happens to have something like this appers in both of the " Install " and "Trial" Screen, probably is a bug , I guess. Anyway, can someone explain to me why that occurs ? I want a way to fix it. Thanks .
    I'm sorry, maybe you guys don't understand chinese, but I guess a " %XXXXXXXXXXXXXXXXXXXXXXX% " still looks weird in a screen where it should be asking to sign in, right ?

    if you follow all 7 steps you can dl a trial here:  http://prodesigntools.com/adobe-cc-direct-download-links.html
    and activate with your adobe login
    if you have a problem dl'g, you didn't follow all 7 steps.  the most common error involves failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).

  • DPS to iPad - Could someone clarify if this is correct please?

    Hi All,
    Is it possible I could pick someone's brains on this please? I think I've worked it out, just need to know if i have this right!
    OK, here goes. I best start with what i intend to do. I shall be creating content for our local sales team on the road. So, first off, i don;t need to charge for content. This content (for now at least) wouldn't need a global audience so i don't need it available on either the apple or android store. So, in order for this to work, is the following procedure correct?
    1) Content is created in Adobe indesign CS5.5. Type of content created are single page 'articles'. Each 'Article' has 100mb cap limit
    2) 'Articles' are uploaded to Acrobat.com (Basic or Plus account for more than 1 published document) and assembled into 'folios' (2gb size limit on folio files?)
    3) Access is assigned according to which Adobe ID's have been added to the sharing list (is there a limit to the amount of people you can share with?). Reciever of content would require a free adobe ID and the Adobe Content Viewer App (plus tablet device)
    Apart from the learning curve of how to do what in Indesign, is the export process for what i intend to use it for correct?
    Many thanks in advance for any help!
    Kind regards
    Scott

    Hi Scott,
    You are pretty much there.
    1) Yes this is correct, you create an InDesign document, you can use either CS5 or 5.5. The pages contained within the document will be pages within your Article. If you want to have both a Portrait and Landscape version, shown when the iPad is rotated then you need to have two documents one containing landscape versions of your pages and the other containing portrait versions.
    I usually create a folder named to match the Article name i.e. My Article, into that I save both documents naming them something like myarticle_h.indd, myarticle_v.indd, I also create two preview files, myarticle_h.jpg and myarticle_v.jpg and a "Table of Contents" preview file, this must be named tocPreview,png. If I have any associated files such as video or panoramas they go into an assets folder within the My Article folder.
    In InDesign, after signing in to your Acrobat.com account via Folio Builder, you create a new Folio file using the builder.  Once the folio is created it opens to the Article window and at this point I usually select Import from the dropdown menu and point to the folder, in this case My Article, that contains all my files.
    Once the files are located and you select Okay the folio is built and uploaded to your Acrobat.com account.
    2)Yes, in Acrobat.com they are refered to as workspaces. A free account can only contain one workspace at a time. A premium basic account can have 20 workspaces. I'm not sure if there is a limit on the size of a Folio/Workspace of 2gb perhaps someone else can advise on that.
    If you want to share the Folio you can share it via the Folio Builder in InDesign by highlighting the Folio and selecting Share from the dropdown menu. Add the Acrobat.com email address of the people you want to give access to. Once you've done this you will see an icon with two people on it.
    You can also share the workspace via the Acrobat.com dashboard as well.
    3) Yes, but I'm pretty sure access is only available to those registered for an Acrobat.com account. You use the email address they used when registering, in some cases it may be the same as their Adobe ID.  The reciever of the content has to have the Ipad, the Adobe Content Viewer app and the email address they registered with on Acrobat.com. Once they open the app and sign in the Folio will load with the word "FREE" in blue and a "Download" button.
    As far as I know there isn't a limit on the number of people you can add to a share.
    Tony

  • Why is my iMac slowing down? Have EtreCheck info. Could someone check?

    Hi, I would love for someone to help me work out why my iMac is starting to slow down. Do I need to get more GB?
    Problem description:
    iMac has started to slow down, a lot of applications taking a while to load and sometimes freezing, going from application to application there is a lag. Just wondered if there is a problem with the iMac or I just need to bump up the memory..
    EtreCheck version: 2.1.6 (109)
    Report generated 25 January 2015 11:42:14 GMT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (27-inch, Mid 2011) (Technical Specifications)
      iMac - model: iMac12,2
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10 (14A389) - Time since boot: 0:33:38
    Disk Information: ℹ️
      ST31000528AS disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (743.71 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Computer, Inc. IR Receiver
      Apple Internal Memory Card Reader 7.95 GB
      NO NAME (disk1s1) /Volumes/NO NAME : 7.94 GB (195 MB free)
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) [Support]
      [not loaded] com.pctools.iantivirus.kfs (1.0.1) [Support]
      [not loaded] com.wacom.kext.pentablet (5.2.1) [Support]
      [not loaded] com.wacom.kext.wacomtablet (6.1.7) [Support]
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [running] com.adobe.AdobeCreativeCloud.plist [Support]
      [loaded] com.adobe.CS4ServiceManager.plist [Support]
      [running] com.brother.LOGINserver.plist [Support]
      [loaded] com.divx.dms.agent.plist [Support]
      [loaded] com.divx.update.agent.plist [Support]
      [running] com.wacom.pentablet.plist [Support]
      [running] com.wacom.wacomtablet.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [invalid?] com.adobe.SwitchBoard.plist [Support]
      [loaded] com.adobe.versioncueCS4.plist [Support]
      [failed] com.autodesk.backburner_manager.plist [Support] [Details]
      [running] com.autodesk.backburner_server.plist [Support]
      [failed] com.autodesk.backburner_start.plist [Support] [Details]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
      [failed] com.facebook.videochat.[redacted].plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [not loaded] com.linotype.FontFolderProtector.plist [Support]
      [running] com.spotify.webhelper.plist [Support]
    User Login Items: ℹ️
      FontExplorerXAutoload Application Hidden (/Users/[redacted]/Library/Application Support/Linotype/FontExplorer X/FontExplorerXAutoload.app)
      iTunesHelper Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      uTorrent UNKNOWN  (missing value)
      iAntiVirus Application Hidden (/Applications/iAntiVirus/iAntiVirus.app)
    Internet Plug-ins: ℹ️
      WacomNetscape: Version: 1.1.0-4 [Support]
      OVSHelper: Version: 1.1 [Support]
      Default Browser: Version: 600 - SDK 10.10
      WacomSafari: Version: 1.1.0-4 [Support]
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Support]
      FlashPlayer-10.6: Version: 16.0.0.296 - SDK 10.6 [Support]
      DivX Web Player: Version: 3.0 - SDK 10.5 [Support]
      AdobePDFViewerNPAPI: Version: 10.1.13 [Support]
      Flash Player: Version: 16.0.0.296 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.287
      QuickTime Plugin: Version: 7.7.3
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 10.1.13 [Support]
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.1 [Support]
    3rd Party Preference Panes: ℹ️
      Adobe Version Cue CS4  [Support]
      Flash Player  [Support]
      Perian  [Support]
    Time Machine: ℹ️
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 255.63 GB
      Destinations:
      My Passport [Local]
      Total size: 499.95 GB
      Total number of backups: 35
      Oldest backup: 2013-09-23 18:40:17 +0000
      Last backup: 2014-04-20 08:44:46 +0000
      Size of backup disk: Too small
      Backup size 499.95 GB < (Disk used 255.63 GB X 3)
    Top Processes by CPU: ℹ️
          11% WindowServer
          7% com.apple.dock.ecap
          4% ocspd
          2% Spotify
          1% Safari
    Top Processes by Memory: ℹ️
      163 MB FontExplorer X Pro
      163 MB Spotify
      159 MB Finder
      131 MB com.apple.WebKit.WebContent
      112 MB Safari
    Virtual Memory Information: ℹ️
      24 MB Free RAM
      1.61 GB Active RAM
      1.61 GB Inactive RAM
      882 MB Wired RAM
      3.26 GB Page-ins
      18 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 25, 2015, 11:10:39 AM /Library/Logs/DiagnosticReports/backburnerManager_2015-01-25-111039_[redacted]. crash
      Jan 25, 2015, 11:09:21 AM Self test - passed
      Jan 24, 2015, 03:12:46 PM /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-01-24-151246_[ redacted].cpu_resource.diag [Details]
      Jan 24, 2015, 02:49:15 PM /Library/Logs/DiagnosticReports/backburnerManager_2015-01-24-144915_[redacted]. crash
      Jan 24, 2015, 01:15:09 AM /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-01-24-011509_[ redacted].cpu_resource.diag [Details]
      Jan 23, 2015, 10:08:57 PM /Library/Logs/DiagnosticReports/System Preferences_2015-01-23-220857_[redacted].hang

    First, removing "iAntiVirus" will have no effect if you're running Yosemite, because it doesn't load in Yosemite.
    Back up all data immediately if you haven't already done so. You should have done that before doing anything else.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Could someone interpret this eMac panic.log please?

    I have had some interesting adventures with this eMac (1GHz, 40GB, 512MB, Combo) last few days. I will list those adventures if it helps someone to help my dilemma. I haven't a clue what any of this means. Is the eMac repairable? What can I do on my own? I was only able to get to this log from Safe Boot Mode.
    panic.log
    Tue Oct  4 20:44:17 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCEC
    Latest crash info for cpu 0:
       Exception state (sv=0x21FA9780)
          PC=0x0003FCEC; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD4; R1=0x0D7C39A0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0002BB08 0x002F9F1C 0x002F9FE4 0x002B6FA8 0x002B7048
             0x002BE6CC 0x002BE9E8 0x002BEA5C 0x002BEA98 0x002E6608 0x0008EC24 0x000291BC 0x000233A8
             0x000ABBAC 0xB5490006
    Proceeding back via exception chain:
       Exception state (sv=0x21FA9780)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x21407A00)
          PC=0x9000A758; MSR=0x0200F030; DAR=0x00542000; DSISR=0x40000000; LR=0x9000A69C; R1=0xBFFF9B20; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095564 0x00095A7C 0x00026838 0x000A8184 0x000AB880
    Proceeding back via exception chain:
       Exception state (sv=0x21FA9780)
          PC=0x0003FCEC; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD4; R1=0x0D7C39A0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0002BB08 0x002F9F1C 0x002F9FE4 0x002B6FA8 0x002B7048
             0x002BE6CC 0x002BE9E8 0x002BEA5C 0x002BEA98 0x002E6608 0x0008EC24 0x000291BC 0x000233A8
             0x000ABBAC 0xB5490006
       Exception state (sv=0x21407A00)
          PC=0x9000A758; MSR=0x0200F030; DAR=0x00542000; DSISR=0x40000000; LR=0x9000A69C; R1=0xBFFF9B20; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    Wed Oct  5 19:29:57 2011
    Unresolved kernel trap(cpu 0): 0x600 - Alignment DAR=0x00000000DB03109A PC=0x00000000000A5040
    Latest crash info for cpu 0:
       Exception state (sv=0x209B8280)
          PC=0x000A5040; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x000000A0; LR=0x0006B4B0; R1=0x0CD0B7C0; XCP=0x00000018 (0x600 - Alignment)
          Backtrace:
    0x000FC000 0x002D9684 0x0080D424 0x0080BFF8 0x007FEB00 0x00813C48
             0x007FEBD4 0x002E485C 0x0008A678 0x0008A724 0x000291CC 0x0001AB80 0x00029570 0x00048DEC
             0x0001D9C8 0x0001FD78 0x000215C8 0x00038030 0x002630FC 0x00262F68 0x002A8174 0x000ABA30
             0x38314338
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.ATIRadeon(4.0.0)@0x7f8000
                dependency: com.apple.iokit.IOPCIFamily(1.6)@0x452000
                dependency: com.apple.iokit.IOGraphicsFamily(1.4)@0x731000
                dependency: com.apple.iokit.IONDRVSupport(1.4)@0x755000
    Proceeding back via exception chain:
       Exception state (sv=0x209B8280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2D60E280)
          PC=0x90013B0C; MSR=0x0200D030; DAR=0x8FE576B8; DSISR=0x0A000000; LR=0x90013948; R1=0xBFFF6D30; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0006): 0x600 - Alignment
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095564 0x00095A7C 0x00026838 0x000A8184 0x000AB880
    Proceeding back via exception chain:
       Exception state (sv=0x209B8280)
          PC=0x000A5040; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x000000A0; LR=0x0006B4B0; R1=0x0CD0B7C0; XCP=0x00000018 (0x600 - Alignment)
          Backtrace:
    0x000FC000 0x002D9684 0x0080D424 0x0080BFF8 0x007FEB00 0x00813C48
             0x007FEBD4 0x002E485C 0x0008A678 0x0008A724 0x000291CC 0x0001AB80 0x00029570 0x00048DEC
             0x0001D9C8 0x0001FD78 0x000215C8 0x00038030 0x002630FC 0x00262F68 0x002A8174 0x000ABA30
             0x38314338
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.ATIRadeon(4.0.0)@0x7f8000
                dependency: com.apple.iokit.IOPCIFamily(1.6)@0x452000
                dependency: com.apple.iokit.IOGraphicsFamily(1.4)@0x731000
                dependency: com.apple.iokit.IONDRVSupport(1.4)@0x755000
       Exception state (sv=0p
    Wed Oct  5 19:59:13 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2544FC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC739D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC73A6E 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C
             0x00000000
    Proceeding back via exception chain:
       Exception state (sv=0x2544FC80)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x25440000)
          PC=0x9000A778; MSR=0x0000F030; DAR=0x00308B74; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFF0E0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2544FC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC739D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC73A6E 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C
             0x00000000
       Exception state (sv=0x25440000)
          PC=0x9000A778; MSR=0x0000F030; DAR=0x00308B74; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFF0E0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 20:15:37 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000009264718 PC=0x00000000000D9B60
    Latest crash info for cpu 0:
       Exception state (sv=0x2543D280)
          PC=0x000D9B60; MSR=0x00009030; DAR=0x09264718; DSISR=0x40000000; LR=0x000D9B48; R1=0x0CC8B410; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0006B544 0x000D9B0C 0x0021FC88 0x0021F650 0x000FC4A4 0x000E4B18
             0x000E4E28 0x000E7284 0x000E6B60 0x000E7408 0x0021FAF4 0x00239240 0x000F9FA8 0x000E817C
             0x000F3788 0x000EBD78 0x000EC138 0x002A7A94 0x000ABCB0 0x00000000
    Proceeding back via exception chain:
       Exception state (sv=0x2543D280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2DB07780)
          PC=0x90001F4C; MSR=0x0200D030; DAR=0xE29CD000; DSISR=0x42000000; LR=0x943F2BD4; R1=0xBFFFAD70; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2543D280)
          PC=0x000D9B60; MSR=0x00009030; DAR=0x09264718; DSISR=0x40000000; LR=0x000D9B48; R1=0x0CC8B410; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0006B544 0x000D9B0C 0x0021FC88 0x0021F650 0x000FC4A4 0x000E4B18
             0x000E4E28 0x000E7284 0x000E6B60 0x000E7408 0x0021FAF4 0x00239240 0x000F9FA8 0x000E817C
             0x000F3788 0x000EBD78 0x000EC138 0x002A7A94 0x000ABCB0 0x00000000
       Exception state (sv=0x2DB07780)
          PC=0x90001F4C; MSR=0x0200D030; DAR=0xE29CD000; DSISR=0x42000000; LR=0x943F2BD4; R1=0xBFFFAD70; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:10:37 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2070BC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CCE3A20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x015FB380
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
    Proceeding back via exception chain:
       Exception state (sv=0x2070BC80)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2C449000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x0032CD80; DSISR=0x40000000; LR=0x9000A6BC; R1=0xF007F320; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2070BC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CCE3A20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x015FB380
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
       Exception state (sv=0x2C449000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x0032CD80; DSISR=0x40000000; LR=0x9000A6BC; R1=0xF007F320; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:19:23 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2BE8E280)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC9BA20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x00000000
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
    Proceeding back via exception chain:
       Exception state (sv=0x2BE8E280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2BE95000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x00341006; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFFE2C0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2BE8E280)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC9BA20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x00000000
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
       Exception state (sv=0x2BE95000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x00341006; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFFE2C0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:35:08 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2C30EA00)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CBCB9D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00063B10 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FCC9C
             0x002FBFCC 0x002FBFCC 0x002F858C 0x002E6AEC 0x0008B0FC 0x000291C0 0x000233AC 0x000ABE2C
             0x302C3078
    Proceeding back via exception chain:
       Exception state (sv=0x2C30EA00)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2BEAEC80)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xE0065000; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFF9980; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2C30EA00)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CBCB9D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00063B10 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FCC9C
             0x002FBFCC 0x002FBFCC 0x002F858C 0x002E6AEC 0x0008B0FC 0x000291C0 0x000233AC 0x000ABE2C
             0x302C3078
       Exception state (sv=0x2BEAEC80)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xE0065000; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFF9980; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:45:09 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2C43D780)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC0BA40; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC0BADC 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C 0x372F507A
    Proceeding back via exception chain:
       Exception state (sv=0x2C43D780)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x20A04A00)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xBFFFF0CC; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFDE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2C43D780)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC0BA40; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC0BADC 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C 0x372F507A
       Exception state (sv=0x20A04A00)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xBFFFF0CC; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFDE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Thanks for any effort anyone is able to give.
    Tricia

    Hello,
    We had (still do) two eMac's a 1.25GHZ USB 2.0 1GB ram and a 1.0GHZ 1GB ram, never had kernal
    panics on either
    then, (One was in use the faster one with a airport extreme card) the 1.0GHz stored (also with a airport
    extreme card) We bought a Airport Extreme dual band 802.11n router and got every one set up
    (using a
    MacBook pro running Snow Leopard, specs said Macs running OSX 10.3.9 Panther could run
    wirelessly
    from the Airport Extreme (but not set it up) and then I went to the eMac 1.25GHz and turned it on
    and kernal panic, yikes, ran applejack, techtoo from Applecare (though a 2004 version) and Apple
    Hardware  test and Disk Warrior , everything is fine, then thought, bring out the other emac (running
    Panther) started it up bang Kernal Panic, then, unplugged both for awhile, plugged then back in did
    zap PRAM, then restarted one in safe mode and it worked like a computer, no kernal panic (*But we
    turned off the airport card) restarted and turned airport card back on and kernal panic, did this with
    both, turning on/off airport card on two computers and airport extreme card on-kernal panic, card off
    worked like a mac (but no online) so, hooked up via Ethernet, reset settings on emac on 1 and was
    fine, no kernal panic, ran like a mac and got online, switched the ethernet over to the other eMac
    and same thing, after settings changed, mac ran, got online no kernal panic
    Then swicthed both back to airport extreme card settings-Kernal Panic Right Away, ended up using
    ethernet cable on one, put the emac 1.0 Ghz back in basement (and later the 1.25Ghz ) and bought
    a imac in 2010 3.06Ghz 4GB Ram, spoke with tech support (as Airport Extreme was quite new and
    Staff said that the new (then early 2010 I think) the Airport Extreme dual band 802.11N due to play
    well with 802.11B Airport Extreme cards, I discussed the specs and what was required to set up the
    Airport Utility and Airport Extreme (Leopard >above, and to use Panther 10.3.x and above (guess not
    true or We had one very unusual coincidence
    ? did You by chance get a new Router or cable modem? If possible try the ethernet route if possible
    (adjust settings in System Preferences, ? move eMac closer if You have a short pice of cable
    I realize eMac's weigh 55pounds or so,
    Just thought I would share this, The XLAB is a great site, but this trouble shooting found out ours
    * and a imac (older) could not accept the high level of security, so it (was a Airport Card 1st version)
    swicthed to ethernet and a lower security type )its on the desk with the cable modem and airport
    extreme and rarely used or on anymore ( alaptop is used instead)
    Bizarre or what? later used Google and typed in Apple Airport Extreme 802.11N dual band and
    problems and wow pages and pages (a lot like what I am writing)
    Best of luck
    db

  • HT4436 I don't see the point of having to create another email account - could someone explain the thinking behind this please?

    For iCloud syncing there are a few items that require a new iCoud email address to be created (eg. Notes and email), whilst the majority of other options do not require this.
    My question is simply why do these items need yet another email address to be created?  I would have though the Apple Id would have been sufficient to hang everything together...
    If someone could explain the thinking behind this please I will hopefully be more comfortable with it and probably more likely to start using these features!
    Thanks in advance!
    Stuart

    If TCP port 25 isn't open, then SMTP services won't work.  That's the port that all SMTP servers use to communicate amongst themselves.    (Sure, you can change the port your SMTP server is listening on, but you'd also have to change the port processing on all of the other SMTP servers around — and if you did manage to implement that change everywhere, the local network folks would likely just block the new port for the same reasons they blocked the old port.)
    If you have a public static IP address and have correct forward and reverse translations — host domain to IP address, and IP address to host domain name — then you don't need and very likely don't want to run your own DNS server. 
    More to help you learn how these pieces fit together and not something I'd expect you would need given you have a public static IP and public DNS here is a detailed DNS server configuration article for OS X Server; enable Show All Records and it applies to Server.app on 10.7 and later.  If you have questions after reading that, I can certainly answer them and also update the article to try to reduce the confusion or answer the question.
    Your host didn't have valid reverse DNS, so you'll want to get that cleared up, and you'll want to get the port blocks cleared, or work with the local network folks to set up a relay through one of the existing mail servers.

  • Could anyone help me out with this please?

    Hi all,
    I have always had a little problem messing with gradients, when creating images using them I tend to try and make things to perfect and then get very frustrated. This is the case again today
    I have attached two images, one light and one darker. Could anyone help me out recreating these using FW please?
    I am not after the letters in the center, I am just trying to create the background and the floor of the image with all its gradients and shadows.
    Any help greatly appreciated

    No I don't, never heard of that

  • Could someone check this Terminal log for keystroke loggers?

    Last login: Mon Nov  4 16:23:37 on ttys000
    Rebeccas-MacBook-Pro:~ RebeccaMurray$ kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    Rebeccas-MacBook-Pro:~ RebeccaMurray$ sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfi x|x)/{print $3}'
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    Sorry, try again.
    Password:
    com.microsoft.office.licensing.helper
    com.google.keystone.daemon
    com.adobe.fpsaud
    Rebeccas-MacBook-Pro:~ RebeccaMurray$ launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    com.google.keystone.system.agent
    com.spotify.webhelper
    com.facebook.videochat.RebeccaMurray.updater
    Rebeccas-MacBook-Pro:~ RebeccaMurray$ ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta} * L*/Fonts 2> /dev/null
    /Library/Components:
    /Library/Extensions:
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AudioMixEngine.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    TSLicense.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Flash Player.plugin
    Flip4Mac WMV Plugin.plugin
    JavaAppletPlugin.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    SharePointBrowserPlugin.plugin
    SharePointWebKitPlugin.webplugin
    Silverlight.plugin
    flashplayer.xpt
    googletalkbrowserplugin.plugin
    npgtpo3dautoplugin.plugin
    nsIQTScriptablePlugin.xpt
    o1dbrowserplugin.plugin
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.google.keystone.agent.plist
    /Library/LaunchDaemons:
    com.adobe.fpsaud.plist
    com.google.keystone.daemon.plist
    com.microsoft.office.licensing.helper.plist
    /Library/PreferencePanes:
    Flash Player.prefPane
    Flip4Mac WMV.prefPane
    /Library/PrivilegedHelperTools:
    com.microsoft.office.licensing.helper
    /Library/QuickLook:
    iBooksAuthor.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    Flip4Mac WMV Advanced.component
    Flip4Mac WMV Export.component
    Flip4Mac WMV Import.component
    /Library/ScriptingAdditions:
    Adobe Unit Types.osax
    /Library/Spotlight:
    Microsoft Office.mdimporter
    iBooksAuthor.mdimporter
    iWork.mdimporter
    /Library/StartupItems:
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Library/Address Book Plug-Ins:
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    Library/Input Methods:
    .localized
    Library/Internet Plug-Ins:
    FacebookVideoCalling.bundle
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.604394D0-D959-402F-9BA9-EA4 9EC2C3AA7.plist
    com.apple.FolderActions.enabled.plist
    com.apple.FolderActions.folders.plist
    com.facebook.videochat.RebeccaMurray.plist
    com.spotify.webhelper.plist
    Library/PreferencePanes:
    Rebeccas-MacBook-Pro:~ RebeccaMurray$ osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null
    iTunesHelper, Android File Transfer Agent, Dropbox
    Rebeccas-MacBook-Pro:~ RebeccaMurray$

    I ran it on debug mode and changed it to this? see any problems now? or are they fixed? It looks to me like it took some actions out, I hope that doesn't
    effect it....
    stop();
    addEventListener(Event.ENTER_FRAME, preLoad);
    function preLoad(e:Event):void{
    var bytestoLoad):Number = loaderInfo.bytesTotal;
    var numberLoaded:Number = loaderInfo.bytesLoaded;
    if (bytestoLoad == numberLoaded) {
    removeEventListener)Event.ENTER_FRAME, preLoad)
    gotoAndStop(2);
    i'm kinda new to flash ((I started as a lua scripter (on Roblox)) so I'm a little confused about this. Thanks for the help!!

Maybe you are looking for

  • OIM_SERVER1 starting in Admin Mode

    Guys, Following Tasks(to upgrade Oracle Identity Manager from 9.x to 11g) from upgrade guide (http://docs.oracle.com/cd/E21764_01/upgrade.1111/e10129/upgrade_oim.htm#CACIBHHJ) has been completed succesfully:- •Task 1: Identify and Prepare Oracle Data

  • Error during install lync server

    hi i got below problem please help me i put link please check it http://upload7.ir/imgs/2014-09/32694048088522073471.png

  • Who can tell me the website which has some oracle client_si

    I have read from here there is a website which has some client_side program of oracle on linux, but i forgot the address, who can tell me? (something like sqlplus under x, etc) null

  • Insert/import a texture?

    Hello, I am a new user to Mac's and have just discovered the wonder of pages 06. Previously I was attempting all of my work in a Windows machine using MS Word from office 2000. The one item I dearly miss from word and do not know if it is available i

  • Can I install CS3 without disk? Have key registered.

    My old laptop crashed and of course after my move, I can't find my cs3 disks. I have my serial key registered through Adobe (shows up in my "sign-in" info when I log into the website) and all. I tried finding the download files through the website bu