Serious design flaw in iWeb needs fixing fast

I have been designing websites with various types of software in the past. Always a wysiwyg environment has been amongst my favourites as it shows exactly what you are doing, how it looks and what it's going to be like for the viewer.
Now iWeb does a fairjob at that but it has one MAJOR issue and that's publishing.
I have tried publishing to MobileMe, I tried local and upping the contents via a different FTP program and I have tried uploading to FTP from within iWeb.
The issue that a lot of people are reporting and Apple is ( regretabbly ) not doing anything about is the problem with the settings on the website ( left panel of iWeb)
Normally you would want to save everything of a certain website under a site. iWeb does that, fine.
Yet when you publish your site to MobileMe or any other FTP location, it ALWAYS adds the friggin' SITENAME to the path.
Why can't I get rid of that nonsense ? I want my site looking like http://www.mysite.ext/index.html
NOT like http://www.mysite.ext/<sitename>/index.html
So, to me, it looks like Apple is adding a variable to the publishing path which should NOT be there.
Please Apple, fix this or tell us in which plist this stupid setting is set so we may be able to change that. It's ridiculous this way.

@Ethmoid
Yes I have read your reply and it's similar to many replies in the forum.
Users always get put off with the same nonsense band-aid sollution like " publish locally then upload via other ftp program"
Although I will grant you this works, what use is the whole FTP function in the software if you cannot use it as it is supposed to work ?
Some other things I would like to mention in regards to this bug ( yes it is still a bug in my book )
- Apple does not mention the a-typical behavior anywhere in the documentation
- Apple does not mention the Auto-Adding of the Website name in the Knowledge Base
- Hundreds of people have complained about this odd behavior of the program
What really ticked me off today was the following:
I have tried to contact Apple in various ways about this bug.
Sent in feedback various times, tried this forum ( no luck thusfar ) and even started a Fast Lane Incident. The result of that was that I was given the option that I would have to pay 49 Euro's before apple would even listen to the problem. I tried to tell them that it's a bug in their software which I already had paid for.
In The Netherlands it's set by law that any product ( no matter what ) which does not perform as expected has to be solved by the company that made the product. ( there is more to that but i'll leave it as is for now )
So, I am a paying customer who paid for his software which has a bug. I ask for a sollution and all I get is " You have to pay 49 Euro's per incident" . *** ???
Now you can call me a ranter as many times as you want but no matter how you put it, the behavior in iWeb is odd in relation to any other ftp enabled web publishing client. Pick any 100 different softwares for web publishing with ftp feature and i'll bet you 100 US $ that at least 99 of them upload in the folder you set in the program and they will not add any folders by themselves the way iWeb does.
This combined with the many, many similar posts about this oddity, you cannot keep it up to tell all these users they rant and just need to buy another piece of software to do just that what iWeb should be able to do.
As for the fix.
If people are really " happy" with this behavior of auto-adding a sitename, then at least let Apple give us a choice to either switch this behavior ON or OFF. It should be easier to do and fix then any of the other bugs they recently fixed.
I really hope you see it as it is, a faulty product...

