Firefox could not show properly Chinese characters. how to fix?

I have firefox portable with the Chinese language pack add-on, but every time I open any Chinese website, the characters are not proper presented so I could not recognize them.

Make sure that you have installed East Asian language support.
* http://en.wikipedia.org/wiki/Help:Multilingual_support_%28East_Asian%29 Wiki: Help:Multilingual support (East Asian)
* http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/int_pr_install_languages.mspx?mfr=true

Similar Messages

  • Coldfusion 9 not showing some chinese characters

    We had web based application made in coldfusion 5 hosted on windows 2000 server. Now we have migrated our application on Coldfusion 9 and windows 2003 server. The problem we are facing is that some chinese characters are showing incorrectly on application pages. we have tried installing language pack and also there is no issue with browser.
    Can anybody help us in this regard? Thanks in advance.

    craptastic, the forums ate my whole posting because of a stray quoted email marker. this posting was supposed to be:
    first off, you need to use the access for unicode driver. secondly, cf5 didn't
    know unicode from a hole in the ground & the only way for it use unicode or any
    non-latin-1 page encoding is by basically garbaging the data as far as any
    unicode compliant application goes (cf6 & above). if you still have the cf5
    server, write some cf pages to extract the data from the access db then
    re-import it on the cf 9 server.  finally, access? really?

  • The song _____could not be used because the orignial file could not be found. anybody know how to fix this in windows?

    The song____could not be used, because the original file could not be found. Anybody know how to fix this in windows os?

    I am getting this same message.  I recently bought a new Macbook Pro and the geeks transferred my files from my mini-mac.  Perhaps they did not transfer something critical?  I follow the "locate" option when it asks to find my files and I get a file folder that has a red circle with a white bar in the middle. 
    I have the same issues with my downloaded movies but my apps all seem to be fine.
    Even more confusing - it seems to allow random songs to play and download on my Macbook and other devices.  But most of my music - whether downloaded from iTunes or my CD collection comes up with that message about the original file. 
    Should I get new geeks to locate these files on my old mini-mac?

  • My IPhone maps out of sudden does not show street names. How to fix it? Tried shutoff already.

    I have iPhone 5 with iOS 6.0. Out of sudden, Maps nolonger show street names, everything else works fine. I tried shutoff myphonealready. How to fix it. Thanks!

    Try a reset ..
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • Help to fix the error message in proc? I could not understand the error and how to fix this issue?

    error
    19e529fd-3785-410e-ad4e-f4c8542ade52 2014-03-17T21:40:59.079Z err { message: '@D
    efault is not a parameter for procedure sp_Address_UPDATE.',? type: 'alert',?
    stack: 'Error: @Default is not a parameter for procedure sp_Address_UPDATE.\n
    at TDSStream.onRequestComplete (c:\Projects\caa-api\lib\data\tedious\TDSS
    tream.js:67:11)\n at Request.callback (c:\Projects\caa-api\node_modules\t
    edious\lib\request.js:24:27)\n at PooledConnection.Connection.STATE.SENT_CL
    IENT_REQUEST.events.message (c:\Projects\caa-api\node_modules\tedious\lib\
    connection.js:198:29)\n at PooledConnection.Connection.dispatchEvent (c:\Pro
    jects\caa-api\node_modules\tedious\lib\connection.js:465:59)\n at Messag
    eIO. (c:\Projects\caa-api\node_modules\tedious\lib\connection.j
    s:419:20)\n at MessageIO.EventEmitter.emit (events.js:92:17)\n at MessageI
    O.eventData (c:\Projects\caa-api\node_modules\tedious\lib\message-io.js:59
    :21)\n at CleartextStream. (c:\Projects\caa-api\node_modules\t
    edious\lib\message-io.js:3:59)\n at CleartextStream.EventEmitter.emit (even
    ts.js:95:17)\n at CleartextStream. (_stream_readable.js:746:14)' }
    existing Proc
    sp_helptext sp_Address_UPDATE
    CREATE PROCEDURE [dbo].[sp_Address_UPDATE]
      @AddressID             INT OUTPUT,
      @Line1                 NVARCHAR(400) = NULL,
      @Line2                 NVARCHAR(400) = NULL,
      @Line3                 NVARCHAR(400) = NULL,
      @UnitNumber            NVARCHAR(30) = NULL,
      @City                  NVARCHAR(400) = NULL,
      @StateProvinceID       INT = NULL,
      @PostalCode            NVARCHAR(50) = NULL,
      @CountryID             INT = NULL,
      @Latitude              NUMERIC(30, 8) = NULL,
      @Longitude             NUMERIC(30, 8) = NULL,
      @Elevation             NUMERIC(30, 8) = NULL,
      @Active                SMALLINT = NULL,
      @ModifiedBy            NVARCHAR(50) = NULL,
      @Error                 NVARCHAR(400) = NULL OUTPUT,
      @Locality              NVARCHAR(400)=NULL,
      @AdministrativeArea    NVARCHAR(400)=NULL,
      @AdministrativeSubArea NVARCHAR(400)=NULL,
      @Country               NVARCHAR(400)=NULL
    AS
        IF @Country IS NOT NULL
          SELECT @Countryid = CountryId
            FROM countries
           WHERE ( Country = @Country )
                  OR ( CountryAbrv2 = @Country )
                  OR ( CountryAbrv3 = @Country )
        IF @AdministrativeArea IS NOT NULL
          SELECT @StateProvinceID = StateProvinceID
            FROM StateProvince
           WHERE ( abbreviation = @AdministrativeArea )
                  OR ( name = @AdministrativeArea )
      --    BEGIN TRAN
        UPDATE a
           SET Line1 = ISNULL(@Line1, a.Line1),
               Line2 = ISNULL(@Line2, a.Line2),
               Line3 = ISNULL(@Line3, a.Line3),
               UnitNumber = ISNULL(@UnitNumber, a.UnitNumber),
               City = ISNULL(@City, a.City),
               StateProvinceID = CASE
                                   WHEN AdministrativeArea IS NOT NULL
                                        AND @StateProvinceID IS NULL THEN NULL
                                   ELSE ISNULL(@StateProvinceID, a.StateProvinceID)
                                 END,
               PostalCode = ISNULL(@PostalCode, a.PostalCode),
               CountryID = CASE
                             WHEN Country IS NOT NULL
                                  AND @CountryID IS NULL THEN NULL
                             ELSE ISNULL(@CountryID, a.CountryID)
                           END,
               Latitude = ISNULL(@Latitude, a.Latitude),
               Longitude = ISNULL(@Longitude, a.Longitude),
               Elevation = ISNULL(@Elevation, a.Elevation),
               Active = ISNULL(@Active, a.Active),
               ModifiedDate = GETDATE(),
               ModifiedBy = ISNULL(@ModifiedBy, ModifiedBy),
               locality = ISNULL(@locality, locality),
               AdministrativeArea = ISNULL(@AdministrativeArea, AdministrativeArea),
               AdministrativeSubArea = ISNULL(@AdministrativeSubArea, AdministrativeSubArea),
               Country = ISNULL(@Country, Country),
               geogcode = CASE
                            WHEN @latitude IS NOT NULL
                                 AND @longitude IS NOT NULL THEN geography::STPointFromText('POINT(' + CAST(@Longitude AS VARCHAR(20))
                  + ' ' + CAST(@Latitude AS VARCHAR(20)) + ')', 4326)
                            ELSE NULL
                          END,
               geocode = CASE
                           WHEN @latitude IS NOT NULL
                                AND @longitude IS NOT NULL THEN geometry::STPointFromText('POINT(' + CAST(@Longitude AS VARCHAR(20))
                + ' ' + CAST(@Latitude AS VARCHAR(20)) + ')', 4326)
                           ELSE NULL
                         END
          FROM [Address] a
         WHERE a.AddressID = @AddressID
        IF EXISTS(SELECT *
                    FROM address
                   WHERE Addressid = @addressid
                         AND ( locality IS NOT NULL
                                OR AdministrativeArea IS NOT NULL
                                OR country IS NOT NULL ))
          SELECT AddressID,
                 Line1,
                 Line2,
                 Line3,
                 UnitNumber,
                 isnull(Locality, City) AS 'Locality',
                 a.StateProvinceID,
                 isnull(administrativeArea, S.Name) AS 'AdministrativeArea',
                 AdministrativeSubArea,
                 a.PostalCode,
                 a.CountryID,
                 isnull(c.Country, a.Country) AS Country,
                 a.Latitude,
                 a.Longitude,
                 a.Elevation,
                 a.ModifiedBy,
                 a.ModifiedDate
            FROM [Address] a
                 LEFT JOIN stateprovince s
                        ON s.stateprovinceid = a.stateprovinceid
                 LEFT JOIN Countries c
                        ON c.Countryid = a.Countryid
           WHERE AddressID = @AddressID
        ELSE
          SELECT AddressID,
                 Line1,
                 Line2,
                 Line3,
                 UnitNumber,
                 City,
                 StateProvinceID,
                 PostalCode,
                 CountryID,
                 Latitude,
                 Longitude,
                 Elevation,
                 ModifiedBy,
                 ModifiedDate
            FROM [Address]
           WHERE AddressID = @AddressID
        RETURN @AddressID

    Nothing in the procedure is right. The “sp_” prefix has special meaning in T-SQL, so the name is wrong. THEN it gets even worse.
    No postal service in Earth uses 400 character address lineS. Can you give me an exampelf of a city_ with 400 characters? 
    Longitude and latitude are done with FLOAT because of the math used. ISO country codes are CHAR(3). Addresses do not have an id; we have “<something>_address” in RDBMS. Do you want some industry standard like the SAN? 
    The (ModIFiedBy, ModIFiedDate) pair is audit data, so it is illegal to have it in the table under audit. 
    Your code is BASIC or COBOL written in T-SQL with 1960's with  IF-THEN control flow and not in declarative SQL! Why did you fail to use COALESCE? 
    Look at how to write a MERGE statement and get rid of this procedure.  And look at an address scrubbing tool for the data. In the future, post DDL and follow minimal Netiquette. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Crystal report could not show dynamic picture

    I develop crystal report which show dynamically picture in my PC but when I send it to server which has not be installed program just install asp.net framework 2.0 , it could not show dynamic picture.
    How should I do, please advise.

    I develop the report by using Crystal Reports XI so that I have to install the runtime of them as the detail in page of business object located at Business Objects - Crystal Reports Runtime Packages.mht
    Crystal Reports for Visual Studio .NET 2005 - Service Pack 1 (Updated Nov. 2007) will not show dynamic picture, right
    I have to install Crystal Reports XI - Service Pack 4 (Updated - November 2007) becuase it has more features than the package in VS2005 right
    Edited by: pasit chan on Nov 3, 2010 10:18 AM

  • Working with Chinese characters: How to paste and modify them as sentences; not as individual images?

    Working with Chinese characters: How to paste and modify them as sentences; not as individual images?
    From 2004, this is so far the most detailed answer I could find: http://en.allexperts.com/q/Adobe-Illustrator-1027/FONTS-display-problem-Adobe.htm, but is this really still the most up-to date solution?
    Is it possible at all to work with Chinese characters, if I don't have the Chinese version of Illustrator? (http://www.proz.com/forum/dtp_desktop_publishing/221125-chinese_in_indesign.html)

    Thanks for your reply.
    I'm using Version 17.1.0 (64-bit) - basically CS6.
    Operating system is Windows 8.1. Installed is the simplied Chinese language package.
    I have received the text in a Word document. It contains mixed characters, something like this:
    教授资料
    学术背景:
      博士;曾于波恩大学(Rheinische Friedrich-Wilhelms-Universität Bonn)、台湾师范大学、
    I have tried to paste it in the two following ways:
    1) to create a text box and paste the text. The result is that some of the characters are not showed correctly.
    2) Paste it directly without any preparation. This result into a single "image" or group of images. I can cancel modify each character one at a time, or I can dissolve the group, but the result is the same.

  • Thai characters not showing properly

    Hi,
    When creating a product catalog in thai language the characters do not show properly. The characters have small aspects attached to them that hover above as you can see here http://www.gte-premium.com but when editing in Indesign the small aspects that are meant to hover above overlap the portion of the character below and are not aligned left to right properly.
    I have tried every thai-friendly font I can find but this does not fix the problem, how can I amend this?
    Thanks in advance

    If you're using a well-made font, you can probably get the tone marks to behave by turning on the World-Ready Composer. It's exposed in InDesign CC and CS6, in the Paragraph menu I think, but if you're using an earlier version of InDesign it's a hidden feature that you would need to use a script or a plugin to turn on.

  • Chinese Language not show properly in Script output panel.

    --Database 10g xe.
    -- SQL developer: 1.2
    I am using the chinese version of sql develper, but we I execute some script but it didn't show the chinese characters properly , the words are missing, and changed to some small retagular boxes.

    Normally it works, but sometimes it doesn't? You'll have to track that down to reproducible cases for us to find out what's going on and propose solutions...
    K.

  • HT4623 i got apple iphone 3 and i getting problem to activate that its showing message could not activate plz help me how can i activate my phone?

    i got apple iphone 3 and i getting problem to activate that its showing message could not activate plz help me how can i activate my phone?

    Most likely your phone is carrier locked to a different carrier than the SIM card you're using.  It will activate and operate only with the carrier to which it's locked.

  • When I open the word for mac, I could not see the Turkish characters. How can I fix it?

    When I open the word for mac, I could not see the Turkish characters. How can I fix it?

    Ask in the MS Office forums - http://answers.microsoft.com/en-us/mac.
    Good luck,
    Clinton

  • Everytime I use firefox to connect to the internet I get an alert saying that firefox could not initialize the applications security component. What does this mean and how do I fix it?

    When I use firefox to get on to the web I get the following message everytime: "Alert: Could not initialize the applications security component. The most likely cause is problems with files in your applications pforfile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security feactures." Once I click the "OK button" at the bottom of the alert box firefox starts but does not act right. For instance it will not let me look for software updates. When I click on "Check for Updates" from the "Help" drop down menu I get a message stating: "There were problems checking for, downloading, or installing this update. Firefox could not be updated because: Update XML file malformed (200). You can update firefox manually by visiting this link and downloading the latest version."

    The following support articles should help:
    * https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component
    * https://support.mozilla.com/kb/AUS+Update+XML+File+Malformed+200

  • Help I need help. i get this message'Firefox could not install this item because "install.rdf" (provided by the item) is not well-formed or does not exist. Please contact the author about this problem.' How do i fix this?

    Firefox could not install this item because "install.rdf" (provided by the item) is not well-formed or does not exist. Please contact the author about this problem.
    Well that is the message i get. I can still use firefox(version3.6.8)

    You get that error if an extension is using an old and no longer supported method to install a plugin.
    Which plugin are you trying to install?
    See also http://kb.mozillazine.org/Unable_to_install_themes_or_extensions

  • Could not find Simplified Chinese input method when using FormsCentral

    Hi
    When I creating files using FormsCentral, I could not find the input method of Simplified Chinese, therefore, the document I created look strange. The font is not what I wanted but I really could not find Simplified Chinese to edit the document.  Could anyone please show me how should I do it or where I can download the font pack?

    We currently do not support Chinese forms.
    Randy

  • Error messages saying FireFox cannot do Google friends on my blog. Error Message Oops! Firefox could not find r1rk9np7bpcsfoeekl0khkd2juj27q3o-a-fc-opensocial.goo

    Oops! Firefox could not find r1rk9np7bpcsfoeekl0khkd2juj27q3o-a-fc-opensocial.goo
    THis is the error message on ALL blogs I write on or view. My FireFox cannot find my google friends. the message says GOOGLE and then the words above, OOPS. Firefox could not find........
    HELP I have NO idea what to do. This is from how MY COMPUTER view blogs through Firefox for the past three weeks.

    A few other thoughts:
    (1) If you access Google in IE and click the padlock icon in the address bar to view the certificate, what do you find in the "Issued by" section as the issue? I have attached the info from Firefox for comparison; I don't have a modern version of IE on this PC.
    (2) Do recall changing any encryption-related settings, either through the Options dialog or using the about:config preferences editor?
    You could check for non-default settings as follows:
    (A) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (B) In the search box above the list, type or paste '''ssl''' and pause while the list is filtered
    If any of the preferences whose names start with network. or security. have been customized, they likely will be bolded and show "user set". Could you post those by right-click copying the preferences and then right-click pasting into a reply?

Maybe you are looking for

  • I am trying to restore my whatsapp messages that are saved in iCloud but I do not know how to get them back????

    I just want to see all my documents and date and everything else i have saved in icloud i go to icloud.com but i dont see messages or the whatsapp messages that is saved in icloud how can i do that??

  • Delete query not working ?

    hi all, this delete query is not working for me. Could you please help me and tell me ho to resolve this ? The error i get when executing this query is "ORA-00903: invalid table name". The table name is correct I fail to understand why does it show i

  • Large photo when people call

    I used to get a large photo in my screen when people called. Now it's a small round one. And I have the feeling that some old contacts still come up in big. How do i get all of them to show in the full screen when they call. I have an Iphone 5s

  • On Line Account 2 log ins

    Hello, Hope someone can help me-I have a BT account but 2 email addresses are registered to it so I can log on using 2 different email addresses and 2 different passwords-one was a work address and I no longer want emails going there telling people m

  • What kind of Intel Chip

    What kind of Intel chip is in the new MBP? The Penryn was in the last model, but no mention is given as to the chip in the new versions. The tech specs just say the newest Intel chips.