Cross 10.4/10.5/10.6 Compatibility

Hi all,
Over the past few years, we've been running xserves, upgrading some, buying new ones, etc... As a result, we have a number of servers that run 10.4, 10.5 and 10.6 (all server obviously). We run everything from web, mail, SQL, xsan, qmaster, etc. Everything's always worked great EXCEPT open directory, which as always been a brutal nightmare to the point where we run standalone on all servers, and just create usernames with the same user id over the different machines we need to share, for things like Xsan. That's worked until recently where we need to implement a hardware device that needs to query a LDAP server with our user accounts, so I'm back at it.
After a few hours today cracking away at server admin and WGM, and talking with AppleCare, I'm coming to the conclusion that the main problem we're encountering is mastering and slaving across OS versions. For example... we have 2 10.4 servers, one OD master, one connected, which works great. We have 2 10.6 servers, same config, that work great. 10.4 has weird errors when connecting to a 10.5 OD master, and 10.4 just does not talk to a 10.6 OD master (at least we end up nearly always freezing the 10.4 machine to the point of reboot and quick switch to standalone).
Does anyone know the actual compatibility of open directory across OS versions?
Thanks!

Hi
+"Does anyone know the actual compatibility of open directory across OS versions?"+
I'll be surprised if anyone will know anything definitive regarding this question? Even Apple themselves possibly? Although you never know? We've seen 3 server iterations since 2006. That's only 4 years. The take up of the Intel Processor Architecture may also have had a bearing? 10.5 as a Server version was not around for long in comparison to 10.3 or 10.4. LDAP Services have been expanded a great deal since 10.3. Apart from obvious changes in the interface (new Technologies/Services heavily dependent on LDAP - greater integration for Active Directory environments) most of the changes have been under the hood.
For Open Directory my general rule of thumb is to try and make sure server and clients are all the same OS. If that's not possible and if you have 10.5 Server (as an example) you should be fine with 10.4, 10.5 clients. For 10.6 Clients expect some reduced functionality although up till now I've never had a problem.
In my own experience I have a 10.5 Server "Connected" to a 10.4 ODM. This 'combination' works well with 10.4, 10.5 and 10.6 Clients and has done for over 2 years. I've not tried connectivity between 10.4 and 10.6 and I don't plan to. Mainly because I think it's too great a 'leap' and I would expect problems because of this.
My 2p.
Tony