Similar Messages

  • Why can't I sync more than one computer?  This is a serious design flaw.

    I have a macbook and so does my wife. So, who gets to sync and who ends up in the streaming ghetto? This is a pretty crappy design choice. We should both be able to sync to a combined library on the appletv so that we don't have to fight over who gets a less convenient experience on the appletv.
    You can call it the "marriage saver".

    You just need to get two Apple TV's and perhaps an HDMI switch so you can easily go back and forth between the two without having to buy another TV. Instead of getting a switch one person could use HDMI and the other could use component output but that might cause some problems as well. If you're only going to use Synching then AppleTV looks just like an iPod and you both need one of your own. It really isn't as ridiculous as it sounds since it's $50 cheaper than the 80GB video iPod.
    Maybe you should both agree to stream. It works really well. Perhaps set up a common iTunes to synch from. Good luck .. I've got similar issues with both kids and wife! So I've an AppleTv in the Den for the kids (synched with Kids stuff) and in the Family room we have another AppleTV synched with more grown up stuff. To go back and forth we just stream to the other library.

  • Regular expressions: serious design flaw?

    I wondered why sometimes, the replaceAll() method works in my code and sometimes it throws a java.util.regex.PatternSyntaxException. I wrote a little test case to show the problem
    private void regularExpressionTest() {
            String escapers = "\\([{^$|)?*+."; //characters to escape to avoid PatternSyntaxException
            String text = "The quick brown fox jumps over the lazy dog.";
            System.out.println("Original: "+text);
            String regExp = "o";
            String word = "HELLO";
            String result = text.replaceAll(regExp, word);
            System.out.println("Replace all '"+regExp+"' with "+word+": "+result);
            text = "The quick brown {animal} jumps over the lazy dog.";
            System.out.println("Original: "+text);
            regExp = "{animal}";
    //        regExp = escapeChars(regExp, escapers); //escape possible regular expression characters
            word = "catterpillar";
            result = text.replaceAll(regExp, word);
            System.out.println("Replace all '"+regExp+"' with "+word+": "+result);
    }//regularExpressionTest()The output is:
    Original: The quick brown fox jumps over the lazy dog.
    Replace all 'o' with HELLO: The quick brHELLOwn fHELLOx jumps HELLOver the lazy dHELLOg.
    Original: The quick brown {animal} jumps over the lazy dog.
    java.util.regex.PatternSyntaxException: Illegal repetition
    {animal}
         at java.util.regex.Pattern.error(Pattern.java:1528)
         at java.util.regex.Pattern.closure(Pattern.java:2545)
         at java.util.regex.Pattern.sequence(Pattern.java:1656)
         at java.util.regex.Pattern.expr(Pattern.java:1545)
         at java.util.regex.Pattern.compile(Pattern.java:1279)
         at java.util.regex.Pattern.<init>(Pattern.java:1035)
         at java.util.regex.Pattern.compile(Pattern.java:779)
         at java.lang.String.replaceAll(String.java:1663)
         at de.icomps.prototypes.Test.regularExpressionTest(Test.java:57)
         at de.icomps.prototypes.Test.main(Test.java:34)
    Exception in thread "main" As the first replacement works as espected, the second throws an Exception. Possible because '{' is a special character for the regular expression API. In case I know the regular expression, i could escape these special characters. But in my generic server app, the strings are all parameters, so the only way for replaceAll() to work is, to escape all possible special characters in the regular expression.
    1. Is there a complete list of all special characters for regular expressions that need to be escaped?
    2. Is there a similar replaceAll() method without regular expressions? So that all occurences of a substring can be replaced by another string? (So far, I wrote my own method but this is of course more time consuming for massive string operations.)

    1. The complete list of specially-recognized characters are listed in the Java 1.4.* API. (Of course, new ones may eventually be added as the regex package matures).
    2. It is time consuming to program in general. You should have written your own utility method that goes through a String using indexOf and building up the String in a StringBuffer, and apparently you did. Now you have the utility method...you no longer need to write that method again.
    3. Or you could have written some kind of method that automatically escapes the specially-recognized characters...

  • Serious design Flaw on Zen Micro -now headphone ja

    Ok...now im new in the old headphone jack problem..im sending it for replacement. Sad....i hope the new one breaks before the warranty ends, so i can at least enjoy the Zen for one year...then ill switch to Ipod.
    This little thing sounds great, but creative must get new engineers....this flaw happens in almost every zen!....

    I moved this to it's own thread as it wasn't related to the one you posted in (at all).
    Cat

  • Serious Design Flaw in iPhone 3G SMS UI!

    Problem: In the SMS screen, the "Send" button is just right on top of the keyboard's U, I, O , P keys. Whenever I try to tap these keys, I'll hit the "Send" button accidentally. And then there's no way to cancel the transmission. Many of my friends seem to have similar issue.
    Request:
    o I hope the Apple team can place the "Send" button away from the keyboard.
    o Add the ability to cancel SMS transmission if it's in progress.
    On some side issues, I also noticed the iPhone lacks the following basic phone features:
    o Deleting multiple/all contacts.
    o Save contacts to SIM card.
    o Add security code to the phone like one of those in Nokia. That means if a different SIM card is used, the phone will prompt for security code.
    If these problems can be solved, then I'm pretty such Apple makes a very good product.

    Hello there....welcome to the world of iPhone - where some of us have been here since the launch of the first iPhone. Obviously you have just had your iPhone for a few days. You will get over the typing issues. Just practice. You will stop hitting the send button as soon as you get used to typing.
    As for the contact issues you have - You delete groups of contacts - or all - in whatever software you use on your computer to organize your contacts. Outlook? You don't need to save your contacts to a sim card as you have them on your BIG SIMCARD you are using right now....your computer.
    If someone steals your phone and tries to change the sim card, Apple/AT&T have the ability to lock the phone down so it can't be used. I've had it done when my first phone was stolen.
    There ya go. Welcome to the board.
    Please choose to get to know your phone better before proclaiming it less than perfect. THANKS!

  • Identified a design flaw in the iPhone

    i was on the iPhone speakerphone with my parents and suddenly this mentally troubled girl i know sends me a message consisting of a single 3 letter expletive. i get the popup saying reply/cancel i press cancel.
    she sends it again - i cancel it again. and again and again on like 4th time i accidentally end the call with my parents.
    so i am trying to call them back but at this point she starts repeating the word every second or so so i am constantly getting the popup reply/cancel so i keep pressing cancel but before the screen cancels the new popup is there and the transparent glass popup takes the entire screen so i can't access the phone buttons to call my parents back.
    now my parents are calling me and i am trying to pick up the phone but the crazy girl is still firing away at about 40 messages per minute.
    long story short i was unable to either pick up on my parents or call them back until she stopped about 2 minutes later.
    it was VERY frustrating ! ! !
    this is unacceptable. i cannot lose control of my cell phone the second somebody starts texting me !
    the interface must be redesigned such that the reply/cancel popup doesn't block the rest of the screen. instead it should appear as a bar on top or bottom of the screen and the rest of the screen should compress a bit so u can still go about your business while the crazy people are having a breakdown.
    what if i was in a car using iphone as a GPS ? i might have gotten killed.
    serious serious flaw !

    Read between the lines, people. You're missing the point: the Text Message Popup Window interferes with normal operation of an application that is in use. IE: GPS mapping software....which is probably most useful while driving, no? The OP's point was that if he was trying to use some kind of GPS MAPPING while driving, the text message popups will get in the way of that use. The app still works, yes, but it's more, unnecessary buttons to push...
    I agree that at times the Text Popup can be problematic and a less intrusive alert window should be considered. I wouldn't call it a serious design flaw, though. It's just Apple not fully considering usability under certain conditions.

  • Who needs apple to make the bezels for the macbook pro? Lets get together and tell apple they must! It is a design flaw.

    I love my pro. I paid 2700. for it 4 years ago. I did that because I know they are meant to last. I could have purchased a regular laptop but they don't last. Until recently I was ecstatic with it. Then one day I opened it up and my screen seemed really floppy. I didn't pay much attention. Then I noticed there were two cracks on the bezel toward the bottom of the screen. It is where the stress point lies from opening and closing. A very important location. I have read up on this, it is definitely a design flaw. I know the bezels are only work 10-15 dollars if produced. But because of the lack of availability of them they sell for 80 and up. I went to an Apple store with my friend. She purchased an IPAD 3 months ago, it fell out of her car, and the screen broke. Strangely enough, they replaced her IPAD when clearly it was customer fault, although she maintained it was a weak point. Me? The genius looked at mine and said I would need a new screen and it would be 700. Then another solution for 300. I asked why they couldn't just order a bezel. He said they don't make them. Apple does not make computer parts for their own computer? Unfortunately they gave me the rude runaround (Sherman Oaks,Ca manager Gabe Nava) and treated me like I was being unreasonable when I pointed out it was a design flaw with Apple!. Now i have a computer that could last a good 2-3 more years, but with this flaw the life will be shortened. Apple is this how u treat the customers that purchase you most expensive product versus the one that purchases the low/med price product? Let me know pro owners.....lets demand apple make these bezels. They should be replaced for free, but if it were available for 15. and then 50 labor...that I can live with. The best I could get outta Gabe was 150.00 and they keep my computer for a week! I live 120 miles away from the nearest store. I know your out there folks....lets make Apple make this right.

    There are online Mac reaper shops that will fix your bezel, it's nothing really.
    Here's one
    http://www.myservice.com/
    Here's another
    http://www.techrestore.com/
    (no comp)

  • Serious help needed fixing an image gallery

    On my page
    http://www.dorff.nl/clients.html
    ive put this very nice gallery..
    The only problem is. I divided the gallery in 6 groups. But in every group you will see the same images. How can i change the images for each group seperately?
    I hope you understand what i ment.
    Regards Brian

    How i can use the four files you have send me?
    In dreamweaver im getting the message...
    lightbox.css is not on the disk
    prototype.css is not on the disk
    scriptaculous.css is not on the disk
    lightbox.js is not on the disk
    Date: Thu, 12 Apr 2012 12:37:39 -0600
    From: [email protected]
    To: [email protected]
    Subject: serious help needed fixing an image gallery
        Re: serious help needed fixing an image gallery
        created by adninjastrator in Dreamweaver - View the full discussion
    Here are 4 files you need:http://www.olympicdiscoverytrail.com/style_sheets/lightbox.csshttp://www.olympicdiscoveryt rail.com/style_sheets/prototype.jshttp://www.olympicdiscoverytrail.com/style_sheets/script aculous.js?loa d=effectshttp://www.olympicdiscoverytrail.com/style_sheets/lightbox.jsHere is an entire web page with working multiple galleries:
    Photo Gallery 1
        !images/125/paw_Carrie-Elwha.jpg|title=Elwha River Valley approaching the bridge|height=93|alt=Elwha River Valley approaching the bridge|width=125|src=images/125/paw_Carrie-Elwha.jpg|border=0!
    Photo Gallery 2
        !images/125/sw_IMG_1115-Downtown-Trail.jpg|title=Trail near High School close to downtown Sequim|height=83|alt=Trail near High School close to downtown Sequim|width=125|src=images/125/sw_IMG_1115-Downtown-Trail.jpg|border=0!
       </div>     <!-- close main_container -->
    </div>
    </body>
    </html>Here is a link to that working page on-line:http://www.olympicdiscoverytrail.com/trail_maps/slideshow.htmlThere is not much more I can do!You'll have to take the bull by the horns and start coding!Copy/Paste this HTML code into a new, blank page and edit the paths to all the .css, .js, and image files.Best of luck!Adninjastrator
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4330648#4330648
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4330648#4330648. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Design Flaw in Twin Frozr fans

    So, I'm finally creating a thread about this.
    There's been reports over the last few years about fans making rattling noises, grinding noises, high pitched whines, whether on cold boot, idle, high RPM, or constantly, and quite frankly I'm tired of MSI ignoring the issue.
    There is a design flaw with the Twin Frozr fans.
    MSI needs to publicly acknowledge this.
    Currently, the only way to get a replacement fan is to send your ENTIRE card in for repair.  Other more reputable companies will send you out an entirely new fansink attachment at no cost.  As one poster said it; "That would be like sending my car to Nissan every time I blow a tire"
    My personal experience with Twin Frozr started with Twin Frozr 2 on my GTX 460 Hawks.  The Talon Attack edition started to make a bad grinding noise on cold boot or if it actually got cold enough during idle operation.  When the card warmed up, the noise stopped.  Speeding up the fan to 100% sometimes also caused it to get rid of the noise, but that was only temporary unless the card stayed warm.
    My non-hawk exhibited rattling as well, but to a lesser extent.  No grinding noise on cold boot, just a low rattling.
    My next card was a GTX 670 PE with Twin Frozr 4.  Surely they fixed the issue by now right?  Wrong!  Within 30 days I started having fan issues.  This fan doesn't rattle, but there is a high pitched whine when the fan is in operation.  The faster the RPM, the louder the whine.  Most people don't even know they have this issue because of the subtle tone of the whine and it being muffled by the fan's air sound at higher RPMs.
    That's 3 separate graphics cards all exhibiting an issue with their fans.
    There's one thing in common with these issues; it's only caused by the fan closest to the I/O.  This boggles my mind.  Surely if there was a problem with the fan design itself it would affect both fans, right?  I just don't understand it.  This leads me to believe it's a design flaw with the Twin Frozr design.
    Some people seem to have an issue with the other fan, but it appears to be rare and not the same type of problem the majority of people are reporting.
    Seeing as they want you to lose your card (and $10+ to ship it) for weeks at a time to 'fix' an issue which will no doubt happen again, something needs to be done about this.  Their 'warranty' policy for this issue is completely unacceptable, as is the fact that the fans start acting up within a month of ownership.
    If you want to see more threads, just do a search. Here is some of them:
    https://forum-en.msi.com/index.php?topic=151578.0
    https://forum-en.msi.com/index.php?topic=157567.0
    https://forum-en.msi.com/index.php?topic=156284.0
    https://forum-en.msi.com/index.php?topic=161914.0
    https://forum-en.msi.com/index.php?topic=153463.0
    https://forum-en.msi.com/index.php?topic=154030.0
    Googling brings more results.  I've posted about it in this thread, and others have mentioned it as well: http://www.overclock.net/t/1265574/msi-gtx-670-power-edition-twin-frozr-4-cooler/0_30

    Quote from: Noway77 on 28-May-14, 05:39:49
    I don't think we have a MSI office in Portugal, most brands don't.
    Some stores are not reliable they buy from EU retailers some even from Asia retailers and usually they don't give proper support. In Lisbon you have stores like Globaldata, Nanochip, Chiptek and AquaPC they are in business for years, have good customer support and have also good prices.
    I'm probably not going to buy any MSI product from now on , for obvious reasons.
    Trying to contact a support shoudn't be this hard from a client , at this point I assume anyone that's doesn't want to lose time will just give up.
    As a consumer I was forced to RUN and TRY to find msi support , MSI support mail doesn't event exist , since I made this thread it still hasn't been changed.
    I really liked MSI ( I still have my 875P MSI neo here with my p4 and the NX6800 working ) it's like saying goodbye to an old friend that has been by my side since P4 times.
    I'll buy msi products in US , or in another country maybe , but never MORE in portugal.
    This is not cause of the shops , I recommend everyone to buy in the shops listed !!
    In fact most of the portuguese shops tried to help me find msi support ( even though they weren't the stored that sold me the card ).
    I really don't want ppl to get this mixed up, the problem here is MSI not acknowledging a problem that is simple to fix, having a non-existant email on their webpage as support for over 4 months and the fact that as a consumer I was forced to jump trough loops to actually contact MSI itself !
    Every portuguese shop I contacted was super nice and really helpful pointing me to the new msi email
    And actually the fix ( hot needle fix forum post link ) came from a shop reply.
    US support was always super nice and helpful !
    I was forced to fix my fan with the help of users.
    If right now my MSI gpu is working is thanks to guru3d and hardwareoc and simillar forums ( thanks to everyone that posted Twin Frozn fixes , this may not mean much , but really .. thanks for helping me out ! )
    MSI didn't help or even try to help me , I had to go out of my way to get help , and I never did.
    I know some of those stores , they have great prices , but if I buy anything in portugal I'll buy other brands for obvious reasons. ( it was actually one of those shops that helped me pinpoint the "real" msi email )
    I am a customer , I should be treated as such , I was joked and pushed around emails , found emails that don't even exist , I was ignored and left looking at a card going dead.
    Maybe for some of you it's easy , you just buy another one .... and maybe that's the custommer MSI wants. But that's not me.
    Pointing me to places to buy MORE is almost insulting at this point. I wont buy more ... I would be stupid of I did.
    I just hope some other person that has MSI and is having this problem with Twin Frozn fans ( that msi refuses to acknowledge as THEIR problem !! ) can fix them themselves or take some info from my posts and others to at least understand what is happening.
    From my pov , the fan eventually has some sort of lubrication problem , and due to that it starts to wobble , after that the coils heat up to a point it wobbles even more.
    Due to the high temps the fan either "looses" enough to dump all the lubing out.
    At some point the fan will heat up so much the plastic IS REALLY hot to the touch and fells that it can be actually moldable ( so I assume this is really bad )
    This leads to the start-stop problem , the fan tries to kick itself on , but just makes things worse.
    This leads to a fan that fails in 2-3 years.
    MSI should either had a way to put oil in the fan OR just start to be ready to replace them.
    The fact that IS an ebay market for Twin Frzn fans is just flabbergasting .
    I wish I had a better view on this , but seriously looking at this thread,  and seeing all the steps I have done , to find there are others like me that have a failing fan and that the ones that aren't ignored like me have to RMA a card for a simple fan doesn't give me any sort of confidence in this brand.
    MSI has one of the best gpu coolers  , honestly it's so god that after all this mess I stand as a testimony for it being one of the BEST gpu coolers around ! All my MSI products so far have been great ... but this experience was just ... weird ..
    I wish MSI would contact the ppl that are in my position and help them , it's just a fan  , it's an easy fix and it's easy to replace.
    There are lots of ppl right now with fans starting to fail , just take their card , replace the fan and send them back , and MSI will have happy customers , HAPPY cause the brand CARED !
    I'm only 1 client , MSI hardly "fells" me leaving ... I really like MSI ... so I wish this won't ever happen again to no one !
    I have been ignored in mailing for TDR problems , after that about the 12h+ card artifacting being fixed with cold boot ( I assume this was an nvidia problem )
    After using certain drivers that didn't TDR my card ( I have enough PSU for it so ... it's not the PSU ) and having been 2 years finding my own "solutions" to problems ... being ignored and just struggling to get help from MSI for a stupid FAN a cheap part and being hard just to contact them to get no answer .... and getting help from other users while MSI ignores me ? ... I'm thinking on leaving the brand ...
    The fans are now working 100% , I'll post info when and if they fail ( if I see my "fix" stopped working ) .
    It has now been a long time since 2011 and my first reports , and its been almost 6 months since I contacted msi about the portuguese email listed not existing.
    The email is still there , that non-existent email is STILL listen in MSI website RIGHT NOW after me being emailing them about it for 4+ months ,as a customer,  I can only assume they either ignore people , or they have a terrible communications internally .
    Again after all this mess , I would be kinda stupid to support or try to buy another product from this brand , MSI support was always great and was the main reason I bought msi products, all this posts are from a person that was truly SHOCKED in everything that is happening and the feeling that no one cared.

  • Inherent design flaw in HP laptop keyboards

    Anyone struggling with random behaviour when typing quickly (windows shutting down, blocks of text being deleted etc) may be interested to know that there is a flaw in HP laptop keyboards. This has been seen on an HP550 laptop, it's not clear how many other models contain the same flaw.
    They have implemented shortcuts in the keyboard firmware such that Right-Shift together with two other keys creates a completely new keycode. For example Right-Shift + N + U, generates a Ctrl+A keycode. Right-Shift + R + T generates a Plus(+) keycode. The problem is that the timing in their implementation is completely flawed, so anyone who types fast / touch types will find that these keycodes are generated during normal typing. You will find that while typing a block of text, the whole lot is suddenly deleted, or the window you are working with is closed down, and several other problems. Essentially you press one thing on the keyboard and the keyboard does something else completely.
    This flawed design is only implemented on the Right-Shift key. Those of you who do not use the Right-Shift key while touch-typing will not get this issue.
    If you do use Right-Shift, however, you will need to retrain yourself to touch-typing using the Left-Shift key or otherwise modify your touch-typing. HP do not acknowledge that this is a flaw, claiming that it is "a feature not a bug", despite it being a significant difficulty for those that touch type. Their UK customer service manager Oliver Dyson refuses to accept that it is an issue, so be aware before purchasing HP laptops that any of your staff who touch type may have difficulties, and HP will not resolve the situation for you.

    Anyone struggling with random behaviour when typing quickly (windows shutting down, blocks of text being deleted etc) may be interested to know that there is a flaw in HP laptop keyboards. This has been seen on an HP550 laptop, it's not clear how many other models contain the same flaw.
    They have implemented shortcuts in the keyboard firmware such that Right-Shift together with two other keys creates a completely new keycode. For example Right-Shift + N + U, generates a Ctrl+A keycode. Right-Shift + R + T generates a Plus(+) keycode. The problem is that the timing in their implementation is completely flawed, so anyone who types fast / touch types will find that these keycodes are generated during normal typing. You will find that while typing a block of text, the whole lot is suddenly deleted, or the window you are working with is closed down, and several other problems. Essentially you press one thing on the keyboard and the keyboard does something else completely.
    This flawed design is only implemented on the Right-Shift key. Those of you who do not use the Right-Shift key while touch-typing will not get this issue.
    If you do use Right-Shift, however, you will need to retrain yourself to touch-typing using the Left-Shift key or otherwise modify your touch-typing. HP do not acknowledge that this is a flaw, claiming that it is "a feature not a bug", despite it being a significant difficulty for those that touch type. Their UK customer service manager Oliver Dyson refuses to accept that it is an issue, so be aware before purchasing HP laptops that any of your staff who touch type may have difficulties, and HP will not resolve the situation for you.

  • I am a new iphone 4 user... I have insurance what does the Manufacturer Cover in damages or design flaws ?

    I recently was talked into upgrading to an iphone 4.....I Love Apple and all of their products and accessories!!! My son & I have become computer genius
    within 5 minutes, there is actually an app for everything....Except a design flaw or water/steam damage? I was hoping to resolve this unfortunate experience!!!
    I had my iphone 4 in the outlet in the hallway near my bathroom.. I love the 80's I Heart Radio App...Apparently, the phone has water damage and needs to be looked at or replaced. I have been to 3 AT & T Stores before I received excellent customer service by speaking to the store manager...I had a different design flaw with Moto Atrix was still within the Manufacture waranty. They said it was a desin flaw with the keyboard...not able to fix and would have to pay the deductable.. That is not good enough!!! I buy everything i this i that!!! I can't live without my iphone I have money with Starbucks and also linked to Shell Rewards
    and Speedway... Not to mention all my personal numbers, emails, facebook friends.....The phone was not dropped in water and was not in the same room as water but being 10 to 20 feet away something with the steam set off the water display for water damage??? I don't know why this is? When I first started on my quest with AT&T I thought I would have a grace period or design flaw? Please help!! I am unable to conduct daily day to day things without my iphone I was advised if they cracked my SIM card it's broken forever???

    If the little built-in water detector on the iphone shows positive, ie water damage, then Apple will not do anything for you under warranty. The best thing that they will offer you is a swap to an identical (new phone) at a price around £150 in UK or the equivalent in your own country.   If you are backing up to iCloud (or your computer), the new replacement unit will be able to load up all your old information etc. everything apart from synced data like music which you will need to re-upload.
    You could argue that the water damage sensor on the iPhone is too sensitive etc. but Apple don't respond too well to this although you will be in a better position (and will be listened to more sympathetically) if you have bought AppleCare for your iPhone.
    I know that this is annoying but I hope that you manage to get your problem resolved soon.

  • Lenovo Helix design flaw ?

    I saw this device and got very interested, might almost say exited.
    I decided to take a deeper look, and was very disappointed.
    I saw that the USB port on the tablet, is on the same side with all other connectors.
    This means that when I connect the tablet to the dock keyboard, this port is blocked, and not accessible.
    You might think that this, by itself, is not too bad.
    But - the probelm is - if you use the USB port in tablet mode, and want to dock the device,
    you would have to disconnect the usb device, dock the tablet, and re-connect the device to the dock.
    In my opinion, this is very inconvenient, especially to people who use external storage device almost all the time.
    I would wonder if Lenovo did not see this design flaw, and if they have any plan to change this.

    Hello Mark.
    Thanks for the reply.
    My use case is that I need to work with data that cannot be copied to my device, and on a physically connected network.
    (A matter of data security)
    1. The Helix does not have an ethernet card, and as suggested in the device specs pdf file, a physical network conection can be obtained by using a usb dongle.
    2. Using a USB mass storage to use data that cannot be saved on the network, or for data that was approved to be shown in meetings.
    3. For use of a large external storage device (external 1+ TB hdd), to use large files.
    Having to connect and disconnect the USB devices every time I dock/undock the device, will be very annoying,
    and might even prevent docking/undocking, if the device holds open files for long processing.
    (I believe the Helix was designed to be used for real work, and not just as a content consuming tablet)
    I know changing the location of the USB port is a complicated task, involving a lot of physical components, unlike a  software or a firmware patch.
    Since I consider Lenovo, to be a company that designs high end, reliable, and highly usable devices,
    keeping business oriented uses in mind, seeing that a constant USB port connection was overlooked was a very disappointing surprise.
    Again - many thanks for the reply,
    and for taking my comment into consideration.
    PS 
    An idea that just crossed my mind : make a dock that has a demerit/groove where the tablet has the USB port, and supply a USB extension cable, that will "shift" the USB port and "unblock" it.
    I know this is not the most elegant fix, but it is "quick fix", that can be used until the board, case, and all other elements are re-designed to move the USB port to one of the tablet sides.

  • HP Envy 6Z sleekbook hinge DESIGN FLAW

    My HP ENVYSleekbook6z-1100us has a broken hinge on the left side.Actually hinge is not broken but UNGLUED from lap-top lid!?! This also happened with right side hinge couple months ago while lap-top was under warranty and HP fix that but now i have same problem with left hinge. This is obviously design flaw because hinge is just glued to the lid. In les than 18 months of light use, hinges unglued two times just from opening and closing the lid. If u check online u can find hundreds of complains about this design flaw.Where and how i can file complain about this? HP need to recall all this lap-tops !!!

    @zeropfc 
    Thank you for using HP Support Forum. I have sent you a private message. If you’re unsure how to check your private messages please click here.
    Thank you,
    Omar
    I Work for HP

  • Need help FAST Application refusing to launch

    My PowerBook is refusing to launch an app, the app works fine on all my other computers. In the app's crash log I get this:
    http://pastebin.com/664099
    This computer used to run the app fine until earlier today when a folder named 501.xxxxxxxxxxxxxxxx (the x represents numbers that I can't remember). I am loosing my patients with this **** computer and am about to smash it with a hammer if I don't get this fixed FAST.
    --Thank you for your help

    If you really want this fixed fast, you should consider:
    The more information you provide about the crash, the better. You didn't indicate what program you were using and you also seemed a bit frustrated when you posted and didn't quite finish the sentence concerning the 501 folder, which I can only assume, appeared in your trash, as I think I've seen this before after a program quits unexpectedly.
    According to the crash report, it appears that the program that is crashing is Adium.
    You can try reinstalling the program to see if something has been corrupted in the program package.
    You can check to see if there is a more up to date version of the program. You might be dealing with a bug that has been fixed in a more recent version.
    You can hunt for the preferences by doing a file search in the library/preferences folder to see if you can find all the preferences associated with adium and delete them. You will most likey loose all your preference setting and any login information, since it's an IM program, but at least you can get it up and running again.
    Don't delete the preference files until you have verified that the other two solutions do not work. There's no need to go through re-intering the preferences you want if you can fix the problem by reinstalling the program, which doesn't mess with your preferences.

  • Need help fast with a buying decision - Leadtek 6800 GT

    Hi there, I have the opportunity to swap my Club 3D 6800 GT for a Leadtek 6800 GT. The reasons I would do this would be the cooling and the games bundle.
    I just wanted to know if anyone knows how the cooling is on this particular card and if it would be better than the reference design?
    My other concern is that it has a huge copper heatsink on the back of the card, this would sit directly under the CPU HSF. There really would only be a few millimeters between them and due to the position of the socket on this board, the heat sink fins go up vertically. Would the heat from the card's copper heat sink rise up into the CPU HSF grooves and raise the temperature of the CPU?
    Thanks for any help  
    I kind of need help fast as someone said they were gonna buy my other card of ebay today, there's still time to stop them if this is gonna be a bad idea

    i would definately take the leadtek one over the club3d card, the cards themselves are all based on refrence designs just different cooling solutions and bundles
    and the cooler on the leadtek is a lot better, and it isnt more noisy then the club3d one at all
    it has better cooling, and they seem to be the ones which are the most available, and they overclock very well due to the better cooling

Maybe you are looking for

  • Purchase Order to Purchase Order using BPEL and/or XML Gateway

    Hi, Is there a way to do create a duplicate Purchase Order in another instance using BPEL and/or XML Gateway? We're looking to do A2A transactions, namely duplicating data from one instance to another (of course the functional setups would have to be

  • Mysql Variable issue

    I am passing a what will soon be my search variable into php from flash. The issue is when I need to search for something that needs to find a string value in quotes it fails. Below is the like field variable declared in flash LikeField = "Model_Prof

  • Removing Existing Headers & Footers?

    How do I remove existing headers and footers that were created in Adobe Acrobat at 9.5.4 in a PDF document and I keep getting the message:  "Acrobat cannot find any headers or footers in this file. If you see header or footer information, it was not

  • SAP Mobile Engine with SAP NetWeaver 7.0 Java Trial Version ?

    Hi, I would like to know if I can use the SAP Mobile Engine on the SAP NetWeaver 7.0 Java Trial Version that you can download form SDN or in other words if I can configure a test system with the SAP NetWeaver 7.0 ABAP SP12 and SAP NetWeaver 7.0 Java

  • Font Explosion 500 & 10.4?; TechTool Pro 6 vs DataRescue vs FileSaver

    OK, I was looking at this bundle: http://www.macsuperbundle.com/?rs4=NOUS_BN_MSB_BUY0311 Most of the software is 10.5, but two items seem interesting for 10.4: 1. Font Explosion 500 lists Mac OS 10.5 as the minimum system requirement? What I am tryin