Immediate login, custom redirect not working correctly

I have a page with some conditional regions on it: show if user is logged in, else show something else. That sort of thing.
This page is a tease to convince users to register so there a prominent "If you're a member, log in here, if not register for free."
If someone clicks the Register button, they are taken to the registration page along with a url variable to identify the place they've just come from.
The registration page has an Immediate Login trigger on it - which has always worked without a hitch.
The registration page also has some conditional redirect triggers attached to the registration insert. The conditional redirect triggers GET the url variable being passed and if the condition is matched, the registration page sends them back where they came from - just like a login function would - registered and now logged in due to the immediate login trigger.
This has all worked wonderfully until this past weekend when the whole system fell apart.
For reasons unknown, the immediate login has stopped working. The redirect continues to work but people are correctly returned to the page with the logged in/logged out conditional regions but doing so without getting logged in, so of course they see the same stuff they just saw - stuff telling them to register or login.
Immediate login continues from every other direction, just this particular set of redirections seems to totally wonk out the person returning from the registration page properly logged in.
Anyone with any experience with this kind of thing? It's very essential to the way my web operation works.
I deeply appreciate any interest or advice.

Nope. This is the strangest thing I've encountered.
After changing the conditional trigger to AFTER, it worked once. I logged out to test again. Now it's right back to not working. Shut down the browser too.
As before, the redirect works as it's supposed to but the user gets redirected without being logged in.