Similar Messages

  • Browser Incompatibilities

    All right. I'll admit it. I'm new to Java.
    But after multiple weeks of hard work, I finally wrote The Ultimate Java Applet. At least, in my own mind. It's that pride thing again, gotta watch that. Finally had all the bugs ironed out, and it worked beautifully. I prepared to bask in the glory as I put it proudly up on my web site.
    Then, the trouble reports started flooding in. Everybody using the same platform I was had it work fine. But it seemed like everybody using Netscape, or using Macintosh, or using Linux had some sort of problem.
    It's all little stuff, as far as I can tell. Keyboard character mapping on Macintosh (may have fixed this one, may not have). Netscape 4.74 doesn't like the WindowListener interface, and throws an exception when the applet first tries to load because it's not found (no idea on this one). Netscape doesn't trigger the keyTyped event for the [Enter] key, while MSIE does (fixed this one). Mozilla doesn't like the copyArea method (takes like 0.2 seconds to move a 600 by 400 pixel area on a Pentium III 800 -- fixed that by putting in a checkbox). Like I said, all little stuff.
    Basically, I have several questions to pose in general.
    1. Are my experiences normal? I wrote this using Sun's SDK documentation from their web site, using no development tools besides javac and a text editor. It seems strange that a language that is supposedly so cross-platform would have so incredibly many compatibility problems. How do 'real' Java developers do it? A method that works for Java 1.1 fails under Java 1.3 -- but the method that works in 1.3 doesn't work in 1.1. How can you have an applet that supports both? Or do you just have to accept, with Java, that your code won't work on all browsers and go from there?
    2. Where can you find information on compatibility between browsers? It'd be nice to know before coding it and testing it that method 'x' is broken on Netscape.
    3. How can you test with enough browsers? So far it's been hit-or-miss, waiting for my users to report things and then trying to diagnose with them, a tedious and time-consuming process.
    4. I keep hearing about how Netscape is 'more compatible' than IE... yet my code seems to work beautifully under IE with a Sun compiler -- yet just about every version of Netscape I've tested so far has had some issue.
    I'm not trying to complain. It's just that I see a lot of really good Java code out there that works on everything, and I wonder, how do they do it? So please, share your secrets with me! I'd love to hear them. :)
    The applet is on the Shadowrun Denver connect page at http://aelfhame.net/~denver/connect.php3 . It's a Java-based client for an online game called a MUSH. I run it for free for my users (players), but it's something I'd love to put into general distribution if I can.
    Things I could use help with, if there are kind souls out there:
    1. How can I fix the copyArea problem under Mozilla for WIndows? The workaround I have works okay, but it's a kludge, and nobody likes kludges. Basically, copyArea is used to scroll the display area up by one line's worth of distance each time a new line is printed at the bottom. On most browsers, this is significantly faster (by a factor of 5 or so) than rendering the text one line at a time, as is done without the 'Optimized Scrolling' checkbox enabled.
    2. How can I fix the following exception on Netscape 4.74 for Macintosh:
    # Applet exception: class ClientApplet not found
    java.lang.ClassNotFoundException: java/awt/event/WindowListener
    at java.lang.ClassLoader.defineClass(Compiled Code)
    at netscape.applet.AppletClassLoader.loadClass(Compiled Code)
    at netscape.applet.AppletClassLoader.findClass(Compiled Code)
    at netscape.applet.AppletClassLoader.loadClass1(Compiled Code)
    * at netscape.applet.AppletClassLoader.loadClass(Compiled Code)
    at netscape.applet.AppletClassLoader.loadClass(Compiled Code)
    at netscape.applet.DerivedAppletFrame.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    3. Is the Macintosh IE key-mapping problem fixed? This causes the previous line of text to be displayed randomly when you try to type in the InBox area.
    4. Does anyone have any advice for web sites to visit to locate browser-based problems with Java? i.e. this is broken in IE 4.0, this is broken in Netscape 4.74, etc.?
    I'll be happy to share snippets of source code upon request, but posting it here is not feasible, since it's 40K or so in size for all classes. The copyArea function is this:
    public void scrollUp () {
    TLine tl = (TLine) Visible.elementAt (0);
    TLine tl2 = (TLine) Visible.elementAt (1);
    TLine tl9 = (TLine) Visible.elementAt (windowsize-2);
    Dimension ls = new Dimension (tl.getPreferredSize ());
    Graphics g = getGraphics ();
    if (g == null)
    return;
    Dimension d1 = tl.getLoc ();
    Dimension d2 = tl2.getLoc ();
    Dimension d9 = tl9.getLoc ();
    screen_graphics.copyArea (0,d2.height,ls.width,d9.height +
    tl9.realHeight (),0,d1.height - d2.height);
    g.drawImage (screenbuffer,0,0,null);
    Thanks in advance. I appreciate any help anybody can provide. I've been doing programming for roughly 15 years in languages ranging from Pascal and C++ to Java, PHP, and Perl.
    Joel Ricketts, MCSE
    Systems Engineer

    Hiya,
    A quick response for you: if you want to avoid all
    ll these browser incompatibilities, make sure your
    users use the latest Java Plugin. There is a whole
    section on javasoft.com dedicated to converting your
    <applet> code to code which is compatible with the
    plugin.
    Anyway, by forcing your users to use the plugin you
    ou are pretty much guaranteed consistent behavior
    across all browsers since the browser isn't doing any
    of the work; the plugin passes the applet to a JRE in
    the background whereas in the past the browser would
    handle it itself.How would you suggest doing this? i.e. forcing Internet visitors to the page to have the latest plugin? Mostly, it seems to be incompatibilities in different platforms (Mac, Linux), or in browsers (Netscape vs. IE), not necessarily in different versions, per se.
    I guess I'm a little confused on how this would work not so much in an implementation sense (i.e. what code to write), but instead in a sense of what the 'flow' would be, so to speak. i.e. an overview of how it'd work. If you could give me a good link to some info that would brief me on it, it would be great ... along with maybe something to help me develop an understanding of how this would help? The problem certainly acts like bugs in the java classes provided by the individual browsers -- does 'forcing' them to have a certain version correct this? I'm also a little confused by the concept of 'plugins', here -- which is mostly a Netscape term, I know. Does the plugin replace the native Java support within the browser? That seems to be what you're saying. But it should fix at least Netscape issues, hopefully. I just want to avoid any pitfalls introduced by making things incompatible, and make it stop working on those platforms on which it does currently work. Thanks!

  • HT6104 How do I upgrade to Safari 7 if I currently have OS X 10.6.8 running on my desktop?  I need it to access new features on another website.

    I need Safari 7 to be able to use some of the newer features at Fidelity Investments' website.  When I tried upgrading, I received a message stating that I could not update my OS X system (as currently configured).  Fidelity says this is supposed to be a free upgrade to Safari 7.  Any help appreciated.

    Before you finish considering upgrading your OS, do a check on your existing programs because many of them (in particular those that are PPC) will not work on the newer, higher OSs.
    Cross check using this feature.   Application compatibility table - RoaringApps

  • How do I get home video clips from iMovie Mac to iMovie iPad?  Surely there is some degree of cross-compatibility?  I have a load of clips in iMovie on my MBP that I wanna download to my iPad2 so that I can edit movies on the move.  Any ideas?

    How do I get home video clips from iMovie Mac to iMovie iPad?  Surely there is some degree of cross-compatibility?  I have a load of clips in iMovie on my MBP that I wanna download to my iPad2 so that I can edit movies on the move.  Any ideas?  (The clips are in a .mov format, they have been imported / converted into this format in iMovie, original files were from a JVC camcorder in some other strange format.)

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • Cross-platform compatibility?

    Not addressed in product specs:
    How does Muse handle cross-platform compatibility?
    Does it use HTML5 features?
    How does it handle audio and video?
    Can it generate a 'functioning' contact form?

    Muse handles output for most desktop browsers well.
    Muse only produces HTML5.
    Muse does not import audio or video files unless you paste code into this 'codeless' design tool.
    Muse only produces client side javascript. It offers no server side scripting (contact forms, comment areas, user account registration, password protection, e-commerce). If you want that, you'll need to paste code into this "codeless" design tool.
    It is possible to find more mature web design programs.

  • What about cross browser compatibility?

    HI
    I was searching cross browser and platform compatibility
    matrix.
    Can any one give me info on this or point me a link?
    Thank You,
    Suketu Vyas
    Rich Internet Application Architect
    Macromedia Certified professional
    http://www.suketuvyas.com

    Hi Suketu,
    We don't have a matrix like that yet.
    We have been testing on the latest browsers on both
    platforms. Obviously, we are shooting to support all major browsers
    correctly. We will note browser specific issues that we and other
    users find on the Spry wiki.
    I note in my Web Photo Gallery article that Safari has a bug
    where doesn't handle XML nodes named <image> correctly.
    If you find any browser specific bugs, please let us know!
    Thanks for your help,
    Donald Booth
    Adobe Spry Team

  • JSF Cross Browser Compatibility

    In reading about JSF I find no promise for cross browser compatibility. Am I to assume that this has been missed because
    i. JSF is a specification and not an implementation and I should be looking for the implementation to make that promise.
    ii. it's basically to hard to promise this.
    iii. I didn't look hard enough.
    I am guessing it's a (i) with the likely hood of (ii) to follow. But I would be interested on any feed back that anyone cares to add. For example, a implementation that is trying to promise this.

    In my opinion, the JSF specification (or better, any specification) can only refer to other specifications, but never to a concrete software product. Consider a sentence like:
            JSF 1.0 is compatible with IEWhat could that mean? Some possibilities:
    (1)     As it happened, until now, we did not stumble over a
            faces application that broke when run on our Faces
            reference implementation (version 1_1_01) in a
            WSAD 5.0 container in combination with IE 5.5
            with patch 12345 on Windows NT4 SP6 patch 98765.
            (To breake means to produce a result not legitimized
            by the spec, or to produce no result when one is
            expected, at least not in a reasonable time.
            Breakdowns caused by power failure or other
            reasons outside the scope of the spec to be ignored)Well, not worth any further comment.
    (2)     Implementations of JSF 1.0 Spec will not brake
            on any faces application when run in a
            WSAD 5.0 container in combination with IE 5.5
            with patch 12345 on Windows NT4 SP6 patch 98765
            (To breake means ...)That is ok... if you have just this combination of components and will never change. Keep in mind that (2) does not promise
    anything if you use IE5.5 patch 12345a (and the saying is, there have been several patches to IE ;-)
    (3)     Implementations of JSF 1.0 Spec will not brake
            on any faces application when run in any container
            in combination with IE 5.5
            with patch 12345 on Windows NT4 SP6 patch 98765.
            (To breake means ...)Same as (2)
    (4)     Implementations of JSF 1.0 Spec will not brake
            on any faces application when run in any container
            in combination with IE 6.0 on any platform with
            any patches.
            (To breake means ...)Maybe what is intended, just impossible to promise. First, such a bold statement about some software can not be proven.
    Second, even if you have gained good confidence by thorow testing, who knows which future changes Microsoft will apply to IE 6.0 (via patches, which offen not only correct bugs, but also introduce new and maybe incompatible features)
    (5)     Implementations of JSF 1.0 Spec will not brake
            on any faces application when run in any JSP 1.2
            or higher container in combination any broser
            which supports:
               - HTML 4.0.1
               - JavaScript 1.3
               - CSS 1.0
            where IE 6.0 is a browser which supports these
            three standards on any platform with any patches.
            (To breake means ...)It's getting better. But why, for heavens sake, should a JSF specification make a statement about the compliance of IE with HTML 4.0.1, JavaScript 1.3 and CSS 1.0? I think it would be the job of Microsoft to declare the compatibilty of their products with standards (if any applies, whatsoever).
    Therefore, lets get rid of these and we have:
    (6)     Implementations of JSF 1.0 Spec will not brake
            on any faces application when run in any JSP 1.2
            or higher container in combination any broser
            which supports:
               - HTML 4.0.1
               - JavaScript 1.3
               - CSS 1.0
            (To breake means ...)Nearly finished, just a little bit wordy. It is (nearly) obvious what 'to breake' means. And that it is common wisdom that software breakes, not some specification (Or, as Bertrand Meyer put it, Bubbles don crash. Specifications may be contradictory or fail to describe an algorithm, but never crash). Common wisdom removed gives:
    (7)     Implementations of JSF 1.0 need a JSP 1.2 container
            and a browser capable of HTML 4.0.1, JavaScript 1.3
            and CSS 1.0That's it. Specs exist for two reasons. First, to be discussed and thought about. Second, to be implemented. (To the supporters of agile methods: of course you can reverse the sequence ;-). Therefore, specs should be as short and concise as possible, omitting any useless blabla. If the specs are sufficently precise and of moderate complexity, we can even try to prove the compatibility of the specifications. 'COMPATIBLE WITH IE' is advertisement, not tech talk.
    Conclusion: Mixing up specifications and implementaions is generally a bad thing. Exception: All sentences where a specification and a implementation are mentioned together should have the form:
             Implementation X does [not] conform to specification Y
    ---------------------------------------------------------------------------------------------------------I have a follow up question, just inspired by yours. It does not especially concern JSF, but web pages in general.
    Some time ago, I stumbled over quite a few web sites with big red eye catchers:
    OPTIMIZED FOR INTERNET EXPLORER!!!
    And really, they did not look good on Netscape Navigator. Now, my question is, what do you think when you hit such a page? My first thoughts (it's long ago) have been:
        - Oh, nice designers. They really care for the majority of people,
          my neighbor uses an IE.
        - They just skiped the work for other browsers and sell this as an
          optimization. And I didn't get it. Very clever.
        - Poor Guys. Probably they had no other browser at hand.
        - Obviously they had publish this tremendously important information
          under pressure, no time to also optimize for others browsers.Wolfgang Oellinger

  • FCE FCP cross compatibility

    Sorry to waist everyone's time with a basic question, but hopefully someone can give me a straight answer. I searched around the user group but couldn't find what I was looking for.
    My question is if Final Cut Express projects and Final Cut Pro projects are cross compatible. If I start and edit a project in Express, can I take that project and work on it in Pro, and vice versa, if I start a project in Pro, can I then work on it in Express, and have everything work alright, and changes be saved. I asked because I am trying to start a doc project, but my partner is in another state. He has Pro readily accessible, but I only have Express. I'm wondering if I need to switch to Pro..
    Sorry for the long winded question, and thank you for any information.
    Phil

    As Al said with the correct versions of the applications you can go from FCE to FCP. However once the project has been saved in FCP there is a very good chance it will no longer open in FCE. Express projects can be opened in FCP, but Pro projects cannot normally be opened in Express. They are not fully cross compatible.

  • Logic Express , Protools cross compatibility?

    Hey everything thanks for taking the time to read this!
    I'd like to record using Apple Logic however for mixing and mastering my friend uses the latest version of ProTools, will I be able to create files that he will be able to work with, or will there be some problem in compatibility?
    Thanks!
    Gerald

    I work just the opposite with my friends who use Protools. For you it's pretty easy as you can bounce tracks and he can load them all in to PT in sync. You'll want to consult with him about what effects to keep in and what he has on his PT rig. I would recommend doing all the EQ and compression on PT but keeping the plugins you use that are integral to your music on your tracks, like delays with automation and reverb. Unless he has some sweet reverb plugs.

  • Cross-compatibility between FCP7 & AE CS4 on Win7-64 - how to make it work?

    I'm currently capturing from an Intensity Pro on a mac OS X 10.5.8 thru HDMI so my source is very high quality.
    I've been capturing to ProRes 422 HQ.
    I'd like to edit in FCP7, then output clips that would be used with AE CS4 on Win7-64.
    Also on the PC, I'd like to be able to use SynthEyes to view the clips to get motion tracking data.
    I want to them be able to move my output from AE CS4 on Win7-64 back to the Mac for final editing.
    The roadblock seems to be the lack of ProRes 422 HQ on win7-64 (unless I'm missing something).
    I'm open to using another Codec (like Cineform?).
    If I have to, I'll capture in Premiere (and maybe look at an Mx02 Mini while I'm at it) but I'd prefer to do my final editing in FCP7 - so I'll need a way to get the clips over to the Mac without degrading them.
    Any ideas on how to make this workflow work?

    my only issue is how to get the resulting files back to FCP so that, when I mix them in with other ProRes files, I won't have some massive re-rendering headache.
    Exactly. And the Windows machine cannot encode ProRes.
    I've asked the CineForm folks if they can output a ProRes container (packaged with their codec inside) - and maybe this will work?
    No...they don't do ProREs. That is an Apple codec. They do CINEFORM codec. If you convert everything to Cineform, and encode to that format on both, then you have no rendering. But I'm sure you'll need to get two licenses...one on each machine.
    What codec could you use on both machines that is comparable to ProRes? Well...Cineform. Sheer by Bitjazz. Not sure if the UNCOMPRESSED codecs are cross platform, meaning that the PC can render to this. I have always exported an Animation codec to the FX guys. They do their stuff, send back Animation, then I convert to the format I am working with. Yeah, that is a lot of converting. Which is why it might be wise to use one codec both machines can read/encode.
    Shane

  • Basic Bridge hidden files cross compatibility ???

    Hi...
    I am stuck with a very stupid problem.
    I travel a lot from my photographic studio and my house, which respectively haves mac and windows platforms.
    However, neither the "bridgesort", "camera raw import options (XMP)" and the "labels of the pictures" are working on both the systems, I just see/use one different each time.
    That's of course cause of the different naming of hidden files between windows and mac... in windows a hidden file have a "label" inside him, in linux there is a "." prefix on the file.
    So, I'm writing you to ask if there somewhere a BASIC/STUPID option to use a "." prefix (in combination with the hidden flag on the file labels) on Bridge's hidden files (ON WINDOWS), so that I will be able to see on both platforms the same things (labels, sorting, and camera raw preferences).
    That's unfortunately the same with ALL pictures thumbnails, that causes a huge amount of useless scratch on the disks and also a waste of free space.
    That' a very basic thing to do and there is a lot of linux software that do this as a basic thing to make people use cross-platform software with the same preferences on it's computer.
    Please keep me informed, so I'll finally stop to use GOOGLE PICASA on my house's PC because I can't use my studio's preferences.

    ... ?

  • 10Gb-10Gb cross-device compatibility questions (PHY-connectors)...

    Hi, all, in general, I'm a little surprised at all the PHYsical layer standards running 10Gb Ethernet. This seems to have hindered adoption rate substantially. I have been recently getting questions like can I connect this server chassis to this switch device. or can I connect future-proof the switch deployment now so that it will handle 10Gb firewalls when we buy those. And we have some older 6509e chassis with SUP-720, which don't seem to be able to support SFP+ linecards easily. this is pretty confusing, so just wondering if someone has found a document covering all the PHY-layer interoperability gotcha's.
    I found this link, which shows the different 10Gb cards/modules for the switches:
    http://www.cisco.com/c/en/us/td/docs/interfaces_modules/transceiver_modules/compatibility/matrix/OL_6974.html
    And this link, which explains the different L2 connector types
    http://en.wikipedia.org/wiki/10-gigabit_Ethernet
    Questions:
    1. What is required for 6509e with VS-SUP720-10G to support SFP+ 10Gb connectors? looks like I need a WS-X6708-10G-3C with a special convertor: CVR-X2-SFP10G? will this WS-X6708-10G-3C run with VS-SUP720-10G?
    2. In general, can I always adapt a XenPak/X2 connector to a SFP+ connector somehow with a special dual-end cable?
    3. Are there any connector types that will not be compatible with each other? Such as Xenpack wont connect to X2. I could read the matrix, but wondering if anyone ran across any that stick out for them?
    4. If I have a cable such as this SFP-H10GB-CU5M=  (SFP+ twinax), will that work to connect up a typical server such as HP proliant with an SFP+ NIC, in almost all cases? one reason I ask is that I see the server guys bringing in their SFP+ Direct Copper cables with premade SFP+ ends, and wondering if those will be fine in most cases connecting up to cisco switch side. Or vice versa, if I use the pre-made cisco cable, will it connect to a server NIC? historically, different vendors didn't play nice with regard to these SFP standards. Does this relegate me to pretty much buying cisco SFP+ connectors in some version of fiber, and connect them to the HP-branded SFP+ fiber connectors?
    5. what are the future adoption plans for 10GBASE-T (8P8C). It seems like cisco makes a connector (X2-10GB-T), which looks promising. Is anyone using those? Does anyone think that will become the predominate standard in time, like it has for 1GB connections?

    X2-10GB-T is end of life soon.
    There is a SFP+ version like

  • CS6 master collection Cross OS compatibility

    Just bought the CS6 master collection (student edition). Problem is, I've got a Mac, and the box says windows (on only one side in small print ) Can you install/activate the Windows version of this software on a Mac with the disc from the Windows version? I know the version of PS elements that was bundled with my Wacom tablet could be installed on either PC or Mac; just not sure if that's the case here, since the box says windows. Looking to get some clear answers before I lose almost $1k attempting this(campus store won't return opened Software).

    You need the Mac version for a Mac installation, though you could use a Windows emulation program like Bootcamp.  If you can return it and get the Mac version, you probably should.  Since it is CS6, if you cannot return it you can still qualify to swap platforms for it.  See the following...
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l

  • Software Cross Compatibility?

    I have a Zen Vision M 30GB and a Creative Zen 32GB. I'm running Win XP.......will any of the explorer packages that come with them work with both units. The last time I tried they gave me issues when I tried to install both.
    Thanks

    the zen and zen vision:m are using different applications.
    i think you may need to install both applications on different dri'ves.

  • Help with CSS rule cross platform browser compatibility

    I am an advanced beginner website designer.
    The website I need help with is www.sprungtheatre.com
    I designed this site on a PC machine. Each page has a
    different CSS Background Image rule. The only rule I have set is
    image and the "non-repeat." I have not set rules for its placement.
    Each of these images had a feather effect applied to it in
    Illustrator so the image would fade into the black background. This
    works fine on Windows machines in IE and Firefox.
    However, on Macs, the left-hand side of the image is chopped
    off. Which is to say, it appears if the feathered edge has been cut
    off and the image ends abruptly.
    Is there any way to fix this problem?
    My only guess is that the following my be happening:
    The CSS Background Image rule is applied to a nested table
    that is editable in a template. I'm thinking that the Mac browswers
    are moving the image to the upper left of the overall, "poppa"
    table in which the editable region is nested, cutting off that part
    of the image that appears in the non-editable region of the "poppa"
    table and showing that part of it that appears in the nested,
    editable table. I hope that makes sense. Would applying the
    placement rules help this? If not, what might?
    Many thanks,
    Jon

    Don't use a fixed background image.
    Sorry to break the news but the code is hidous for an
    advanced beginner.
    Youre sure to run into much trouble unless you are preapred
    to take
    some time out and learn this stuff correctly.
    Using layout mode and spliting and merging tables into all
    sorts of
    shapes is a seriously bad method and one you should quickly
    move away
    from for the sake of your own sanity.
    zaphron wrote:
    > I am an advanced beginner website designer.
    >
    > The website I need help with is www.sprungtheatre.com
    >
    > I designed this site on a PC machine. Each page has a
    different CSS Background
    > Image rule. The only rule I have set is image and the
    "non-repeat." I have not
    > set rules for its placement.
    >
    > Each of these images had a feather effect applied to it
    in Illustrator so the
    > image would fade into the black background. This works
    fine on Windows machines
    > in IE and Firefox.
    >
    > However, on Macs, the left-hand side of the image is
    chopped off. Which is to
    > say, it appears if the feathered edge has been cut off
    and the image ends
    > abruptly.
    >
    > Is there any way to fix this problem?
    >
    > My only guess is that the following my be happening:
    >
    > The CSS Background Image rule is applied to a nested
    table that is editable in
    > a template. I'm thinking that the Mac browswers are
    moving the image to the
    > upper left of the overall, "poppa" table in which the
    editable region is
    > nested, cutting off that part of the image that appears
    in the non-editable
    > region of the "poppa" table and showing that part of it
    that appears in the
    > nested, editable table. I hope that makes sense. Would
    applying the placement
    > rules help this? If not, what might?
    >
    > Many thanks,
    >
    > Jon
    >
    >
    >

Maybe you are looking for

  • OSC and foreign currency / euro regulations

    I have the following problem in OSC; If transactions are in a currency, other than the internal functional currency, TRANSACTION_CURRENCY_CODE and EXCHANGE_RATE are required attributes in the COMM_LINES_API table. (11.0, 11i-versions) I'm puzzled by

  • Why sql sERVER products are so frustratingly complicated to install???

    Dear Ms Team,  I found MS SQL Server products are frustrating, complex  and difficult while installing. As per my experience , installing SQL sever need to follow some experts tips. During installation it will ask for sp1 need to install first, Power

  • Call a bounded task flow from within another bounded task flow

    Hello I am using Jdev 11g Release 1 and need help with the following issue... Here's an outline of my application..: 1. There is a main .jspx page with icons to choose different paths. 2. Each icon denotes a bounded task flow with TRAIN. 3. Upon clic

  • Color matching in Illustrator with CMYK

         This is a technical question about the best practice to follow when trying to match a color with Illustrator. A short description of what I'm trying to do is in order. I have a digital printer which uses an Epson 2880 print head and driver. I ha

  • Do i need to active my iphone?, i only want to use it as an ipod.

    I WANT TO USE MY NEW IPHONE 4 AS AN IPOD BECAUSE I WANT TO GET A DIFFERENT PHONE AS A MAIN, BUT IT IS ASKNG ME TO ACTIVATE AND I DONT HAVE ANACCOUNT ON VERIZON.