No repeat issue!!

How am I supposed to make a background image in the table not
to repeat? i just want it to be at the center and not repeat any
html code for this? if there is help me plz thanks!! :)

Perhaps you get some flavor for how powerful and useful CSS
is from this.
It would be worth your time to read up on it....
http://www.projectseven.com/tutorials/css/qdmacfly/index.htm
http://www.macromedia.com/devnet/mx/dreamweaver/css.html
http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
http://www.tjkdesign.com
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"sOuNd.WaVe" <[email protected]> wrote in
message
news:g0ugt1$3id$[email protected]..
> Thanks!!
>
style="background-repeat:no-repeat;background-position:center;">

Similar Messages

  • Record/Record Repeat Issue

    I have a key mapped to 'Record/Record Repeat'. I'll record a section. Then I'll start recording over it, to create a comp. A dialog asks me if I want to delete or keep the audio I'm recording over. The original audio is then removed from the arrange window, or delete based on my selection unless I hit cancel - then it starts recording. If I deselect the audio during the recording, the behavior stops and it works fine. So it only seems to happen if i have the region I'm comping with selected.

    I am having the same issue, I think.
    When I begin recording with a track selected (merge recording w/selected track is on) it records. If I push my record repeat but, instead of recording over what I had just recorded in the previous take, it deletes the whole region. I don't even get a prompt. This seems to be a new bug, or maybe a setting I have wrong?

  • Repeated issues with Adobe Flash and Facebook Firefox 6

    I have had repeated ongoing issues since upgrading to Firefox 6. Adobe Flash crashes repeatedly, even after installing the newest. In particular having a ton of issues with Facebook. It all works fine in IE, so have narrowed it down.
    I think I would just like to go back to Firefox 5. Is that available somewhere?

    Anyone able to help please?
    Thanks.

  • Key repeat issues when renaming files

    I am having trouble with the cursor arrow key repeating when renaming files. When I press and hold the left or right arrows while renaming in Cover Flow view, it starts scrolling through the files instead of moving the cursor through the filename.
    This also seems to happen when renaming files on an attached USB device. Instead of moving the cursor it moves the file selection bar after a few cursor repeat actions.
    Has anyone else encountered this issue? Is there a fix?

    This has been bugging me too. I noticed it right back when Leopard was still 10.5.0 and thought they would have at least acknowledged it by now. In coverflow view, the files scroll across the covers, in list mode the folder tree collapses if you hold the left arrow key. And another annoying thing Leopard does is that when you're renaming, if any file in that folder changes, it abandons the rename instead of continuing, making your keystrokes move up and down the list of files without warning.

  • Billing number repeating(which should not repeat) issue .

    Dear SAP guys,
    We are getting a wierd problem where the billing document number is repeating (which should not happen) .Like for example system proposed 1 to 10 numbers ,then for the next document system is proposing number for eg.6 which was already assigned .
    Need your advices on this issue and please let me know why this is happening .Also pls let me know what could be the solution to fix the issue.
    Amar
    SAP consultant.

    Hello Amar,
    if the system reassigns numbers of billing documents already existing, then there should be an update termination due to DUPREC dump.
    Are you getting DUPREC dump ?
    Please check in SM13.
    Best regards,
    Ivano.

  • Repeater issue

    i have the following code:
    <mx:State name="shippingType">
    <mx:SetProperty target="{welcomeText}" name="text"
    value="How would you like to have your order shipped?" />
    <mx:RemoveChild target="{orderReview}" />
    <mx:AddChild>
    <mx:HBox left="195" top="60">
    <mx:VBox>
    <mx:Repeater id="rp"
    dataProvider="{Application.application.storeDataObj.shippingMethods}"
    recycleChildren="false">
    <mx:RadioButton groupName="shippingGroup"
    label="{rp.currentItem.storeshipmethodname}"
    value="{rp.currentItem}" click="showShipOptions(event);" />
    </mx:Repeater>
    </mx:VBox>
    <mx:VBox id="shippingOptionsBox" visible="true">
    <mx:Label text="Shipping Options"/>
    <mx:Repeater id="rprates"
    dataProvider="{Application.application.storeDataObj.shippingRates}"
    recycleChildren="false">
    <mx:RadioButton groupName="shippingRatesGroup"
    label="{rprates.currentItem.serviceName}
    (${rprates.currentItem.serviceRate})"
    value="{rprates.currentItem.serviceRate}" />
    </mx:Repeater>
    </mx:VBox>
    </mx:HBox>
    </mx:AddChild>
    </mx:State>
    when a user selects a shipping method a call goes to my CF7
    server and gets the data for that shipper. The issues occur though
    when after selecting one shipper and then selecting another
    shipper. The code all executes up to the point where it has to
    redraw the radio buttons for the shipper options. At this point i
    get the following error:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    at mx.controls::RadioButton/get
    labelPlacement()[C:\dev\GMC\sdk\frameworks\mx\controls\RadioButton.as:171]
    at
    mx.controls::Button/mx.controls:Button::measure()[C:\dev\GMC\sdk\frameworks\mx\controls\B utton.as:1282]
    at
    mx.controls::RadioButton/mx.controls:RadioButton::measure()[C:\dev\GMC\sdk\frameworks\mx\ controls\RadioButton.as:398]
    at
    mx.core::UIComponent/mx.core:UIComponent::measureSizes()[C:\dev\GMC\sdk\frameworks\mx\cor e\UIComponent.as:5360]
    at
    mx.core::UIComponent/validateSize()[C:\dev\GMC\sdk\frameworks\mx\core\UIComponent.as:5306 ]
    at
    mx.managers::LayoutManager/mx.managers:LayoutManager::validateSize()[C:\dev\GMC\sdk\frame works\mx\managers\LayoutManager.as:554]
    at
    mx.managers::LayoutManager/mx.managers:LayoutManager::doPhasedInstantiation()[C:\dev\GMC\ sdk\frameworks\mx\managers\LayoutManager.as:637]
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at
    mx.core::UIComponent/mx.core:UIComponent::callLaterDispatcher2()[C:\dev\GMC\sdk\framework s\mx\core\UIComponent.as:7789]
    at
    mx.core::UIComponent/mx.core:UIComponent::callLaterDispatcher()[C:\dev\GMC\sdk\frameworks \mx\core\UIComponent.as:7732]
    Any ideas what i'm doing wrong... i'm sure it's me forgetting
    to do something....

    fixed it apparently there is a bug which causes the error to
    get thrown when you don't have the labelPlacement attribute for all
    your radio buttons.
    I
    found the solution here.

  • WAP200 repeater issue with 2nd SSID

    I have a WAP200 AP configured with 2 SSID's.  The AP is configured to allow the use of repeaters and i have 2 other WAP200's acting as repeaters for each SSID.  The WAP200 repeater i have configured to repeat the signal for the 1st SSID works perfectly but i cannot pick up an IP address from the WAP200 repeater on the 2nd SSID and receive an error stating that there is limited connectivity.
    I have checked the configs on the repeaters and they are the same for their respective SSID's. Both repeaters were configured using the site survey option and the AP is configured with the repeaters SSID mac address, not its physical address. I have reset the 2nd repeater and re-configured it twice incase i missed something but still the same issue.  As soon as i switch off the 2nd repeater i am instantly connected to the 2nd SSID network albeit with reduced signal strength from the AP.
    Is there a limitation with the WAP200 that only allows the first SSID to be repeated?

    Hi Peter,
    Which firmware version are you using on the SRP547?
    If you haven't done so already, please grab the latest version from www.cisco.com/go/srp500.
    Andy

  • Page not centering and background repeat issue in Safari

    I recently put up a new website. It seems to be working and displaying fine in IE, Chrome and FF. My problem is Safari. The page is not centering (going left) and I'm also having a problem with
    the background image of my FOOTER div not repeating. I'm sure this is something simple (ie:stupid) I did but it just eludes me. The other interesting thing is that the background image for the footer
    (which is the grass image) is actually 1024px wide but it's not displaying it fully or else it's compressing it. Here's a link to the website. Any insights are appreciated. I am using Safari on an iPad if
    that matters.
    www.cardinalwood.com
    Donna

    Non-breaking spaces should not be used as a layout device. 
    <p>We are members of these fine NC Organizations.
          &nbsp 
    Click the logos to learn more.</p>
    It's much better to use CSS to control alignment of elements on your pages.
    <p style="float:right: text-align:center">We are members of these fine NC Orgnizations <br />
    Click the logos to learn more.</p>
    You have a couple of CSS errors that need attention.
    http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fwww. cardinalwood.com%2F
    The iPad display is 768px wide in portrait view and 1024px wide in landscape view.  Which view are you using to test your site?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Row repeater issue

    Hi Experts!
    Following is node structure
    Project
    |
    --------User
              |
              -----------Task.
    Repeater is repeated only project times but i need it to repeate user times.
    Plz help!!  

    Mangesh,
    if_wd_context_element - there is a method get_child_node... this will be useful to get child node reference..
    ex.
    lt_parent_node_elements..
    loop at lt_parent_node_elements into ls_parent_elements..
    lo_nd_child_node = ls_parent_elements->get_child_node( 'ND_CHILD' ).
    """" now you can make use of child node reference at index 1 of parent node..
    lo_el_child_node = lo_nd_child_node->get_element( ). etc...,
    endloop.
    try, work around this..

  • Flex nested repeater issue

    If someone can explain why I am getting this error, it makes
    utterly no sense to me.
    Where I try to get the linkrep current index, I get the
    error: Error: Access of undefined property linkrepeaterIndices.
    EDIT: as it turns out, i changed the name of the inner
    repeater from linkrep to something else and it works fine. Is it
    that linkrep is some sort of reserved word?
    I have been going at this one for quite a while, man!

    This can be done by using <mx:Reparent/> tag.

  • I fear that I have lost email I was trying to send, and that it is a repeatable issue in Mail.app

    To recreate my issue
    Take all accounts offline
    Compose two (2) or more emails and send them
    Go to Outbox and select all emails
    Right-click and select "Send"
    When prompted, select "Send"
    Bring your accounts back online
    The emails will not be sent, but will not be in the Outbox either
    Is there any way to retrieve them?
    Thanks!

    Taking the accounts offline was just the easiest way to reproduce the issue. I discovered the issue when a serverside configuration was preventing me from making a connection to the SMTP server, but the effect was the same -
    I attempted to send multiple emails
    The connection error prevented them from being sent so they were placed in the Outbox mailbox
    I changed a configuration setting thinking it would fix the issue
    Selected all messages in Outbox
    Right-clicked and selected "Send"
    Confirmed "Send"
    Messages were removed from Outbox but not delivered and I cannot find where or if they were moved
    I have been able to reproduce this by both taking the accont offline and misconfiguring my smtp settings. I did not anticipate the possibility that sending emails would be a destructive act.

  • 60GB Video having repeated issues...

    I've had this problem for awhile. I've finally decided to post here in order to get a straight answer, because it's going to cost me upwards toward $300 to get my iPod fixed by Apple (it would be cheaper- and easier- to just buy a new one, but I don't want to).
    Anyway, my iPod works fine when it's working, but after a half-hour or so of playing time, it freezes during a song, or skips a bunch of songs, and becomes unresponsive. I have to restart it by holding down the center & Menu buttons. However, when I do this, it gives me an error message in four different languages that says "Connect iPod to computer, Use iTunes to restore" or something to that effect. I found out rather quickly that this does not solve the problem, and just takes up some of my time.
    In order to TEMPORARILY resolve the problem, I hold down the center & Menu buttons several times, sometimes alternating with the center & Play buttons (which puts the iPod into disk mode, then takes it out). This process can take anywhere from two minutes to half an hour, and is getting very irritating.
    Does anyone have the same problem, and/or any solutions? Thank you.

    Do you have the current software on the Ipod?? Also run the Diagnostics for the Ipod under the Help menu in Itunes. See what it gives you back as possible ways to troubleshoot your ipod. It may be that your software is corrupted and may it may not be able to be restored because of that. Restore can only solve some software issues and not all.

  • ECATT repeating Issue in Transaction Upload.

    Hey Guys,
    I have done the recording of PFCG.
    i have given
    1)Role Name
    2)Desc
    3)MENU tab ADD Transaction
    pop up opens for entering the Transactions
    4)i have added 2 transactions in my recording.
      vl02n
      vl03n
    i have DOwnlaoded the Template From Test Configuration.
    I have modified the Template and Saved it in Tab Delimit Format.
    Now when iam Uploading the Data in foreground.
    it accepts the Role Name,Desc,Goes to menu Tab,Add transaction now the Pop up Opens.
    it Accepts All this from my test File.
    Now Problem is it Does accept the First Record Transaction from My test File va01 but when
    the cursir goes to 2nd line it shows the previous entry just entered.i.e va01.
    where as in 2nd position va02 is supposed to be accepted.
    how do i Clear this..
    while looking at the processing code.
    I get this
    ID WND[1]/USR/TBLSAPLPRGN_WIZARDCTRL_TCODE/CTXTS_TCODES-TCODE[0,0] "VA01
    ID WND[1]/USR/TBLSAPLPRGN_WIZARDCTRL_TCODE/CTXTS_TCODES-TCODE[0,1] "VA01
    Now wht do i do so that it picks other tcode from my test file and not the previous record.
    Any one who could be of Help.
    can anyone leave in his/her Cell No so that I could Call and make u Understand the situation.
    it has been 4 days and iam still Stuck with this.
    Thanks Awaiting,
    Essam

    Hi,
    Try Condense that Field Fval.
    FORM populate_data  USING    value(p_fieldname)
                                 value(p_fieldval).
      CLEAR fs_bdcdata.
      fs_bdcdata-fnam = p_fieldname.
      fs_bdcdata-fval = p_fieldval.
      CONDENSE fs_bdcdata-fval.
      APPEND fs_bdcdata TO t_bdcdata.
    ENDFORM.                             
    Hope this is helpful.
    Thanks
    Kalyan

  • ITunes Match unable to download songs from iCloud issue

    I have a MacBook Pro running Mavericks 10.9.4 and iTunes 11.3.1. I am having repeated issues with downloading songs from iCloud to my MBP. I have reset Match numerous times using the steps located here: http://support.apple.com/kb/TS4054.
    Then it works for a short time and I am able to download some songs and then suddenly I will get the pinwheel, the songs in iCloud will all show greyed out and then I am no longer able to download anymore. Repeat process.
    I am about to try a test tethering to my iPhone's internet service to see if that improves things. So far, the only threads I have found on this topic have been related to Mountain Lion. So I'm not sure if this is a different issue I am seeing.
    I also tried resetting the System Configuration to see if it would fix, but no luck: https://discussions.apple.com/thread/4160355?start=90&tstart=0
    Is anyone else experiencing this and what is the issue? Can it be fixed?

    Hi,
    I don't think that you have a similar issue to OP.
    Mettelin wrote:
    That means that iTunes Match is stripping out the Sample Rate when it uploads some tracks (even variable within albums) and then it gets stuck when you try to play the track.
    Apple needs to fix this.
    Match does not strip out the Sample Rate. If tracks are matched, it shows the standard sample rate of 44,100 but unknown when tracks are uploaded (probably because Apple does not capture this on such tracks). If you have an iCloud status of "Waiting" and a blank sample rate, this suggests that the match / upload process was not completed.
    If you have not already solved your problem, I suggest that you delete those tracks and then read them to your iTunes library. Once you have matched or uploaded them, you can delete from your hard drive but not the cloud.
    Jim

  • Issues with External Hard Drives

    I hope this is the right forum for this one - please give me a steer if not! I've also posted it in 'Dock and Finder', but this forum seems equally appropriate, if not more so.
    I'm getting repeated issues with External Hard Drives, including ones that I have been using successfully for months/years, suddenly failing to mount and then becoming 'unknown device' through the firewire branch of 'About This Mac'.
    I've just bought a new hard drive on the grounds that the others had somehow failed, and the same problems are emerging. I decided to Repair Permissions on my iMac's internal drive, and am copying the results below, from repair runs conducted yesterday and today:
    YESTERDAY'S REPAIR PERMISSIONS RESULTS
    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.
    Repairing permissions for “Macintosh HD”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "private/var/log/secure.log", should be -rw------- , they are -rw-r----- .
    Permissions differ on "Library/Preferences", should be drwxrwxr-x , they are drwxrwxrwx .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/lanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanArrow.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanCheck.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Applications/Utilities/AirPort Utility.app/Contents/Resources/wanDisabled.png", should be -rwxrwxr-x , they are -rw-rw-r-- .
    Permissions differ on "Library/Application Support/Apple/ParentalControls/ALRHelperJobs", should be drwxrwxr-x , they are drwxr-xr-x .
    ACL found but not expected on "System/Library/User Template/English.lproj/Sites".
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/DVD.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSettings.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSources.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Movies.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Music.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Photos.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Podcasts.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/TV.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/BackRow.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    ACL found but not expected on "System/Library/User Template/English.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/MIDI Drivers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Compositions".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Input Methods".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Screen Savers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Voices".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library".
    ACL found but not expected on "System/Library/User Template/English.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/English.lproj/Music".
    ACL found but not expected on "System/Library/User Template/English.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/English.lproj/Public".
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/LaunchDaemons/com.apple.usbmuxd.plist", should be -rw-r--r-- , they are -rwxr-xr-x .
    Warning: SUID file "System/Library/Filesystems/AppleShare/afpLoad" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/Resources /DiskManagementTool" has been modified and will not be repaired.
    Warning: SUID file "sbin/umount" has been modified and will not be repaired.
    Warning: SUID file "bin/rcp" has been modified and will not be repaired.
    Permissions differ on "Library/Application Support/Apple/ParentalControls/ContentFiltering", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "Library/Application Support/Apple/ParentalControls", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/CodeResourc es", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/BlackAndWhiteEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/CubeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DissolveTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DropletTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FadeThroughBlackTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransitionSmall.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PageFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PushTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/RevealTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/SepiaEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/TwirlTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/WipeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrwxr-xr-x .
    Warning: SUID file "usr/bin/quota" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rlogin" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rsh" has been modified and will not be repaired.
    Permissions repair complete
    TODAY'S PERMISSIONS REPAIR RESULTS
    Repairing permissions for “Macintosh HD”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "Library/Application Support/Apple/ParentalControls/ALRHelperJobs", should be drwxrwxr-x , they are drwxr-xr-x .
    ACL found but not expected on "System/Library/User Template/English.lproj/Sites".
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/DVD.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSettings.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/FRSources.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Movies.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Music.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Photos.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/Podcasts.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/CoreServices/Front Row.app/Contents/PlugIns/TV.frappliance/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/BackRow.framework/Versions/A/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    ACL found but not expected on "System/Library/User Template/English.lproj/Desktop".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Application Support".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Assistants".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/MIDI Drivers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Components".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/Digidesign".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins/VST".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Alerts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds/Banks".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Audio".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/ColorPickers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Compositions".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Favorites".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/FontCollections".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Fonts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Plug-ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie/Sound Effects".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/iMovie".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Input Methods".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Internet Plug-Ins".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Keyboard Layouts".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Preferences".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Printers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Screen Savers".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Sounds".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library/Voices".
    ACL found but not expected on "System/Library/User Template/English.lproj/Library".
    ACL found but not expected on "System/Library/User Template/English.lproj/Movies".
    ACL found but not expected on "System/Library/User Template/English.lproj/Music".
    ACL found but not expected on "System/Library/User Template/English.lproj/Pictures".
    ACL found but not expected on "System/Library/User Template/English.lproj/Public".
    Permissions differ on "Applications/iTunes.app/Contents/CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Frameworks/InternetUtilities.bundle/Contents/ CodeResources", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Permissions differ on "Applications/iTunes.app/Contents/Resources/iTunesHelper.app/Contents/CodeResou rces", should be -rw-rw-r-- , they are lrw-rw-r-- .
    Warning: SUID file "System/Library/Filesystems/AppleShare/afpLoad" has been modified and will not be repaired.
    Warning: SUID file "System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/Resources /DiskManagementTool" has been modified and will not be repaired.
    Warning: SUID file "sbin/umount" has been modified and will not be repaired.
    Warning: SUID file "bin/rcp" has been modified and will not be repaired.
    Permissions differ on "Library/Application Support/Apple/ParentalControls/ContentFiltering", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "Library/Application Support/Apple/ParentalControls", should be drwxrwxr-x , they are drwxr-xr-x .
    Permissions differ on "System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/CodeRe sources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/CodeResourc es", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/BlackAndWhiteEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/CubeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DissolveTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/DropletTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FadeThroughBlackTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/FlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/MosaicFlipTransitionSmall.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PageFlipTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/PushTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/RevealTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/SepiaEffect.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/TwirlTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "System/Library/PrivateFrameworks/iPhotoAccess.framework/Versions/A/Resources/P lugins/WipeTransition.IAPlugin/Contents/CodeResources", should be -rw-r--r-- , they are lrw-r--r-- .
    Warning: SUID file "usr/bin/quota" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rlogin" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rsh" has been modified and will not be repaired.
    Permissions repair complete
    My concerns are:
    * Some of the permissions repaired yesterday appear to have needed to be repaired again today
    * There are several files which carry a warning that they won't be repaired as they have been 'modified', and some of these clearly relate to disk management.
    Does anyone have any ideas what is going on???
    Thanks!!

    Many problems with the 10.5.7 update have been fixed by a Restart.
    If that doesn't help, something may have gone wrong with the update. Download and install the "combo" update, from: http://support.apple.com/downloads/MacOS_X_10_5_7_ComboUpdate
    If that doesn't help, try running the Apple Hardware Test, on the disc that came with your computer.
    1. Disconnect all external devices (including the Ethernet cable) except the keyboard and mouse.
    2. Insert the "Additional Software & Apple Hardware Test" disc that came with your computer.
    3. Restart while holding down the "C" key. When the list of available startup volumes appears, click Apple Hardware Test and the right arrow.
    4. When the Apple Hardware Test main screen comes up (after a moment), follow the on screen instructions.
    5. If it detects a problem, an error code will be displayed. Make a note of it.

Maybe you are looking for

  • Ok folks...this is how I got my itunes to work!

    I was one of the unfortunate whose latest upgrade didn't work. Here is what I finally did to get it going with the current itunes (7.5) and the current quicktime (7.3). I started by following the directions in this instruction. http://docs.info.apple

  • Groupwise connector by microsoft outlook

    Hi I have the following enviroment: Microsoft Outlook Xp SP3, groupwise 7 connector by microsoft outlook. My server groupwise is 7.0.1 version and need use microsoft outlook as your front end. But I need receive my emails to un PST file. I can not se

  • How to download video player stream for ipad?

    How to download video player stream for ipad for free?

  • 16, 32, or 64GB?

    I am getting a 3G but need feedback on the appropriate size to get. My primary use will be for web email, surfing the web, possibly play some games, along with updating a website and blog; both with photos. I rarely use my iTunes for music or videos

  • Tabular Form to insert multiple rows at once

    Reading the forum I see I should use a tabular form to create an insert page to create multiple records at once. However is there a way to do this without loading records from the table so it will just be a plain create page? Any help is appreciated,