Help please with character sets

Hi,
I use GL CS2 just 4 times a year or so and that's why I'm not very good with it I suppose. Each time I have to relearn what I should be able to remember (something to do with advanced age I think).
I create a page of "newsletter" text, upload to the site then see that I have strange characters instead of " (quotes) - (dash) and so on. I'm sure the answer is in the way I have my Encoding set because I had it all working beautifully for the December issue but in March it's all gone whacky again.
Could someone please explain in short words to this numpty just what I should have these settings set to (and "why" if that won't confuse me more than I am already)?
I've been through the FAQ and done a search without succes so I turn now to the knowledgable who use this more often than I. Any help would be appreciated - thanks.
David

Hi David,<br /><br /> >>Len, how did you read the headers in your post? Is it likely that it <br />could change on the server without me knowing?<<<br /><br />There are a variety of Firefox addons that allow you to display the <br />response header from a server, such as LiveHTTPHeaders, but it is also <br />one of the dozens of things that the Web Developer addon supplies (which <br />is what I used).<br /><br />As to could it change, only if the httpd.conf file (or Apache2.conf for <br />Apache2) is changed on the server by adding an AddDefaultCharset line or <br />an AddCharset Line  to the <Ifmodule mod_mine.c> of the conf file.<br /><br />Here is the relevant section with Apache comments:<br /><br /><IfModule mod_mime.c><br />     #<br />     # Specify a default charset for all pages sent out. This is<br />     # always a good idea and opens the door for future internationalisation<br />     # of your web site, should you ever want it. Specifying it as<br />     # a default does little harm; as the standard dictates that a page<br />     # is in iso-8859-1 (latin1) unless specified otherwise i.e. you<br />     # are merely stating the obvious. There are also some security<br />     # reasons in browsers, related to javascript and URL parsing<br />     # which encourage you to always set a default char set.<br />     #<br />     #AddDefaultCharset ISO-8859-1<br /><br />Now, provided there is also an entry of AddCharset UTF-8, if your page <br />states UTF-8 then the server shouldn't overide that, even if the default <br />charset is set.

Similar Messages

  • Help please with FaceTime. The built in app seems to have disappeared from my iPad2. Bought it in Australia

    Help please with FaceTime. My built in app seems to have disappeared.

    If K Penguin's suggestion doesnt work, you will have to go to you iTunes and do a reset, that is if you do not have it in your back up library.

  • Little help please with forwarding traffic to proxy server!

    hi all, little help please with this error message
    i got this when i ran my code and requested only the home page of the google at my client side !!
    GET / HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    Accept-Language: en-us
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 2.0.50727)
    Host: www.google.com
    Connection: Keep-Alive
    Cookie: PREF=ID=a21457942a93fc67:TB=2:TM=1212883502:LM=1213187620:GM=1:S=H1BYeDQt9622ONKF
    HTTP/1.0 200 OK
    Cache-Control: private, max-age=0
    Date: Fri, 20 Jun 2008 22:43:15 GMT
    Expires: -1
    Content-Type: text/html; charset=UTF-8
    Content-Encoding: gzip
    Server: gws
    Content-Length: 2649
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: MISS from linux-e6p8:3128
    Via: 1.0
    Connection: keep-alive
    GET /8SE/11?MI=32d919696b43409cb90ec369fe7aab75&LV=3.1.0.146&AG=T14050&IS=0000&TE=1&TV=tmen-us%7Cts20080620224324%7Crf0%7Csq38%7Cwi133526%7Ceuhttp%3A%2F%2Fwww.google.com%2F HTTP/1.1
    User-Agent: MSN_SL/3.1 Microsoft-Windows/5.1
    Host: g.ceipmsn.com
    HTTP/1.0 403 Forbidden
    Server: squid/2.6.STABLE5
    Date: Sat, 21 Jun 2008 01:46:26 GMT
    Content-Type: text/html
    Content-Length: 1066
    Expires: Sat, 21 Jun 2008 01:46:26 GMT
    X-Squid-Error: ERR_ACCESS_DENIED 0
    X-Cache: MISS from linux-e6p8
    X-Cache-Lookup: NONE from linux-e6p8:3128
    Via: 1.0
    Connection: close
    java.net.SocketException: Broken pipe // this is the error message
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:115)
    at java.io.DataOutputStream.writeBytes(DataOutputStream.java:259)
    at SimpleHttpHandler.run(Test77.java:61)
    at java.lang.Thread.run(Thread.java:595)
    at Test77.main(Test77.java:13)

    please could just tell me what is wrong with my code ! this is the last idea in my G.p and am havin difficulties with that cuz this is the first time dealin with java :( the purpose of my code to forward the http traffic from client to Squid server ( proxy server ) then forward the response from squid server to the clients !
    thanx a lot,
    this is my code :
    import java.io.*;
    import java.net.*;
    public class Test7 {
    public static void main(String[] args) {
    try {
    ServerSocket serverSocket = new ServerSocket(1416);
    while(true){
    System.out.println("Waiting for request");
    Socket socket = serverSocket.accept();
    new Thread(new SimpleHttpHandler(socket)).run();
    socket.close();
    catch (Exception e) {
    e.printStackTrace();
    class SimpleHttpHandler implements Runnable{
    private final static String CLRF = "\r\n";
    private Socket client;
    private DataOutputStream writer;
    private DataOutputStream writer2;
    private BufferedReader reader;
    private BufferedReader reader2;
    public SimpleHttpHandler(Socket client){
    this.client = client;
    public void run(){
    try{
    this.reader = new BufferedReader(
    new InputStreamReader(
    this.client.getInputStream()
    InetAddress ipp=InetAddress.getByName("192.168.6.29"); \\ my squid server
    System.out.println(ipp);
    StringBuffer buffer = new StringBuffer();
    Socket ss=new Socket(ipp,3128);
    this.writer= new DataOutputStream(ss.getOutputStream());
    writer.writeBytes(this.read());
    this.reader2 = new BufferedReader(
    new InputStreamReader(
    ss.getInputStream()
    this.writer2= new DataOutputStream(this.client.getOutputStream());
    writer2.writeBytes(this.read2());
    this.writer2.close();
    this.writer.close();
    this.reader.close();
    this.reader2.close();
    this.client.close();
    catch(Exception e){
    e.printStackTrace();
    private String read() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    private String read2() throws IOException{
    String in = "";
    StringBuffer buffer = new StringBuffer();
    while(!(in = this.reader2.readLine()).trim().equals("")){
    buffer.append(in + "\n");
    System.out.println(buffer.toString());
    return buffer.toString();
    Edited by: Tareq85 on Jun 20, 2008 5:22 PM

  • Problem with character set - Reports 11.1.1.4

    Hi!
    I have a problem with Oracle Reports 11g regarding character set configuration. The default character set WE8ISO8859P1 works, so PDF reports have a regular display except for Eastern European (EE) letters which are replaced by "¿" sign.
    So, when I set any other character set in reports.sh, which would be a normal step to get EE letters, I'm always getting Greek Alphabet in PDF reports. Why Greek Alphabet?
    The character sets I tried to use are: EE8ISO8859P2, UTF8 and AL32UTF8.
    I changed uifont.ali and included PDF Subset with all four Arial font variants and, of course, I placed all fonts in fonts folder which is pointed by REPORTS_FONT_DIRECTORY.
    In Reports Builder everything works fine, but when I have to deploy the report to the Reports Services, the problem occurs.
    Also, when I've tried to execute PDF report using In-Process Reports Server (rep_wls_reports_hostnameasinst1) instead of AS Instance Reports Server (RptSvr_hostnameasinst1, which is a regular server), I'm getting Greek Alphabet in PDF reports even if the default character set is WE8ISO8859P1 in reports.sh. What is wrong with it? Where is Greek Alphabet configured?
    The production environment is 64-bit Oracle Linux 5.6 with Weblogic 10.3.4 and Forms&Reports 11.1.1.4. Forms works fine with character set EE8ISO8859P2 defined in default.env file.
    Thanks in advance!
    Regards,
    Dejan

    Thank you, Denis!
    Doc 300416.1 was very useful but Note 356221.1 - A Practical Methodology on Porting Reports from Windows to Unix with Different Font is actually crucial for configuring Reports on Linux.
    Also, there is a bug in 11.1.1.3 and 11.1.1.4, which can be fixed using the patch ( Note 1138405.1 - PDF Reports With Font Subsetting Raises Error "Bad /Bbox" on 64-Bit Linux ).
    Kind regards!

  • Can anyone help please with my Time Machine, I have been getting the following message The backup disk image "/Volumes/Mac Backup/Stephen Smith's iMac.sparsebundle" is already in use.

    Can anyone help please with my Time Machine, I have been getting the following message The backup disk image “/Volumes/Mac Backup/Stephen Smith’s iMac.sparsebundle” is already in use.

    See > http://pondini.org/TM/C12.html

  • Help please with 2006 Macbook 13inch, for tv hook up.

    Help please with 2006 Macbook 13inch, to hook up to tv for streaming. The display works through VGA but the audio isn't working. Got a plug that goes into headphone jack on computer and connects into the audio jack on the back of tv but no sound. I'm not quite sure what the issue is, whether its the wrong plug, the tv, or the computer. Best Buy says this is the right plug and it seems that it would be, but who knows. If anyone has any experience in this, I would appreciate the help!

    Make sure those audio plugs are matched with the VGA plug. With your MacBook running something with audio switch between your sources on the TV Component, Composite and such. See if the sound is coming from another source. If so then you've got your audio plugs in the wrong jacks.
    Also could you post the make and model number of your TV.

  • Help Please with Driver

    I need to install the ADB Interface for the X2 onto my computer. Does any one know how or where I can get this driver?

    <Duplicate post.  Please see Help Please with Driver  for any replies.  This post will be closed.>

  • Problem with character set UTF-16 LE

    Hello.
    There were difficulties with character set change, using function convert ()
    The matter is that in the list v$nls_valid_values the character set AL16UTF16LE does not appear, during too time the inquiry is successfully carried out
    convert ([some-national-characters], ' CL8MSWIN1251 ', ' AL16UTF16LE ').
    But at giving on an input of the data stored in CLOB, there is an error "a character set is not supported"
    What are possible ways of the decision of a problem?

    You can try to use DBMS_LOB. SUBSTR to access LOB data like in the following example:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    SQL> declare
      2  v_i clob;
      3  v_o clob;
      4  begin
      5  v_i := 'a';
      6  v_o:=convert(dbms_lob.substr(v_i,1,1),'AL16UTF16LE', 'CL8MSWIN1251');
      7  end;
      8  /
    PL/SQL procedure successfully completed.

  • Help please with setting volume

    I have the new 4.5 os now my phone virbrates and the ringer sound is very low and only rings once and phone virbrates 6-7 time.
    Please help me change the setting on the ringer so I can hear the ringer and turn down the number of virbration.
    Thank you.
    massedixs

    Normally they do work but the N96's v10.065 firmware has a bug in it that prevented them from working.
    The bug was fixed in the newer v11.018 and v11.101 firmwares.
    You can check for an update here:
    www.nokia.com/softwareupdate
    If you have a network branded phone the update won't be available to you until the network approves it.

  • Can a db with character set UTF8 be restored to AL32UTF8?

    Hello Everyone,
    Good Day.
    Our present production and non-production databases are configured with NLS_CHARACTERSET as UTF8. However, as we are in the process of migrating to a new server, we intend to configure the new databases with NLS_CHARACTERSET as AL32UTF8 (which is the recommended option as per our research. Moreover, came to know that for Weblogic schemas and repositories to work, NLS_CHARACTERSET must be AL32UTF8).
    As we would be restoring from a backup to the new instance created on the new server, kindly help us understand if any issues might arise while restoring due to both being different charactersets?
    Warm Regards,
    Vikram.

    Hi Robin,
    Thank you for the update. Our DB is too huge and contains many schemas to try for a data pump. Hence we had planned for a restoration which might be simpler task with lesser downtime.
    Perhaps, one option would be to create the instances with UTF character set itself and then change it once the migration activity has been completed.
    Also, could you please throw some light on the two character sets as to which one is better and why?
    Warm Regards,
    Vikram.

  • Problem with Character Set in Oracle database 10g

    Hi,
    I tried to import one tablespace into test server. Source server with Oracle 8i and Target server with Oracle database 10g. The error I get is
    Import: Release 10.2.0.1.0 - Production on Thu Aug 3 00:20:49 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Username: sys as sysdba
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V08.01.07 via conventional path
    About to import transportable tablespace(s) metadata...
    import done in WE8DEC character set and AL16UTF16 NCHAR character set
    export server uses WE8DEC NCHAR character set (possible ncharset conversion)
    . importing SYS's objects into SYS
    . importing SYS's objects into SYS
    IMP-00017: following statement failed with ORACLE error 19736:
    "BEGIN sys.dbms_plugts.beginImport ('8.1.7.4.0',2,'2',NULL,'NULL',67051,25"
    "51,2); END;"
    IMP-00003: ORACLE error 19736 encountered
    ORA-19736: can not plug a tablespace into a database using a different national character set
    ORA-06512: at "SYS.DBMS_PLUGTS", line 2386
    ORA-06512: at "SYS.DBMS_PLUGTS", line 1946
    ORA-06512: at line 1
    IMP-00000: Import terminated unsuccessfully
    PLZ somebody help in geting resolve this. Has anybody seen this error before.

    The solution to this problem is described in MetaLink note #211920.1. But this note is published with LIMITED access as it involves using a hidden parameter.
    You can get access to the note through Oracle Support only.
    The problem itself is solved generically, if the source database is at least 10.1.0.3 and the target database is 10.2
    -- Sergiusz

  • Need help please with a recent line repair

    to cut a very long story i lost my phone line completely 8 days ago i reported it to my ISP and after 5 days i got it back... now they had to replace the cable running from the telegraph pole to my house for some reason thats where the fault was i thought great well done... couldnt wait to get home and get back on the net .... but to my horror it was so slow taking about 1-2 mins for a page to open and its still pritty poor now takes about 30 secs to 1 minute for a web page to open...been intouch with my ISP im having no joy telling me its all fine nothing wrong i done tests and this and that with them and they seem happy with my connection and speed ...but im telling them that before the repair i was getting between 2.8 and 3.2 MB now im lucky to be getting 1 MB ...one guy even said he couldnt understand why im not happy with the service ...now there telling my its my profile through the line has been changed and ill have to wait for 10 days and checking and testing and doing things over and over again and segesting its my computer and set up ect ...
    i have been at this for a week now what can i do ??? please someone help is it the new line or is it my ISP ??
    but i keep telling them it was all fine before and theres nothing wrong with my set up or my computer because the lap top is the same with the Ethernet cable plugged in so they both cant be the problem ..i have had them both checked at a cost of £65 with a computer tech guy at the shop he said they are clean and healthy systems ! 

    Hi Tony,
    There is a peice of equipment within the exchange which 'optimises' the speed of the broadband based on what the line is capable of. When you have had the recent fault on the line it is likely this equipment picked up the fact that the line wasnt capable of the speeds you were getting and has 'restricted' the speed to give you a stable connection.
    The equipment is there to try and offer you a stable connection for your Broadband (better to have a slowwer speed all the time than a super fast speed for 5 minutes of the day).
    Unfortunalty this can be 'confused' when you have a fault on the line and reduce your speed to compensate for the bad line. It should automatically 'optomise' the speed over a 10 day period and the problem should sort it self out.
    You can request your ISP to check this and make sure your line is set up corrcetly after the recent fault, but to be honest it can easier to wait the 10 days (as it is likely the people you speak to are not fully aware of this part of the line/Broadband or willing to help)
    It is also possible that the repair has had a negative affect on what the line can suppport (this can happen but unlikely to decrease your speed by something which you would notice) and the only soultion for this is to speak to your isp (if they are happy with the speed you are now getting you might not have much luck).
    It sounds like your ISP aren'y very helpful and have 'fobbed you off' for the ten days with out just telling you why, if it was me at this point I would consider an alternative ISP.
    Hope that atleast explains why they told you to wait ten days. :-)

  • Help please with my navigation buttons

    Can anyone please help me with my vertical navigation buttons. I'm trying to set up my nav bar so that all the buttons have a background image (button.jpg) behind them at all times and the only thing that changes when touched or the mouse rolls over them is that the colour of the text changes, except when the sub buttons appear, because the name of some of the sub buttons are so long i have created another button image that is longer (button2.jpg), i only want this to appear on sub buttons otherwise the buttons will end up taking most of the pages space. I'm having great difficulties getting the sub buttons to appear with the correct image (button2.jpg) and am getting increasingly frustrated with it, can anyone please help!!!
    www.milesfunerals.com/index2.html

    index2.html is a broken link for sure. The main index page looks like it's working fine.
    A little styling critique if it's okay... Personally I'd have gone with a CSS or Javascript multi-level menu across the bottom of the header. Saves visitors from having to scroll all the way down the page to see every menu item. And I'd rethink the color of the "Miles & Daughters" in the header image. It kinda gets lost in the roses.
    If you have a link to the "broken" page please put it up so we can analyze it.

  • Imp fails with character set marker unknown

    Hi All,
    I'm trying to import a dump that was done in WE8ISO8859P1 with Oracle 9i 9.2.0.5.0 into the Western European XE version on Windows XP Professional SP2.
    I get an IMP-00037 Character set marker unknown error
    I've tried setting NLS_LANG to American_UNITED KINGDOM.WE8ISO8859P1 but the same result. Obviously I'm just a novice but you've to start somewhere right, any help appreciated

    Setting NLS_LANG to either character set should be fine. WE8MSWIN1252 is a superset of WE8ISO8859P1 ( http://aswan.gatech.edu/docs/oracle/10g/server.101/b10749/applocal.htm#636814 ) .
    From the docs:
    There are two character set conversions when you Import a dump file. The first one is performed by Import executable from the character set of the dump file (which is equal to NLS_LANG of Export session) to the character set of NLS_LANG of the Import session. The second conversion from the Import NLS_LANG to the database character set is performed by SQL*Net.
    Here is more information in the docs:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm#i1021901
    ~Dietmar.

  • Help please with Mail attachements

    Can anyone help please. When I send an email with an attachment such as a jpeg to a Windows user the recipient complains that the attachment is embedded in the email and can not be extracted to forward, or print for example. I end up having to use Entourage for Mac to send attachments which works for them but is a pain to me.
    What do I need to do to have truly Windows Friendly attachments?
    Thanks in anticipation.

    When a PC Outlook user gets a jpg you have attached, even clicking USE WINDOWS FRIENDLY ATTACHMENTS will not alter it. We've done several experiments here and it seems that if you select USE RICH TEXT for formatting in mail preferences MAIL determines that you want to imbed the graphic rather than attach it. If you select use plain text, the jpg will attach properly, but you lose any HTML signatures you have set up, which is a problem for me.
    If a yahoo mail is sent from the Mail client, it automatically changes to plain text.
    I like Mac Mail, but I want control over how the attachments are sent, so I can have my jpg not imbedded and my HTML signature.
    Nancy

Maybe you are looking for

  • How can I unlock numerous files at the same time (i.e. photos) so I can make changes (rotate etc)?

    Im using Lion on a MacBook Pro 15in (just under two years old) and I would like to know if I can lock numerous photo files at the same time so I can make changes to them. At the moment when I select an entire folder to go through and make changes, ie

  • Error while reading data from MapMessage using MDB

    Hi, I have written a small client program to send a message to a queue and an MDB receives the message in the onMessage() method. The message is of type MapMessage. I set key value pairs and send the message in a queue. When I try to read data from M

  • Radeon Early KMS Fails with Linux LTS

    Upgraded to linux-lts 3.0.72-1 yesterday. Kernel now hangs for 60 seconds during the KMS switch with the following error messages (with both the main initramfs and the fallback): [ 61.120047] r600_cp: Failed to load firmware "radeon/REDWOOD_pfp.bin"

  • Can't shutdown or resart after 10.5.7

    When doing restart or shutdown it just sits there thinking spinning the wheel. I then have to hold down power button to do a hard shutdown. Anyone else have this issue and know the fix?

  • IMac early 2008 occasional screen flicker with external monitor

    I am experiencing flickering with my early 2008 iMac when driving an external monitor. My Thinkpad is flawless when pushing out to the monitor. It will be fine, but occassionaly (every 5-20seconds) the screen gives a little flicker, about 1/4 of a se