NX 2224 Etherchannel issues - 2224 limits - Bug or myself

Hi all,
does anybody know if there is a kind of limitation to deploy Etherchannel on 2224 FEX (VPC or Not, Mode on or LACP)
In fact i tried to setup a channel on a 2224 and ports came in err disable mode with a reason set to null
When i apply the same config to a 2248 (same fex N°, same ports, same devices at the other end), it works perfectely
thanks for your help
regards

Hi,
i just looked and there is a known defect:
http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtl68802
please check if that applies to your scenario aswell.
thanks...
Matthias

Similar Messages

  • Microsoft Issues Fix for Bug in Malware Protection Engine

    Microsoft has issued an update to its core malware protection engine that fixes a bug that could allow an attacker to gain LocalSystem privileges on a vulnerable machine if a specific set of odd conditions exist.
    The vulnerability in the Microsoft Malware Protection Engine is a privilege-escalation bug, so an attacker would already need to be authenticated on the local system in order to exploit it, the company said.
    Continued here: https://threatpost.com/en_us/blogs/microsoft-issue​s-fix-bug-malware-protection-engine-022411
    ThinkPad: T530 / X1 Gen 2 / Helix - Yoga: Tablet 2 Pro (Win) / Yoga 3 Pro
    If you find a post helpful and it answers your question, please click the "Accept As Solution" button.
    Lenovo Advocate ~ I am not employed by Lenovo or Microsoft. I am a volunteer.
    Microsoft MVP - Consumer Security
    SpywareHammer

    You can export the management pack via powershell.  That will "unseal" the MP.  You can then go hack around in it and fix what you want, then reseal it.  The only issue is that you will have to Delete the one that is in your management group
    before you import this hacked one and if there are any updates to this MP in the future, you will not be able to import the updated one without deleting the one you hacked.  Also, hacking a sealed mp and re importing it with your changes, might break
    any support contracts you have with MSFT.
    Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.

  • Why issues in the bug tracker are ignored?

    Almost 3 months ago I opened two ticket in Mojarra bug tracker.
    https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1751
    https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1752
    The first one is really important, it limits "redirect after post" pattern usage. I would use flash scope to keep operation status message across second GET request after initial POST request. But the flash scope is broken in RI :-( The issue was discussed on this forum also: http://forums.sun.com/thread.jspa?threadID=5445714.
    I'm wondering why the opened issue have been ignored for 3 months. The issue status is still unconfirmed, but all information required to reproduce the error was provided. I'm really worried about JSF future if the development team ignore the community.
    Fortunately there is a competitor, MyFaces ...
    Marcin

    Hi,
    My complaints about Mojarra team ignorance brought some effect :-) Today morning I got notification that Ed took ownership of
    https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=1751
    Thanks,
    Marcin

  • RESTFul URI parameter limitations/bugs

    Hi,
    I've run into some limitations (or bugs, don't know which is the most appropriate term at this point) regarding URI template parameters for RESTful Services. Here are a few examples to illustrate:
    First limitation:
    To start with, I define the following Resource Template: *example?p1={p1}&p2={p2}*
    I use the following query as the GET handler: select :p1, :p2 from dual
    This works fine, the URL example?p1=foo&p2=bar gets a json response like this: {":1": "foo",":2": "bar"}
    I then create a second Resource Template with only the first parameter from the previous template: *example?p1={p1}*
    I use the following query as the GET handler: select :p1 from dual
    This works as expected, however now the previous template returns the following: {":1": "foo&p2=bar"}, i.e. the part of the URI string after p1= gets parsed as a single parameter.
    Second limitation:
    I define the following resource template: *example1/{p1}*
    I use the following query as the GET handler: select :p1 from dual
    Works fine.
    I then define the following resource template: *example1/{p1}/example2*
    I use the same query again as the GET handler: select :p1 from dual. This time the whole part of the URI string from {p1} forward gets parsed as the p1 parameter, which means it returns {":1":"foo/example2"} rather than {":1":"foo"}. However, if I remove the example1/{p1} template, the example1/{p1}/example2 works as expected.
    In both cases, it seems like the rules for URI templates are excessively strict regarding URI similarities with other templates. I've been unable to find any reference to this in the documentation, other than a vague reference to a lack of support for "optional parameters".
    Assuming these are known limitations rather than bugs, might they be removed in a future release?
    Versions:
    APEX Listener 2.0.1
    WLS 10.3.6 on Windows 2008 R2 (64-bit)
    Oracle DB 11.2.0.3
    APEX 4.2.1
    Thanks,
    Tobias

    TobiasE wrote:
    Hi,
    I've run into some limitations (or bugs, don't know which is the most appropriate term at this point) regarding URI template parameters for RESTful Services. Here are a few examples to illustrate:
    First limitation:
    To start with, I define the following Resource Template: *example?p1={p1}&p2={p2}*
    I use the following query as the GET handler: select :p1, :p2 from dual
    This works fine, the URI example?p1=foo&p2=bar gets a json response like this: {":1": "foo",":2": "bar"}
    I then create a second Resource Template with only the first parameter from the previous template: *example?p1={p1}*
    I use the following query as the GET handler: select :p1 from dual
    This works as expected, however now the previous template returns the following: {":1": "foo&p2=bar"}, i.e. the part of the URI string after p1= gets parsed as a single parameter.
    This is when you need to use the priority value to help the listener choose the most appropriate URI Template. Hopefully I can explain what is actually happening and make this a bit clearer.
    The important thing to realise is that a URI Template matches any characters, characters which you might assume are significant to the matching algorithm, the characters which act as delimiters in the URI and query string syntax are not treated as delimiters, they have no special significance, *&*,*=*,*/*,*?* are all treated just the same as any other character . If you look at the final URI Template RFC [1] you can get a feel for how involved it gets trying to specify a URI Template syntax that can robustly match against all common URI patterns, and actually describe a syntax that is aware of the significance of these delimiters.
    So it's your second Resource Template that is matching both URIs and the first one is not getting invoked at all.
    *example?p1={p1}&p2={p2}* matches example?p1=foo&p2=bar, i.e. *{p1}* is mapped to foo and *{p2}* is mapped to bar
    *example?p1={p1}* matches both example?p1=foo and example?p1=foo&p2=bar, i.e. in the first case *{p1}* is mapped to foo and in the second case *{p1}* is matched to: foo&p2=bar
    In plain english the second template means ' match *{p1}* against any text occuring after: example?p1= '
    So when faced with trying to find the appropriate resource template for the URI, listener finds two matching resource templates, which one does it choose?
    The answer is it chooses the one with the highest priority, but if they are both the same priority, then (and admittedly this isn't documented anywhere, it may be subject to change in future releases) it chooses the resource template that requires the least number of parameters to achieve a match (this is just a basic heuristic to help make a choice, it's a bit of a coin toss whether it matches what the developer might have intended).
    So the solution is to give the Resource Templates different priorities, it's up to you to figure out the order in which you want listener to match your templates that match a given URI. Give the template you want checked first the highest priority, the template you want checked second a lower priority.
    So to fix this problem give *example?p1={p1}&p2={p2}* priority of 9 (or any value > the default of 0) and that should solve the problem
    Second limitation:
    I define the following resource template: *example1/{p1}*
    I use the following query as the GET handler: select :p1 from dual
    Works fine.
    I then define the following resource template: *example1/{p1}/example2*
    I use the same query again as the GET handler: select :p1 from dual. This time the whole part of the URI string from {p1} forward gets parsed as the p1 parameter, which means it returns {":1":"foo/example2"} rather than {":1":"foo"}. However, if I remove the example1/{p1} template, the example1/{p1}/example2 works as expected.
    This is the same issue again really, change the priority of *example1/{p1}/example2* to be greater than the priority of *example1/{p1}*.
    In both cases, it seems like the rules for URI templates are excessively strict regarding URI similarities with other templates. I've been unable to find any reference to this in the documentation, other than a vague reference to a lack of support for "optional parameters".
    Assuming these are known limitations rather than bugs, might they be removed in a future release?
    So as you can see these are known limitations, rather than bugs.
    Without committing to anything, I would certainly like to support more of the final URI Template RFC, but as you can see if you read it, there is a fair bit of complexity involved in doing so. A large part of the problem is that URI Templates were really envisaged for the inverse of how we use them (and how other server side frameworks like RESTlet and .NET use them). URI Templates as specified are primarily intended to be used on the client side to form request URIs from a URI Template and parameter values. We're using them the other way round, trying to decode request URIs to match against templates and thereby extract parameter values (to pass into our queries).
    For now I'm not in a hurry to add more support, until we see compelling cases where the above prioritization mechanism cannot solve the matching problem, so would be glad to hear back from you if find scenarios that are not supportable at the moment.
    Regards,
    Colm
    [1] http://tools.ietf.org/html/rfc6570

  • Etherchannel issue between 3750 stack and WS-CBS3012 for IBM blade centre

    Hi,
    We are trying to configure Etherchannel between four ports of cisco 3750 stack(2ports from one switch of stack and two ports from another switch of same stack). We are facing issues with this setup. The ports in WS-CBS3012 are going to err disable mode.
    Is  there any limitations associated with such a cross-stack etherchannel configuration. Please suggest if there is any particular sequence of configuration involved.
    Switch1 in stack
    int gi 3/0/3
    switchport mo trunk
    switchport trunk allowed vlan 10-30
    sw tr en dot1q
    channel-group 1 mode on
    spanning-tree guard root
    switch 2 in stack
    int gi 3/0/3
    switchport mode trunk
    switchport trunk allowed vlan 10-30
    sw tr en dot1q
    channel-group 1 mode on
    spanning-tree guard root
    int port-channel 1
    switchport mode trunk
    switchport trunk allowed vlan 10-30
    sw tr en dot1q
    channel-group 1 mode on
    spanning-tree guard root
    in WS-CBS3012 ports are configured with trunk,allowed vlan and etherchannel configuration with mode on.
    With Regards,
    Madhan kumar G

    Hi,
    The commnad "no spanning-tree etherchannel guard misconfig" on WS-CBS3012 resolved the issue.
    Regards,
    Madhan kumar G

  • How can I tell that it is a hardware issue or ios bug issue with Iphone 4S Battery life & flapping 3G?

    Hi There,
    My Battery dies real quick on 4S compared to 4 eventhough my wireless is off, location services are off, the only thing on is the cellular data. I even adjusted the brightness to 60%.
    Another issue is that My 3G connection keeps flapping, goes & comes in a wierd way where it falls back to Edge.
    Am I to consider this part of the issues i can see so many people facing & therefore consider as ios bug & wait for the update or should I take it over to a service center to check the phone for me which means waste of time to get it done.
    Kindly advise from your experience

    It's almost always a software issue. Actual hardware problems are rare but can get very serious, if you recall the antenna issue last year.
    Reception problems just depend on how strong the signals are at your location. But if you're dropping to Edge even in strong areas, it wouldn't hurt to have an apple store look at it.

  • Kernel Panik Issues + TextEdit recurrent bug (autorization is refused/can't open textedit docs)

    Hello all,
    I'm on a MacBookPro, OSX MOuntain Lion 10.8.5, ca. 18 months young/old, and the computer has had ongoing issues ..actually since day 1....
    (It's been bought in france because of the need of an "azerty", i live in germany - i write here in english for the sake of getting as much possible readers and increase my chance of answers..)
    None of the 2 returns to apple store or official repair stores have fixed them. It seems to be "software issues", so they say..The problem is, no one is helping to help me fix them : after a little while of speudo improvement, the issues came right back.. (The last repair try was shortly before the end of 1 year apple warranty.. : it didn't change sh**,  and although i had 90 days warranty on that repair from the date of repair on, apple never EVER replied to my 8 or 10 emails..probably considering i had no right to get help anylonger, nor at least the decency of a response at all..)
    Anyhow, here are the problems :
    computer is generally pretty slow
    shockwave crashes on Google Chrome (although there is no double with flash player in the plug ins - i checked)
    Pages on ANY browser take sometimes up to 40 sec to load (using safari and chrome, rarely firefox)
    As soon as not ON a tab left open on browser, the page is first completely WHITE (takes up to 30sec for content to appear)
    Safari "forces the refreshment of all page and tabs open" at least once, sometimes 5 times a day
    Computer freezes sometimes completely
    ..and crashes down completely, sometimes so hard that i can't even shut down properly (exit through the "physical" start button as only chance)
    Computer sometimes freezes but by making a restart on his own : screen beomes blue, gray, everything dissapears, big start button symbol appears on screen with message in several languages and computer restarts on his own..
    Rainbow ball spinning became my best worst friend..
    Even Force-Quitting programs can take 2 to 4 min until the force quit window appears...
    Computer generates aliases or copies (?) of documents, that can't be open anyway, adding things in the name of doc such as "NAME.rtf.sb-0352fd77-9bU6Yb"
    Mac sofwares (and NO other!) crash or freeze on regular basis (such as : textedit, safari, iphoto,  preview etc.)
    Dashboard always takes 10 to 40 sec to make information/content appear
    blablablaaa...(there is more...)
    Note : i mostly only have those programs open at the same time : safari, chrome, itunes, text edit, and sometimes on top : iphoto, preview - So, nothing crazy here, for a machine that is kind of new...
    I know so far what i must be dealing with probably is an ongoing KERNEL PANIK..and maybe more/other issues on top..
    Fact is, knowing alone does not solve the problems....
    ..So I'm regularly making a check of the disc as well as repairing autorizations via "disk utilities"
    such as starting with alt+command+ r+p which became kind of the only desperate thing i try to do on regular basis..(not really solving anything either..)
    If anyone could help, on any of those issues, please, come forward!!!
    (ps : and no, i don't want to switch to maverick...rEAlly not....^^ - in case that is you advice.. because reinstalling all the system has been done previously twice or three times and is USELESS!)
    The issue that made me make this move to ask for help here though today, which i m presenting separatel, y is :
    TextEdit shows a recurrent bug since a few weeks - all my search attempts on the web led to nothing (but basic help for people who don't know how to make a command+i and change the autorization to "read and write").
    What happens is that out of the blue, TextEdit shows an error messages on ANY docs that i try to open, it says i don't have the autorization and tells me to go to "information" and change the autorizations.
    Fact is, this is happening on ANY docs that i have, and changing something in the "information" window doesn't change anything at all.
    The only thing that "helps", is to shut the computer down completely and restart..
    But the issue reappears every second day...
    Also, TextEdit refuses for me to make PDF's out of a document ; the error message says (in french, so this is a translation of mine) "PRINTING: the printing has failed" (and that's IT, no more info..)
    Sometimes this pdf issue happens without the autorization issue ; but when i have the autorization issue, i seem to always have the pdf making issue.
    Also, texedit sometimes does not allow me anymore to save a new doc..It might open the window to do so, i might be able to name the doc and click on "save", but the doc appears nowhere and still show "no title" on the open doc itself..
    Help anyone ?
    I'd be eeeeendlessly grateful..

    Hello all,
    I'm on a MacBookPro, OSX MOuntain Lion 10.8.5, ca. 18 months young/old, and the computer has had ongoing issues ..actually since day 1....
    (It's been bought in france because of the need of an "azerty", i live in germany - i write here in english for the sake of getting as much possible readers and increase my chance of answers..)
    None of the 2 returns to apple store or official repair stores have fixed them. It seems to be "software issues", so they say..The problem is, no one is helping to help me fix them : after a little while of speudo improvement, the issues came right back.. (The last repair try was shortly before the end of 1 year apple warranty.. : it didn't change sh**,  and although i had 90 days warranty on that repair from the date of repair on, apple never EVER replied to my 8 or 10 emails..probably considering i had no right to get help anylonger, nor at least the decency of a response at all..)
    Anyhow, here are the problems :
    computer is generally pretty slow
    shockwave crashes on Google Chrome (although there is no double with flash player in the plug ins - i checked)
    Pages on ANY browser take sometimes up to 40 sec to load (using safari and chrome, rarely firefox)
    As soon as not ON a tab left open on browser, the page is first completely WHITE (takes up to 30sec for content to appear)
    Safari "forces the refreshment of all page and tabs open" at least once, sometimes 5 times a day
    Computer freezes sometimes completely
    ..and crashes down completely, sometimes so hard that i can't even shut down properly (exit through the "physical" start button as only chance)
    Computer sometimes freezes but by making a restart on his own : screen beomes blue, gray, everything dissapears, big start button symbol appears on screen with message in several languages and computer restarts on his own..
    Rainbow ball spinning became my best worst friend..
    Even Force-Quitting programs can take 2 to 4 min until the force quit window appears...
    Computer generates aliases or copies (?) of documents, that can't be open anyway, adding things in the name of doc such as "NAME.rtf.sb-0352fd77-9bU6Yb"
    Mac sofwares (and NO other!) crash or freeze on regular basis (such as : textedit, safari, iphoto,  preview etc.)
    Dashboard always takes 10 to 40 sec to make information/content appear
    blablablaaa...(there is more...)
    Note : i mostly only have those programs open at the same time : safari, chrome, itunes, text edit, and sometimes on top : iphoto, preview - So, nothing crazy here, for a machine that is kind of new...
    I know so far what i must be dealing with probably is an ongoing KERNEL PANIK..and maybe more/other issues on top..
    Fact is, knowing alone does not solve the problems....
    ..So I'm regularly making a check of the disc as well as repairing autorizations via "disk utilities"
    such as starting with alt+command+ r+p which became kind of the only desperate thing i try to do on regular basis..(not really solving anything either..)
    If anyone could help, on any of those issues, please, come forward!!!
    (ps : and no, i don't want to switch to maverick...rEAlly not....^^ - in case that is you advice.. because reinstalling all the system has been done previously twice or three times and is USELESS!)
    The issue that made me make this move to ask for help here though today, which i m presenting separatel, y is :
    TextEdit shows a recurrent bug since a few weeks - all my search attempts on the web led to nothing (but basic help for people who don't know how to make a command+i and change the autorization to "read and write").
    What happens is that out of the blue, TextEdit shows an error messages on ANY docs that i try to open, it says i don't have the autorization and tells me to go to "information" and change the autorizations.
    Fact is, this is happening on ANY docs that i have, and changing something in the "information" window doesn't change anything at all.
    The only thing that "helps", is to shut the computer down completely and restart..
    But the issue reappears every second day...
    Also, TextEdit refuses for me to make PDF's out of a document ; the error message says (in french, so this is a translation of mine) "PRINTING: the printing has failed" (and that's IT, no more info..)
    Sometimes this pdf issue happens without the autorization issue ; but when i have the autorization issue, i seem to always have the pdf making issue.
    Also, texedit sometimes does not allow me anymore to save a new doc..It might open the window to do so, i might be able to name the doc and click on "save", but the doc appears nowhere and still show "no title" on the open doc itself..
    Help anyone ?
    I'd be eeeeendlessly grateful..

  • HP Pavilion 15t Issues with Limited Internet Connectivity on Windows 8

    So, I just received my new HP Pavilion 15t-e000 CTO Notebook PC last week, it runs Windows 8, &amp; it's a 64 bit.
    The only problem I've had is staying connected to my wireless Internet. The connection will cut out at random intervals saying "Limited" instead of "Connected". I constantly have to disconnect and connect to my wireless Internet. It is especially frustrating when I am trying to download something that takes longer than a couple of minutes because the Internet connection cuts out and I have to start the process all over again.
    I have tried pretty much every "fix" people have posted that have worked for some people. No such luck for me. Sometimes it seems like it will stay connected and then I try to connect to a web page or download something and it goes out again.
    - Turning off the "Allow computer to turn off this device to save power" under Power Management in the Properties section of my Wireless connection.... DID NOT WORK
    - Using the command prompt to reset the network adapter ... DID NOT WORK
    - Running the Network and Internet and whatever else Troubleshooters ... DID NOT WORK ***Update: If I run the network connection test via the HP Help/Support center on my desktop while the connection says Limited, I receive the notice that the "default gateway was not available" and the router was reset and issue fixed, etc. BUT, if I run the test while the wireless says Connected, the test always says there is no problem. And even though the test "fixed" the issue, it didn't because the Internet always cuts out again.
    - Windows Updates has installed new updates a few times ... DID NOT WORK
    - Forgetting the Wireless Network and Setting it Up as a new one again ... DID NOT WORK
    - Using my computer right next to my wireless router ... DID NOT WORK
    The wireless router being used is: Cisco Linksys Wireless-G 2.4GHz Broadband Router and our network is WPA with a security code. We also have a SpeedStream DSL Internet thing (sorry, I don't know what it is called). The compatibility center says this router is compatible with Windows 8 by the way. Other computers running Windows 7 and Windows Vista, iPhones, and iPads all work fine.
    My laptop uses Intel(R) Centrino(R) Wireless-N 2230 and the light is on and it always says "device is working properly" in Properties.
    Any help or suggestions would be greatly appreciated because I am at my wits end.
    Thanks
    This question was solved.
    View Solution.

    So, it seems my issue with the Limited Internet connection has been resolved. I didn't use my computer for two days and this afternoon when I turned it on I was still having issues. However, I went into the HP Support Assistant and it popped up that I had some updates to download and install, so I let it do its thing. It took a while because the Internet kept cutting out, but once the update for the Intel Wireless finally installed, my connection has STAYED CONNECTED. Finally!
    I don't know why when I went into the wireless properties it said "device is working properly" and when I tried to Update the driver it said "your driver is the latest version" or whatever.
    I suggest you go to the HP Support Assistant and check for updates in the "Updates and Tune-Ups" section. It was kind of random, but knock on wood my Wireless connection issue looks to be gone.
    Hope this helps
    P.S.
    Here's a screen shot of what the HP Support Assistant (it is the one with the big question mark logo) main screen looks like :

  • Free case issue - very limited info of cases :(

    Very limited info/spec/images are available for various cases for iPhone 4. It is pathetic that companies don't bother to publish more info when they are reaping millions by selling their cases. It wouldn't take more than an hour to publish more info online. Unhappy with this lethargic behaviour.
    I guess Apple should pressurize some of these companies.
    If any one can give info/inside story/pics/review about following, it would be great!!
    1 Incase smoke & clear - Does smoke have plastic material or rubber? What about scratches?
    2 belkin shield micra (except that single image which keeps floating everywhere)
    3 Griffin motif diamond/smoke - has anyone used it?
    Pixelskin HD has very good videos on youtube and hence so many people might have opted for it.

    The MimeMessage constructor you're using needs to copy the entire message from the server.  It uses the Message.writeTo method, writing the message content into a pipe that is read by the constructor.  It was a bug in previous releases that the writeTo method wasn't fetching the data in chunks, as it does in other cases.  Setting partialfetch=false will revert to the old behavior for writeTo, and for all other accesses of the message content.
    It looks like both 1.4.4 and 1.5.1 are fetching the message content using a single FETCH command when you set partialfetch=false, according to your message.  If they're both sending the same commands to the server, I can't explain why it would be fast in one case and slow in the other.
    I did similar testing using my Exchange 2010 server.  Fetching a similar size message took less than 20 seconds.  Setting partialfetch=false brought it down to less than 5 seconds.  Something's clearly wrong in your environment, but I don't know what.
    Finally, I'm sure you understand that you only need to use that MimeMessage copy constructor in special circumstances, and you should probably avoid using it unless it's absolutely necessary.  Even in the best case it's wasting time and memory.

  • Screen issue or Software Bug?

    see attached for a video.
    https://www.dropbox.com/s/98nlal8jt7qq8k0/IMG_6005.MOV
    Basically every reboot, at the OS X 10.9 login screen i get a distorted screen for several seconds, after about 5 seconds it stops and does not occur again when using the OS.
    It is a repeatable bug as it will occur after every reboot. Anyone else experience this?
    i7 2.7GHz rMBP / 16GB RAM / 512GB SSD
    Never dropped, no liquid was ever near it.

    Try resetting the SMC - may help and cannot hurt.
    Otherwise, I would take it in for diagnosis (or ignore the issue as it only happens at startup).
    Barry

  • Double Clicking Issue Feature Or Bug

    Hi All,
    I've been using Mac's for over ten years and I'm experiencing an issue unlike anything I've ever seen before. I have this double-clicking issue (maybe more appropriately "accidental double-clicking issue") in certain programs.
    In iTunes for example, when I choose File/Add To Library and I double-click the root folder on my external hard drive (which contains subfolders such as Documents, Pictures, Movies, Music, Applications, etc..) iTunes begins to automattically import EVERYTHING on the folder without my having clicked the CHOOSE bubble. EVERYTHING!
    Either I'm crazy and I'm just noticing this now or this is the most annoying bug/feature I've ever seen.
    The issue also occurs in Mac The Ripper. When I went to choose a Save location and accidentally double-clicked a folder that had subfolders in it, I didn't get the opportunity to click CHOOSE. The Finder just assumed that my double-clicking a folder means that that is the folder I want to select.
    I hope I'm explaining this clearly. I don't know I never noticed this "feature" before!
    Is there anyway to turn it off?

    There isn't anything similar between the two in a hardware sense. The two machines aren't sharing anything. I only use the Magic Mouse with the new 27" i7 iMac.
    I tried to reproduce the effect in 10.5 to see if it was indeed a "feature", and it is. To a certain extent.
    At this point I've come to the conclusion that this is supposed to happen, in 10.5 and 10.6 (possibly 10.4 or earlier too) when a folder and it's sub-folders contain compatible files respective to the program attempting to access them. However, I don't think it should happen when a folder contains subfolders that have files that are incompatible with the particular program that is currently being browsed.
    Furthermore... I'm unable to reproduce the same issue today! This new 27" iMac i7 has been very "buggy" across the board!
    Like for example;
    When I first started it up, Airport and Firewire didn't appear in the Network preference pane in System Pref's. And it didn't recognize USB devices that I plugged in until I rebooted a few times.
    It ran REEEEEALLLLLLY HOT! Hot like when you put your hand on the hood of a car thats been sitting in the sun. But today it seems to be running much cooler...
    It also wont boot from any external hd or Disk Warrior 4.2 DVD.
    But all in all it's still a pretty sweet, and crazy fast.

  • [ADF-11.1.2] Scroll bar Issues - Please file BUGs for these issues.

    Hello,
    Recently, I have started working on ADF and till now I found 2 scroll bar issues with Oracle ADF.
    1. af|inputComboboxListOfValues : Scroll bar appears on Google Chrome.
    Screenshot: http://imageshack.us/photo/my-images/829/inputcomboboxlistofvalu.jpg/
    2. Setting Table "columnStretching" brings dummy scroll bar : [ADF-11.1.2] Setting Table "columnStretching" brings dummy scroll bar
    I beleive that these two are scroll bar related Bugs but what I understand from ?messageID=9773962 that since I don't have support contract, I can't file a bug.
    I have created this thread so that responsible people can take actions accordingly.

    Shay,
    Thank you for your reply. I will take a look at your links.
    Use Case:
    Application will have different BC for different IT Assets (like Monitor, Keyboard, Servers etc), which will basically hold records for all available Assets (like Display Resolution, screen size etc for all monitor in Monitor BC).
    I want to give user; the ability to create, for e.g., the sub-class of Monitor to store more specific attribute-values in different table (which will be linked Parent BC). For e.g.: They may want to care about holding CRT and LCD Monitor records in separate new database table -- Application will ask user what all attributes/Columns they want to see for LCD which is specific to this type AND which is not present in already existing out-of-box Monitor BC/Table - e.g. - "Viewing Angle" Attribute).
    With that said, I can write code to create database table on fly (having 1-to-1 foreign key reference to parent table) but writing ADF part seems difficult. I also wanted application to automatically generate new page for newly added VO BC. E.g.: LCD-Monitor.JSPX inheriting all attributes from monitor (parent VO) in the same structure as Monitor.JSPX file is having with extra LCD-specific Attributes in separate panel tab (which again UI developers can customized it).
    Too much to expect huh !
    I am going to start building the application so If not above way, any other suggestion to achieve the requirement ?
    Edited by: Anandsagar Sah on Aug 29, 2011 9:23 PM

  • So many issues with CS4 (bugs/rants)

    I'm glad we can get trials. There are a few major issues I'm
    having.
    Viewing in Safari, when clicking back onto Dreamweaver, the
    top bar will interact with Safari's tool bar. I have to click on
    and off to get Dreamweaver to draw on top of Safari. When this
    happens, there are also white flashes where windows are blank when
    clicking once on a tab or design view, then on second click the
    window draws. So anytime I click on the tool bars the page flashes
    white (empty-void of my html) and reappears on next click. This
    happens on first start, does not happen if I relaunch DW.
    Table <td background> background input is gone from the
    proprieties palette.
    Table height does not display when selecting a table, only
    width. So you have to go into the code and manually change or
    delete the table height.
    Some image/graphic outer edge colors do not match the defined
    html color on the page in Dreamweaver but do in Live View and
    Safari.
    Selecting an image and linking it, automatically populates
    without a border="0" resulting in an unwanted border color. It
    should be "0" by default like version 8.
    The color picker is not calibrated correctly. Using the
    picker on a table cell with the bg color of #990000 gives me a
    reading of #A31B12. And then getting a reading on the table cell
    with #A31B12 the color picker reads #AC3022. So it progressively
    gets lighter, while picking colors from the actual html, if doing
    multiple cells. So not sure how the color pickers needs to be
    calibrated to read the hex value because it's not currently doing
    that.
    I can't drag a file to the tab bar and be allowed to open it.
    Not sure why that's not allowed?
    Now some of these might be the new way DW codes, some might
    be fixable with settings, but the color picker and random flashing
    and viewing issues with Safari, linked images with no border seem
    like actual bugs to me.

    > Nope, it's not there. BG color is in the middle on my
    CSS tab under
    > properties
    > palette. There is no bg inpit filed when clicking inside
    a table cell.
    Yeah - it's there. But I was mistaken - it's in both the HTML
    and the CSS
    'tab' of the EXPANDED Property inspector - you have to click
    on the little
    almost invisible white triangle on the lower right-hand
    corner of the
    inspector to see the expanded section.
    > Yes, it should. Like alt tags are defaulted to 'empty'
    borders should be
    > given
    > a default value
    Nope. That would produce invalid HTML.
    > I wanted to hand code everything, I wouldn't be using
    dreamweaver.
    If you are not willing to learn some HTML and CSS, as well as
    best
    practices, then you shouldn't be using DW.
    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
    ==================
    "Kid Red" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > > Table <td background> background input is
    gone from the proprieties
    > > palette.
    >
    > No it's not gone, it's under the CSS 'tab' (look on the
    left side) as a Bg
    > color well and input field.
    >
    > Nope, it's not there. BG color is in the middle on my
    CSS tab under
    > properties
    > palette. There is no bg inpit filed when clicking inside
    a table cell.
    >
    >
    quote:
    > > Table height does not display when selecting a
    table, only width. So you
    > > have
    > > to go into the code and manually change or delete
    the table height.
    >
    > As already stated, table height is invalid HTML - always
    has been.
    >
    >
    > Apologies, I learned from Dreamweaver. And since
    Dreamweaver 8 (my current
    > program) does have it, I'm conditioned. I will now
    understand Dreamweaver
    > taught me incorrectly and learn better coding.
    >
    >
    quote:
    > > Selecting an image and linking it, automatically
    populates without a
    > > border="0" resulting in an unwanted border color.
    It should be "0" by
    > > default
    > > like version 8.
    >
    > No, it shouldn't. The border attribute is deprecated in
    HTML 4.0 (see the
    > Reference panel in DW). It should be replaced with this
    simple CSS on
    > your
    > page -
    >
    > a img { border:none; }
    >
    > On rule hits all the images that are within a hyperlink.
    >
    >
    >
    > Yes, it should. Like alt tags are defaulted to 'empty'
    borders should be
    > given
    > a default value. I fail to see why the new version
    doesn't do this
    > anymore. It
    > should be a CSS option for images then somewhere in the
    properties
    > palette. If
    > I wanted to hand code everything, I wouldn't be using
    dreamweaver.
    >
    quote:
    > > I can't drag a file to the tab bar and be allowed
    to open it. Not sure
    > > why
    > > that's not allowed?
    >
    > It's just not. Never has been.
    >
    >
    > Ah, that's my point. It *should*.
    >
    >
    quote:
    > > Viewing in Safari, when clicking back onto
    Dreamweaver, the top bar will
    > > interact with Safari's tool bar. I have to click on
    and off to get
    > > Dreamweaver
    > > to draw on top of Safari. When this happens, there
    are also white
    > > flashes
    > > where
    > > windows are blank when clicking once on a tab or
    design view, then on
    > > second
    > > click the window draws. So anytime I click on the
    tool bars the page
    > > flashes
    > > white (empty-void of my html) and reappears on next
    click. This happens
    > > on
    > > first start, does not happen if I relaunch DW.
    >
    > I cannot reproduce this at all.
    >
    >
    >
    > As stated, it doesn't happen all the times and a
    relaunch fixes it. Might
    > be
    > an issue with my newest imac graphics card, no idea,
    just know it has
    > happened
    > each of the three times I've started dreamweaver for a
    fresh session.
    >

  • Weird or an inherent issue or a bug ?

    SSIS package when in an active batch or sql server agent fails. To nail it down :
    When brought out into Visual Studio and then executed , its a failure ( same error as in Active Batch) . However when one of the script tasks inside the package is built and package is executed its a success.
    Root cause behind it ? whether its an inherent bug or anything wrong?
    Happy to help! Thanks. Regards and good Wishes, Deepak. http://deepaksqlmsbusinessintelligence.blogspot.com/

    Ok, I put down the steps again :
    1 - Lifted the package out of the batch and executed straight - error - no rows processed to look up, same error as in batch - also batch does not show any rows processed ( there's a log mechanism which can show how many rows processed at each task - all
    the tasks show 0 records) - This implies no memory issue right? Error is ORACLE error : Missing expression - this happened when there is no data from the source query built by script task.
    2 - Built the script task in control flow , data now appeared as the query is now successfully built by the script task and the look up also succeeded.
    Any inputs?
    Happy to help! Thanks. Regards and good Wishes, Deepak. http://deepaksqlmsbusinessintelligence.blogspot.com/

  • Major issue's or bugs in 10gr2 dataguard?

    We have implements the physical standy database in 10gr2. My manager what know about dataguard major issues or bugs in 10gr2 ? Please share your experience.
    Appreciate your reply.

    Dear user530956,
    Please first check below link;
    http://www.oracle.com/technetwork/topics/security/alerts-086861.html
    Can you see any bug fixes about the Oracle Data Guard?
    There could be always bugs but i don't know that 10gR2 has data guard bugs or bugs that affects the system critically. I have never faces a bug for the data guard.
    Tell your manager to get you a metalink account and check the metalink for further information and articles about the Oracle Data Guard. You need more than people's experiences.
    Regards.
    Ogan

Maybe you are looking for

  • [solved] Radeon/Ati and Xorg 1.9

    Hi, since I've upgradede my ati driver (xf86-video-ati) and X to X 1.9 I cannot start my X session, because of the following issue: Failed to map cursor buffer memory Fatal server error: failed to map pixmap -22 XIO fatal IO error 11 (Resource tempor

  • How to compile files in Packages

    Hi , What is the command to compile the files in the package with the following structure. /com/client/compute/*.java /com/client/compute/DAO/*.java /com/client/compute/DTO/*.java Since there are sub directories the following command will give errors

  • IPod and iMac not speaking

    When I link up my iPod nano (2nd generation) to my computer, it doesn't appear in iTunes under Devices.  Tried on both iMac and MacBook.  iPod shows it's charging, so something is getting through, but I need to download new music.  Help!!

  • RTTI vs Compiler Type Identification (Casting?)

    Given: Class Super and two subclasses of Super, SubOne and SubTwo. Super has one method, doBeDooBeDoo() SubOne has one method, doThis() SubTwo has one method, doThat() Super a = null; if(foo) {     a = new SubOne();     a.doThis(); } else if(bar) {  

  • Datasource Connection

    Hello, I'm tryng to write an application that must be connected to a database. -In my EAR Project I declared a dataSource Alias (in <i>data-source-aliases.xml</i>). -In my EJB Project in <i>ejb-jar.xml</i> (and in <i>ejb-j2ee-engine.xml</i> defining