Chinese/ gPHPEdit can't input Chinese

我裝的是gPHPEdit 0.9.10,所用的是utf-8中文環境,xcin中文輸入法。
我記得以前裝gPHPEdit 好像可以輸入中文的,現在新的套件安裝後就沒辦法輸入中文了,這個不知要如何解決?

Neil-Lin wrote:
我裝的是gPHPEdit 0.9.10,所用的是utf-8中文環境,xcin中文輸入法。
我記得以前裝gPHPEdit 好像可以輸入中文的,現在新的套件安裝後就沒辦法輸入中文了,這個不知要如何解決?
xcin是不是使用xim的?试一试export GTK_IM_MODULE=xim

Similar Messages

  • How can I input Chinese in the Playbook?

    How can I input Chinese in the Playbook?  such as in browers and contact

    I think the only way to do that is to download an app, that lets you input pinyin for instance, then copy and paste from there. The last time I checked, there are 3 apps in the app world, all by the same person. I've no idea what the difference between them is.

  • In program written with Java Swing, I can't input Chinese

    In program written with Java Swing, I can't input Chinese.
    But if I change my language first, then change the input method tu U.S, open the Java Swing application, finally I can input Chinese. I want to know how to fix this bug.
    My OS is Mac OS X 10.6.8.
    At the JDK version 1.6.0_29, I can input Chinese friendly in Java Swing applications. But after 1.6.0_31, I can't do it anymore. The input methods can input Chinese in other non Java Swing applications so the problem must create by JDK or JRE's Swing part. What's the different between 1.6.0_29's Swing and 1.6.0_31's ? Why ? I heard that Java Swing apps not support Chinese input methods seens 2009... Why haven't fix these yet?

    Chazza wrote:
    Perhaps you need to change your keyboard layout in Xorg?
    https://wiki.archlinux.org/index.php/Ke … ard_layout
    Thanks for your answer!
    I have tried to change the keyboard layout from "en" to "cn", but it is still not work.
    The input method coin on the righttop is right when I change the method.But it still output english even I use ibus-pinyin.There is not a box for my choosing chinese words.
    Last edited by Dilingg (2015-05-15 16:18:43)

  • My MBP can't input chinese hand writing letter when I selected a letter from the writing pad?

    my MBP (OS X Lion 10.7.5) can't input chinese hand writing letter; it didn't response when I selected a letter from the trackpad!

    cor-el,
    Thank you very much for your advice. The new software of Penpower works rightaway after I installed it on my pc. Thanks again.
    十分感激你的幫忙!

  • HT1212 I am trying to restore a phone that the screen does not work on, therefore I can't input my password.  How can I bypass this and upload it to itunes?

    I am trying to restore a phone that the screen does not work on, therefore I can't input my password.  How can I bypass this and upload it to itunes?

    You could follow the instructions in the support document that you linked from. There is a section regarding the passcode and the inability to use it or enter it. However, you may encounter more issues since you cannot use the screen.

  • How can I input read a line from a file and output it into the screen?

    How can I input read a line from a file and output it into the screen?
    If I have a file contains html code and I only want the URL, for example, www24.brinkster.com how can I read that into the buffer and write the output into the screen that using Java?
    Any help will be appreciate!
    ======START FILE default.html ========
    <html>
    <body>
    <br><br>
    <center>
    <font size=4 face=arial color=#336699>
    <b>Welcome to a DerekTran's Website!</b><br>
    Underconstructions.... <br>
    </font> </center>
    <font size=3 face=arial color=black> <br>
    Hello,<br>
    <br>
    I've been using the PWS to run the website on NT workstation 4.0. It was working
    fine. <br>
    The URL should be as below: <br>
    http://127.0.0.1/index.htm or http://localhost/index.htm
    <p>And suddently, it stops working, it can't find the connection. I tried to figure
    out what's going on, but still <font color="#FF0000">NO CLUES</font>. Does anyone
    know what's going on? Please see the link for more.... I believe that I setup
    everything correctly and the bugs still flying in the server.... <br>
    Thank you for your help.</P>
    </font>
    <p><font size=3 face=arial color=black>PeerWebServer.doc
    <br>
    <p><font size=3 face=arial color=black>CannotFindServer.doc
    <br>
    <p><font size=3 face=arial color=black>HOSTS file is not found
    <br>
    <p><font size=3 face=arial color=black>LMHOSTS file
    <br>
    <p><font size=3 face=arial color=black>How to Setup PWS on NT
    <BR>
    <p><font size=3 face=arial color=black>Issdmin doc</BR>
    Please be patient while the document is download....</font>
    <font size=3 face=arial color=black><br>If you have any ideas please drop me a
    few words at [email protected] </font><br>
    <br>
    <br>
    </p>
    <p><!--#include file="Hits.asp"--> </p>
    </body>
    </html>
    ========= END OF FILE ===============

    Hi!
    This is a possible solution to your problem.
    import java.io.*;
    class AddressExtractor {
         public static void main(String args[]) throws IOException{
              //retrieve the commandline parameters
              String fileName = "default.html";
              if (args.length != 0)      fileName =args[0];
               else {
                   System.out.println("Usage : java AddressExtractor <htmlfile>");
                   System.exit(0);
              BufferedReader in = new BufferedReader(new FileReader(new File(fileName)));
              StreamTokenizer st = new StreamTokenizer(in);
              st.lowerCaseMode(true);
              st.wordChars('/','/'); //include '/' chars as part of token
              st.wordChars(':',':'); //include ':' chars as part of token
              st.quoteChar('\"'); //set the " quote char
              int i;
              while (st.ttype != StreamTokenizer.TT_EOF) {
                   i = st.nextToken();
                   if (st.ttype == StreamTokenizer.TT_WORD) {          
                        if (st.sval.equals("href")) {               
                             i = st.nextToken(); //the next token (assumed) is the  '=' sign
                             i = st.nextToken(); //then after it is the href value.               
                             getURL(st.sval); //retrieve address
              in.close();
         static void getURL(String s) {     
              //Check string if it has http:// and truncate if it does
              if (s.indexOf("http://") >  -1) {
                   s = s.substring(s.indexOf("http://") + 7, s.length());
              //check if not mailto: do not print otherwise
              if (s.indexOf("mailto:") != -1) return;
              //printout anything after http:// and the next '/'
              //if no '/' then print all
                   if (s.indexOf('/') > -1) {
                        System.out.println(s.substring(0, s.indexOf('/')));
                   } else System.out.println(s);
    }Hope this helps. I used static methods instead of encapsulating everyting into a class.

  • I need to restore my iphone but itunes can't connect because it locked with password. I can't input the password becasue it showing no service and needs to be restored.

    I need to restore my iphone but itunes can't connect to it because of my password which I can't input becasue it has no service and needs to be restored. what can I do to restore it? Is there a way to input the password?

    You will need to put the iPhone into Recovery Mode to be able to restore it in iTunes.
    To put your iPod/iPhone  into recovery mode:
    1. Make sure the iPod/iPhone is connected to a computer with iTunes installed on it.
    2. Hold down the sleep/wake button(top button) and the home button at the same time until the iPod/iPhone screen goes black then shows the apple logo( usually 10-15 seconds).
    3. Once the apple logo appears on the screen, let go of the sleep/wake button and keep holding the home button.
    4. The ipod/iphone screen should show an itunes logo and usb cable if you were successful. A dialog box will appear in iTunes that states an iPod/iPhone in recovery mode has been detected if you are successful.
    5. Click ok, then click the Restore button
    After that you should be up and running in no time!
    I hope that this is helpful.

  • Where or how can we input the Intermediary Bank info in Vendor Master?

    Hi
    I would like to know if there are specific fields were we can include information of an Intermediary Bank when we are creating the Vendors Account Information.
    For instance, if we have the following information, how and where should we input the Intermediary Bank information?
    Vendor's Name:    ABY COMPANY
    Vendor's Address:    Miami, Florida
    Vendor's Account:    123789456
    Vendor's Bank Name:    CITIBANK N.A.
    Vendor's Bank Address:   Miami, Florida
    Vendor's Bank BIC Code:   CITIUS33MIA
    Vendor's Bank ABA Code:   266086554
    Vendor's Bank Intermediary Bank Name: CITIBANK, N.A.
    Vendor's Bank Intermediary Bank Address: New York, New York
    Vendor's Bank Intermediary Bank BIC Code: CITIUS33XXX
    Vendor's Bank Intermediary Bank ABA Code: 021000089
    Where or how can we input the Intermediary Bank information?
    Tks in advance for your reply
    reg
    vishnu

    Hi
    Thanks for your inputs
    Actually we need to create a link between Vendor mail bank and Vendor Intermediary bank, is there any possiblility in Vendor master data?
    As you explained i checked the settings, how can i create link between from main bank to intermediary bank?
    reg
    Vishnu

  • Password Remember Button does not function; Can't input 3rd Party Passwords for Social Networks/Emails.

    My "Remember" button doesn't work. Simple as that. The "Not Now"
    Button still works, and closes the pop-bar. Remember doesn't do anything.
    [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]
    Occurs when trying to input 3rd Party extension passwords.
    I have no master password set, I have also read the "Password not remembered topic", and it didn't help.
    Error Console yields this:
    "'''Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless.
    Source File: https://support.mozilla.com/en-US/questions/new?product=desktop&category=d6&search=Password+Remeber+Button+does+not+function%3B+Can%27t+input+3rd+Party+Passwords+for+Social+Networks%2FEmails.&showform=1#question-form
    Line: 0'''"

    Okay, I have started Firefox in Safe Mode, and the Remember button still didn't work. After checking the error console, It had the following message again:
    "Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]"
    After I Evaluated it (In the error console) it gave me a slightly different version:
    "Error: missing ; before statement
    Source File: javascript:%20Error:%20uncaught%20exception:%20[Exception...%20"'User%20canceled%20master%20password%20entry,%20login%20not%20added.'%20when%20calling%20method:%20[nsILoginManagerStorage::addLogin]"%20%20nsresult:%20"0x8057001e%20(NS_ERROR_XPC_JS_THREW_STRING)"%20%20location:%20"JS%20frame%20::%20file:///C:/Program%2520Files/Mozilla%2520Firefox/components/nsLoginManager.js%20::%20anonymous%20::%20line%20445"%20%20data:%20no]
    Line: 1, Column: 8
    Source Code:
    Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%2"
    I read the Troubleshooting extensions & Themes, but It didn't help.
    When I tried to read "http://kb.mozillazine.org/Password_Manager" I get a page that says:
    "ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: http://kb.mozillazine.org/Password_Manager
    The following error was encountered:
    * Connection Failed
    The system returned:
    (110) Connection timed out
    The remote host or network may be down. Please try the request again.
    Your cache administrator is root. "
    Also, this error occurs in ALL 3rd Party extensions. It can't log me into E-Mail accounts, Facebook, Twitter, anything. The error message has a window title of [JAVASCRIPT APPLICATION] if that says anything.

  • Just bought the Titanium HD - Can it input my xbox 360? Does it have low ASIO Latency?

    Hi, I had a amazon credit and just purchased the X-Fi Titanium HD. I wanted a card that had low latency when using ASIO as I produce music using Cubase and Midi Instruments. I like to be able to play the sounds in real-time without latency and clipping.
    Also, I read that it has a Digital Input on the back of the card. A thread I found here: [url=http://forums.techarena.in/monitor-video-cards/1374952.htm">http://forums.techarena.in/monitor-video-cards/1374952.htm
    [/url]...mentioned that it might be able to input the xbox 360's audio.
    I have a few questions before Amazon ships out my card.
    1.) Is this the best card to choose from Creative in terms of ASIO latency? (Mainly got it for this reason)
    2.) Can I input my Xbox 360 (using Optical In or Coax in) so I can play the sound through my PC? I'm tired of having to switch my receiver's input every time and being able to only listen to one audio source.
    3.) I have the Z-5500 Speakers. Does this sound card come with the cables necessary to hook it up to my Z-5500 via Analog, Coax, or Optical In?
    Thanks!!

    1. Yes it is
    2. Yes you can but only in stereo, no DD/DTS decoding from spdif
    3. Yes you can, THD come with 2 toslink->minitoslink optical cabels
    sry for my english

  • SRM User defined fields -- can not input values

    Hi,
    We are using SRM 4.0. I have created a user defined field at the PO header according to note 672960. But I can not input anything to this field.
    This is what I did:
    1. in both structures INCL_EEW_PD_HEADER_CSF and INCL_EEW_PD_HEADER_CSF_PO add the append structure with the new field ZZCONTRACT.
    2. in BADI BBP_CUF_BADI_2 created an implementation Z_BBP_CUF_BADI_2. In method MODIFY_SCREEN set: xdisplay = 'X' and xinput = 'X' for this new field.
    This new field showed up in SRM, but it is greyed out. I can not type in anything. Could anyone tell me what I did wrong or what I have missing? Thanks a lot!

    hi,
      If you can see the custom fields,the problem is with the BADi implementation.You can write something like this in the method for the PO cust fields:
    IF iv_doc_type = 'BUS2201'.
      *Hide all customer fields
    *Will change this coding if any other document type needs
    *customer fields
          LOOP AT et_fields INTO wa_et_fields.
            wa_et_fields-xdisplay = 'X'.
            MODIFY et_fields FROM wa_et_fields.
          ENDLOOP.
         ENDIF.
    Save and activate the implementation.
    HTH.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Can I input a document, edit it, and then print it out?

    Can is input a document, edit it, and then print it out?

    Hi Yekoms12,
    CreatePDF is an online application used to convert and combine files of any other format to PDF or converting PDF files to MS Word/ Excel or RTF, but you cannot edit PDF files in Adobe CreatePDF. In order to edit PDF you need to purchase Adobe Acrobat XI.
    For more information on using CreatePDF, please follow the link: http://helpx.adobe.com/acrobat-com/kb/using-createpdf.html
    For more information on Adobe Acrobat XI, please follow the link: http://helpx.adobe.com/acrobat/topics.html

  • Can't input MIDI file into project

    Hi,
    I can't input MIDI files into a garageband project. I used to do this very easily, just drag & dropping the file into a blank GB project. That was on my previous older computer, with a previous version of GB. Now I just got a brand new iMac G5 with the most up to date version of GB, and it is not working, the MIDI files just will not drop. I even tried by doing an 'open with', selected GB as the software, and got a message saying 'Garageband cannot open files in the midi audio format' !!!
    What's even crazier is that a couple weeks ago I had the same problem, and ****** around with trying different things, and at some point GB did accept the files ! But now it doesn't, and I have no idea what I did different then, probably nothing much.
    Any ideas ? It sure is highly frustrating (trying to stay polite here) when a brand new, expensive machine cannot do the simple things that a 5 year old one could.

    Have you tried different files? Maybe one that you're sure worked on your old computer? Some midi files can be tricky.

  • How to create a TextField that only numbers can be input?

    Hi,
    I just want to create such TextField that you can just input numbers (0-9) in it. Is there any advice about that?
    I will appreciate any help.

    Look at the IntField in this sample: https://gist.github.com/1962045
    I think you will find some other solutions by searching the forum.

  • HT201412 my iPad is frozen.. it won't shut off.. i can't do a forced restart.. it doesn't respond to that either.. i can't connect it to iTunes because it needs passcode entered but again the iPad is frozen so i can't input the passcode- can't do recovery

    my iPad is frozen.. it won't shut off.. i can't do a forced restart by holding the sleep/wake and home button.... it doesn't respond to that either.. i can't connect it to iTunes because it needs passcode entered but again the iPad is frozen so i can't input the passcode… I also can't do recovery mode as the ipad won't shut down for me to do a recovery mode.... HELP

    Erase iPad and setup iPad from scratch
    1. Launch web browser on your computer
    2. Sign in to www.icloud.com
    3. Tap on Find My iPhone
    4. Select the iPad to be erased
    5. Tap Erase iPad
    6. Message: All your content and settings will be erased. An erase iPad cannot be located or tracked
    7. Tap Erase
    8. Enter Apple ID and Password
    9. Tap Next
    10. Enter a phone number where you can be reached. It will be shown on your iPad after it has been erased
    11. Enter phone number
    12. Tap Next
    13. Tap Erase iPad
    14. This message will be shown on your iPad after it's been erase "This iPad has been lost. Please call 12345678"
    15. Done
    16. Erase started
    16. OK
    17. Remove from Account (this will allow iPad to be activated and used by another person)
    Setup wiped iPad
    1. Slide to unlock
    2. Select English
    3. Select Country
    4. Choose Wi-Fi Network
    5. Enter Wi-Fi password
    6. Activate iPad
    7. Apple ID and Password
    8. Apple ID and Password
    9. Enable Location Service
    10. Select "Restore from iCloud Backup"
    11. Enter iCloud password
    12. Agree to Terms and Conditions
    13. Choose backup
    14. Select "Backup file in iCloud"
    15. Hello (Welcome)
    16. Slide to unlock
    17. Update Completed
    18. Continue
    19. Enter Apple ID and Password
    20. Updating iCloud
    21. Select "Don't Add Passcode"
    22. Welcome to iPad
    23. Get Started
    24. Restore Apps and Media. Your settings have been restored. Connect to power to save battery while apps and media are downloading
    25. Sign in to iCloud

Maybe you are looking for

  • WLC 5508 7.4.X - N+1

    Hi, I don't undestand this document http://www.cisco.com/c/en/us/td/docs/wireless/technology/hi_avail/N1_High_Availability_Deployment_Guide/N1_HA_Overview.html How can the third 5508 (suport max 500 AP) backup all other WLC ? n+1 how ? With secondary

  • Lens correction profile for the Canon 18-135 STM lens in Lightroom 5 ?

    How or where can I get the lens correction profile for the Canon 18-135 STM lens in Lightroom 5 ? In effect he is not available in my list of correction lens so my lightroom is up to date apparently :/ Thanks in advance for answer.

  • Lightroom Exposure Control

    Can I use LRs exposure control slider for the same function as it is used in my camera? I'd like to get additional shots but only have a -3, 0 and a +3 on the camera. I'm doing some photos in High Definition Imaging and want to increase the number if

  • Prebinding nidaqmxbase/lv under Mac OS X

    Hello, I have recently installed the nidaqmxbase and nidaqmxbaselv frameworks on my Mac OS X 10.3.9 system in order to develope software for NI-USB-6008.  It appears that these frameworks are supplied without prebinding, which disables prebinding of

  • How do Traditional & Simplified Chinese labels work in Narrative Reports

    Hi There, I need to create a narrative report which will display the field labels in the language that the user has specified. For instance, if the user's default language is Simplified Chinese, how can I set the narrative report to automatically tra