Similar Messages

  • Apply custom name not working correctly

    Wow... I am beginning to lose hope, again, that FCPX will ever be relatively bug free. 
    When applying custom clip names in 10.1, the software is very buggy and gets some things flat wrong.  For example, if you create a custom clip name with a counter, and you apply that to a set of clips, it doesn't show that change in the even browser unless you hit apply twice.  Then you see what you expect, but as soon as you click in the browser, the names change to a counter collection that starts counting with the lowest number in the new sequence starting at  the next number in the sequence from the original set. Hard to explain, but if you have 5 clips, and you start from 1, then on first click there is no change to the clip names, on second click you get a sequence starting from 1 and ending at 5 (what you want), but when you click on the event browser the clip names change from 1 - 5 to 6 - 10, presumably because you had to hit the button twice in the first place.   That's rediculous.
    Also, applying orginal camera name doesn't work correctly for all clips.
    Also, saving new custom names with names (changing from "untitled" to a name like "outside sequence #") works intermitently.
    This reminds me of the old custom naming bugs in 10.03 - .06.    Come on, Apple.  Does anyone test this stuff before it's released?

    Correct.  But the behavior I describe is correct too.  And one people should be aware of as they are likely to encounter this if they don't do as you described, click off the clips, but instead hit the apply custom name button more than once.  Buggy

  • Redirect not working correctly

    Selecting "Redirect" in Mail used to seemlessly pass the email on to a new recipient as if the email was sent from the original sender:
    From: +"original sender's name" <original sender's e-mail>+
    Resent: +"my name" <my e-mail>+
    The only evidence of me as the middleman was an extra field in the header that indicated "resent from: +my name+"
    Now when I Redirect it puts my name under "From:" and leaves the "Reply To:" field empty (which is similar to how "Forward" functions.)
    If I manually copy the original sender's email into the "Reply To:" field, Mail puts my name in the "From" header but the original sender's email address in the "Reply to:" field.
    It looks like this:
    From: +"my name" <original sender's email address>+
    This is very confusing to the recipients because they think I sent the email but when they hit "reply" it goes to the original sender. Dangerous!
    How can I get Redirect to work the way it used to, with all the original sender's info in the From: box?

    I'm not having any success with redirect, but hadn't even considered that gmail might be the culprit. We are using google's mail service for our domain, and I'm also suffering from the redirect-as-forward problem. I receive mailings from multiple mailing lists, and have to redirect them to multiple recipients within my company. Unfortunately, all the messages I pass on look like they are coming from me, and the replies also come to me. It takes time out of my day to have to contact one or the other party, either re-forwarding the message to its intended recipient or contacting the sender and having them manually enter the "to" address. Very frustrating. Solutions sought.

  • JSP Custom tag not working correctly for multiple users

    I am doing some support work for an existing web system. When doing single user access (a custom tag is called within the JSP); the output of the Custom tag is fine. However, during multiple user access to the JSP, as I could see on the log files, 2 users access the custom tag at exactly the same time- the output of one of the users was incorrect. The custom tag btw, uses TreeMap, Stringbuffer and does not have a body, only attributes passed to it. It takes an input file and a Hashmap as input attributes and it sets a string in the page context which is later being used in the JSP. No error is logged, its just that the string produced(placed in the page context) is incorrect. This only happens when this tag is called at same time(when multiple users accessing the page) Has anyone encountered this problem? Is there a known pooling/thread problem with custom tags?

    in a servlet/jsp (a jsp is compiled into a servlet),
    the class atrributes are shared. only the
    variables declared in the doservice (doGet or doPost)
    method are threadsafe.
    post your jsp plzhere's the snippet of the jsp code:
    <%@ page language="java"
    errorPage="Error.jsp"
    autoFlush="false"
    buffer="128kb"
    import="java.text.*,
    java.math.BigDecimal,
    java.rmi.RemoteException,
    java.util.*,
    java.io.*,
    %>
    <%@ include file="Secure.jsp" %>
    // a set of request.getParameter are being called here
    HashMap myMap = new HashMap();
    myMap.put(xmlDPhoneNumber, dPhoneNumber);
    myMap.put(xmlDPhoneType, "D");
    myMap.put(xmlDPhoneExt, dExtension);
    myMap.put(xmlDPhoneDigits, dPhoneDigits);
    // other myMap putting of key values are called here
    %>
    <test:applyCustomerSearchValues id="resultXml" xmlTemplate="/xml/message/CustomerUpdateRequest.xml"
    xmlMap="<%= myMap %>" />
    <test:transformXMLString id="customerUpdateRequest"
    xmlString="<%= resultXml.toString() %>"
    xslFileName="/xsl/message/CustomerCreateRequest.xsl"
    paramMap="<%= PMap %>"/>
    now here's the thing: the xml produced by test:applyCustomerSearchValues is resultXml which is used in test:transformXMLString. I got no problem with the output of test:transformXMLString. I am sure that a phone number is being passed into the former as part of the HashMap key-value. However when test:applyCustomerSearchValues is called when 2 users access the jsp, it seems like the the first xml produced does not have the phone number in it - but the other has it. The xml is OK for both users, its just that the values of the HashMap do not seem to be passed correctly into the xml produced.
    --- here's the snippet of the log, the first httpWorkerThread-80-6 does not have the phone number, however the second one-httpWorkerThread-80-7 has the phone number. The first one should also have a phone number as in the start of the log, the number was listed, but as the system called the test:applyCustomerSearchValues tag, the number was not included. There are different phone numbers for the 2 users. The odd thing here is, the userID which is the 'LastUpdatedBy' element has been set correctly. The userID is being fetched from a session attribute while the phone number is fetched from a request parameter, both are being placed in the HashMap attribute passed to the custom tag.
    2007-06-05 10:55:41,954 DEBUG [httpWorkerThread-80-6] (?:?) - ApplyCustomerSearchValuesTag : String produced is :<Values><Customer>
    <Status>
         <CustomerType></CustomerType>
         <FirstContactDate>2007-06-05</FirstContactDate>
         <StatusFlags>
              <Fraud>N</Fraud>
              <BadCheck>N</BadCheck>
              <BadCredit>N</BadCredit>
              <DoNotMerge>N</DoNotMerge>
              <ARHoldRefundCheck>N</ARHoldRefundCheck>
         </StatusFlags>
         <LastUpdatedDateTime>2007-06-05 10:55:41</LastUpdatedDateTime>
         <LastUpdatedBy>5555</LastUpdatedBy>
         <OPAlertClass></OPAlertClass>
         <MailListStoreID></MailListStoreID>
         <OriginatingSource>CSA</OriginatingSource>
    </Status>
    <DPhone id="D">
         <DPhoneNumber></DPhoneNumber>
         <DPhoneDigits></DPhoneDigits>
         <DPhoneType></DPhoneType>
         <DExtension></DExtension>
         <DAreaCode></DAreaCode>
         <DPhoneCountryCode></DPhoneCountryCode>
    </DPhone>
    </Customer>
    </Values>
    2007-06-05 10:55:41,954 DEBUG [httpWorkerThread-80-7] (?:?) - ApplyCustomerSearchValuesTag : String produced is :<Values><Customer>
    <Status>
         <CustomerType>N</CustomerType>
         <FirstContactDate>2007-06-05</FirstContactDate>
         <StatusFlags>
              <Fraud>N</Fraud>
              <BadCheck>N</BadCheck>
              <BadCredit>N</BadCredit>
              <DoNotMerge>N</DoNotMerge>
              <ARHoldRefundCheck>N</ARHoldRefundCheck>
         </StatusFlags>
         <LastUpdatedDateTime>2007-06-05 10:55:41</LastUpdatedDateTime>
         <LastUpdatedBy>1840</LastUpdatedBy>
         <OPAlertClass></OPAlertClass>
         <MailListStoreID></MailListStoreID>
         <OriginatingSource>CSA</OriginatingSource>
    </Status>
    <DPhone id="D">
         <DPhoneNumber>(123) 123-4788</DPhoneNumber>
         <DPhoneDigits>1231234788</DPhoneDigits>
         <DPhoneType>D</DPhoneType>
         <DExtension></DExtension>
         <DAreaCode>123</DAreaCode>
         <DPhoneCountryCode>US</DPhoneCountryCode>
    </DPhone>
    </Customer>
    </Values>
    Message was edited by:
    Mutya

  • Spry tab not working correctly after custom changes

    Hi,
    i have used Spry Widget for making tabs in Dreamweaver for one of my project. i have customize these tabs. every thing was working fine until i add the horizontal scrolling to tab by jquery. tabs are not working correctly they do not show the tab content. i am sure there is some linking issue. all this problem begin when i added a addition div within the spry div tags if i remove <div style="overflow: hidden;" class="sc_menu" > every thing start working fine but this div control the scrolling and its important to put there. please can any one guide me what i am doing wrong i have uploaded the project to my server. below is the zip file link to download.
    http://khurram.visbl.com/test.zip
    please let me know if someone having problem in downloading above zip file. also waiting to find a solution for above. hope anyone is here who knows the solution 
    Best - Khurram

    Sorry to disappoint, the structure of the tabbed panels is
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
      </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">Content 1</div>
        <div class="TabbedPanelsContent">Content 2</div>
      </div>
    </div>
    As soon as you change that structure, this widget (out-of-the-box) will not work.
    Gramps

  • ** Filtering is not working correctly in ALV (REUSE_ALV_GRID_DISPLAY)

    Hi Friends,
    We have one Z report that output is displayed in ALV. We are using the standard FM 'REUSE_ALV_GRID_DISPLAY. 
    We have requirement to remove leading zeros for the field like Material Number (MATNR), Equipment Number (EQUNR) etc. We did the changes by applying the field catalog properties as below.
    lw_fieldcat-lzero = space.
    lw_fieldcat-no_zero = 'X'.
    After this, the MATNR and EQUNR is displayed correctly in the ALV. (Leading zeros are suppressed). But, when we do filter for these fields, in the filter window it displays all the values with leading zeros.
    1. We don't understand why it is showing in the Filter widow with all leading zeros. All it shows all the records instead of unique items.
    Later on, we removed the above fieldcat coding. Then, we have called the CONVERSION_EXIT routines (in the domain) for the fields to remove leading zeros.
    Now, the MATNR and EQUNR is displayed correctly (without leading zeros) in ALV. When we do filter, it is also doing filtering correctly. But, when we do filter which have EQUNR having long values (after zero suppression), it is not working correctly. i.e no items are displayed in the ALV.
    Not only for this items. If we filter character columns which have long text, it is not filtering correctly.
    2. It is not able to understand why the filtering is not working for long items. But in the standard report, the filtering is working correctly.
    We are using SAP ECC 6.0.
    Friends, can you clarify the about doubts. It is surprising for me.
    Kind regards,
    Jegathees P.
    Our customer is asked to remove the leading zeros for the numeric field

    Hi Clemens Li
    I agreed on your point. When we define the Internal table the type for element EQUNR & QUMNR , we are referring the SAP data element for EQUNR, QMNUM field.
    Our doubt is even though we refer the standard data element, in the ALV display, it shows with leading zeros and also it creates problems in the filtering and in the filter window all values instead of unique nos.
    Hi Abhii
    I have given below the fieldcat coding.
    Friends, can you kindly clarify the above said problems. Since we use SAP ECC 6.0 any notes or patches apply is required. ( this is the basic functionality in ALV, that is my doubt).
        wls_fieldcat-col_pos   = wpv_pos.
        wls_fieldcat-fieldname = wpv_champ.
        wls_fieldcat-tabname   = wlc_tabname.
      wls_fieldcat-seltext_s = wls_fieldcat-seltext_m
        wls_fieldcat-seltext_l = wpv_libelle.
        wls_fieldcat-ddictxt   = 'L'.
        wls_fieldcat-no_out    = wv_no_out.
        APPEND wls_fieldcat TO gt_fieldcat.
    Kind regards,
    Jegathees P.

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Sleep not working correctly

    Since updating my Late 2010 iMac to Moutain Lion the sleep function does not work correctly. They system keep waking up for no reason. The monitor comes comes day or night. I cannot figure out a fix or work around. Any ideas?

    Please read this whole message before doing anything. This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it. Step 1 The purpose of this step is to determine whether the problem is localized to your user account. Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.” While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin. Test while logged in as Guest. Same problem(s)? After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it. *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing. Step 2 The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows: 
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
     Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Test while in safe mode. Same problem(s)? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • LoginFilter not working correctly

    My Login filter is behaving very strangely. Here is the relevant code from the filter.
    if (o != null
                    || (url != null && (url.indexOf(LOGIN_URL) > 0
                            || url.indexOf(LOGIN_FORM_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_URL) > 0
                            || url.indexOf(EXTERNAL_LOGIN_FORM_URL) > 0
                            || url.indexOf("images") > 0 || url.indexOf(services) > 0))) {
                chain.doFilter(request, response);
                return;The problem is we are trying to allow an external application to log into mine. The external application generates a link with an /externalLogin.do as the href. It steps into the above code and the indexOf() correctly finds it and the chain.doFilter is executed. But it never makes it to the externalLoginAction.java.
    If I copy the link and put it on my Login.jsp page and click it, it makes it to the chain.doFilter the same but then continues on to the externalLoginAction.java.
    So it look like the chain.doFilter is not working correctly if it is not comming from the same context?
    Anyone have any ideas?

    stupid stupid stupid.
    The first url was passing userName and password in the URL the second somehow got changed to userId... so struts was kicking it back.. just changed my struts config to not validate the external login form.

  • Filters not working correctly

    We have the strange situation, that filters in calendar views are not working correctly (anymore?).
    If i set up a filter to search for my name as attendee, teaming still shows all entries instead of only just mine. This behavior applies to customized and standard calendar views.
    Filters for (customized) file folders still work as expected.
    Any ideas?

    jasi,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Cooling fan not work correctly

    my computer says the cooling fan not work correctly plase visit www.hp.com.go/teachcenter/startup

    Dear Customer,
    Welcome to HP Support Forum and we are glad to assist you
    It looks like you are having difficulties with regards to the Cooling Fan of your Netbook
    We will surely assist you with this
    According to the message you have posted I suspect this is purely a hardware issue where in your getting "System Fan(90B) - The system has detected that a cooling fan is not operating correctly" message. This is a mechanical fault and the Cooling Fan on your Notebook and needs to be replaced before the Notebook starts up with an Overheating Issue.
    Causes/Reason for this Issue:
    1. Sometimes this is just because of Dust, Pet Animals Hair slowing down the fan
    Perform the  below shown troubleshooting steps:
    Step 01. Turn OFF the Notebook
    Step 02. Un-plug the Power/AC Adapter and also remove the Battery too
    Step 03. Press and Hold the Power Button of the Notebook for a full minute
    Step 04. Now let's re-insert the battery back in and plug back the Power/AC Adapter
    Step 05. Start the Notebook and keep tapping F10 Key during the startup to access the BIOS
    Step 06. Once you get to the BIOS, Please press F5 Key to load setup defaults for the BIOS
    Step 07. Now let's press Esc/Escape Key. Save Changes and Exit - Yes
    Step 08. Now please wait till Unit loads Windows and then Shut down the Netbook again
    Step 09. You should clean all the Vents and Openings really good with a can of compressed air
    Note: If you are still getting the same error we need to replace the fan
    I strongly recommend you to immediately Contact HP Technical Support over the Phone for further assistance without any delay to get your Netbook Fan replaced and serviced by an authorized HP Certified Engineer
    You can also Check your warranty Here to verify the warranty status
    Hope this helps, for any further queries reply to the post and feel free to join us again
     **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

  • Focus under Win2k does not work correctly

    Hi,
    we've found out that the focus does not work correctly under Windows 2000 in
    Seamless Mode (App is a Windows Application running on Windows Terminal Server
    2003), the same application has no problems under Windows XP, Apple Macintosh
    and Linux.
    Example: The application has a button which pop's up a small calendar window
    giving that window focus. In Tarantella under Win2k however you just see the
    window popping up shortly and then going in the background. As the window is in
    the background and you can't get the window back and you also cannot work
    further in that application as the rest is inactive.
    Only way is to do a right-click on the application in the taskbar, which brings
    the window in the foreground again. What makes this problem even harder to
    analyze is, that it sometimes even works correctly (around 3 of 10 times).
    We've mostly recognized this with modal windows. The native client does not have
    this problem, however as far as I know it does not support seamless mode.
    2. The second problem we got is, that if you click with the mouse into the
    initializing Window while the application starts up after you have clicked on an
    application Link in SGD (I mean the Pre-Login window of Windows which shortly
    shows up just before the Login Process begins),
    the application is not started seamlessly but is started within that window and
    you have no chance but closing an restarting the application to get it in
    seamless mode. This is seen on all Client Operating Systems by us and not only
    Windows 2000.
    The Client runs:
    Windows 2000 SP4 all updates installed
    Java: 1.5.0-5
    Browser: IE6.0 and Firefox 1.0.7
    Server: Windows 2003 Terminal Server (all updates installed)
    Tarantella: 4.20.909
    I hope that someone has at least a workaround.
    Regards
    Carsten

    I have organized some testcases attached are 3 Test Programs which work
    nice natively but got these problems under Tarantella under every Windows
    Operating System (the error is not Windows 2000 as I previously mentioned but
    also occurs on Windows XP).
    The interesting thing is that the Test Program made with .NET does not show this
    problem.
    Could someone please test these and tell if this error is reproducible on your
    systems as well ?
    Run these Testprograms natively, they show no misbehavior.
    Execute this from a SGD Webtop Session in Seamless Mode, see that
    the Modal window is not modal but shifts into the background on every 2 -3 click.
    Regards
    Carsten
    [ModalTestPrgs.zip]

  • Sonata font on MacOS - not working correctly

    Hi,
    I just downloaded and installed the Sonata Standard OpenType file via FontBook in MacOS 10.9.2. So far the font is not working correctly in either MS Word or Apple Keynote -- I get standard qwerty letters rather than musical notation. Anyone ideas on how to fix/troubleshoot?
    Thanks!

    Hello RKmark,
    Thank you for going through the process of using those custom keyboard layouts. It was my pleasure to work on those some years ago.
    There is a reason why the placement of some characters on those custom layouts seems arbitrary: They were intended to replace the experience a user would have when using the same PostScript font, which was directly mapped to the characters available on the keyboard. Of course they could be re-arranged today – but that would mean opening a whole different project; and would probably question some of the semantics within Sonata.
    Back to your problem:
    I just tested the keyboard layout for Sonata, together with the Sonata OTF in InDesign, and I did not find any problems.
    Of course this does not help you. So let me just describe what I did:
    I copied the OTF file, to ~/Library/Fonts
    I copied SonataStd.keylayout to ~/Library/Keyboard Layouts
    Admittedly, in OSX Mavericks it is a bit more complicated to install a custom keyboard layout:
    In System Preferences, go to Keyboard and Input Sources.
    Click the + button at the bottom left, scroll down the list and select “Others”.
    In the list to the right, you will find a “SonataStd” keyboard layout, it has a grey icon. Click Add.
    After adding this layout, you will be taken back on the Input Sources screen. Check the box next to Show Input in menu in menu bar if it is not yet active.
    Back in InDesign, create a new text box, select SonataStd, and choose the SonataStd keyboard layout from the menu bar (marked by the flag of the country representing your keyboard).
    Now you can begin typing. I could type the sixteenth-note-rest on a US keyboard with alt-x.
    However, one thing I have observed:
    If you have set any custom keyboard shortcuts in InDesign that are using the alt-key; they might get in the way of typing some of the symbols.
    Which of the available symbols in Sonata are you missing in the custom keyboard layout? I tested them all, and could type everything.
    What sometimes happens is that the keyboard layout will switch back to default (US in my case), which then looks like the Sonata keyboard layout is not working.
    My personal opinion on this: The keyboard layouts are a nice idea for making glyphs accessible to users that don’t have a glyph palette, but they can be very confusing. They will interfere with the normal usage of the application and OS, since standard keyboard shortcuts will no longer work – simply because they rely on the standard keyboard layout of your system.
    Personally, I would use the glyph palette in most cases, simply because switching keyboard layouts back and fort would get to tedious for me.
    I hope this helps, let me know if you have any further questions.

  • I buy macbook pro occsaion ; i download osx 10.8.2 and reintal osx , after 2 days  my keyboard is not working correctly ( i mean when i touch the keys ,i see the symles , icant get letters when i type .  i try externel keyboard but is work

    i buy macbook pro occsaion ; i download osx 10.8.2 from internet  and reintal osx , after 2 days  my keyboard is not working correctly ( i mean when i touch the keys ,i see the symles , i cant get letters when i type .  i try with externel keyboard but is work

    Thanks for the reply but there is no option tab or wake for administration use in mountain lion 10.8.2, I only have the wake for network access which is on, I didnt used to have this problem before snow leopard now I have to manually re-login after computer wakes and then access remotely ........

  • I downloaded a book in iBooks store.The e-book is not working correct.

    I downloaded a book in iBooks store. Titel: Zeitenzauber from Eva Völler. The e-book is not working correct. There are always errors on most of the pages: error at column, etc. I already downloaded the book again. But still the same problem. Any idea what I can do?

    FOR ASSISTANCE WITH ORDERS - iTUNES STORE CUSTOMER SERVICE
    For assistance with billing questions or other order inquiries, please refer to our online support page by clicking here: http://www.apple.com/support/itunes/store/. If you cannot find the answers you are seeking in our robust knowledge base, you can contact us by visiting the following URL http://www.apple.com/support/itunes/store/, clicking on the appropriate Customer Service topic, then using the contact button or email form at the bottom of the page. Responses to emails will be provided as soon as possible.
    Phone: 800-275-2273 How to reach a live person: Press 0 four times
    Hours of Operation: Mon-Fri: 9am-5pm ET
    Email: [email protected]
    How to report an issue with Your iTunes Store purchase
    http://support.apple.com/kb/HT1933
    How to Get a Refund from the App Store
    http://gizmodo.com/5886683/how-to-get-a-refund-from-the-app-store
    Canceling a Digital Subscription
    http://gadgetwise.blogs.nytimes.com/2011/10/14/qa-canceling-a-digital-subscripti on/
     Cheers, Tom

Maybe you are looking for