[mysql] Extra Characters Added

I've just switched to mySQL from Access. When I add a new
News Article to the site using my CMS extra characters are added to
the beginning of the "longtext" columns. You can see it here after
the published date.
http://www.ncadfed.org/news/?loc=news&n_id=24
Does anyone know how to stop this from happening.
I'm using CFMX6 and mySQL4
Thanks

I hope I don't have to do that as I'd have to switch 100
cfupdates and cfinserts. I'm on shared hosting so I have to use
mySQL 4 since that is all they offer at this time. I've sent the
following link to my host with no response, I'm hoping it will fix
it. I read in a post that it does.
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_18952
Its a hotfix for cfupdate and cfinsert.
Thanks

Similar Messages

  • Printing pdf - extra characters added

    When printing from a downloaded pdf to another pdf or to hardcopy on our HP printer, extra characters are being added.  For example, the letter "j" is being added to the end of every word in one italicized paragraph, while a ":" is being added to the end of every word in another italicized paragraph.  The problem does not occur for all italicized items or paragraphs, only some.  I'm using Acrobat Professional 8.1.4.  This problem does not occur when using Acrobat 5 (which we have on one computer here for various reasons).  I've tried optimizing and flattening but they seem to have no effect.  Any ideas?  (There is no way to access the original source document used to generate the original pdf - I have re-downloaded it with no change.)

    Try updating AA8. It is currently at AA8.2.3. May not solve the problem, but worth the try.

  • Add hyperlink in mail is adding extra characters to URL

    When I paste the add a hyperlink to a page called Recent News on my .mac site, extra characters are added to the url causing the page not to be found.
    "...Site/Recent%20News/D3A....html" becomes "...Site/Recent%2520News/D3A....html". I have no problem adding a hyperlink for my welcome page. Any ideas?

    I don't know how to fix it, but I can at least tell you what's happening. The "%20" is the encoding for a space character in a URL, " ". This is being turned into "%2520" because the "%" is being encoded as "%25" (the encoding for "%" in a URL), so "%20" is turning into "%2520".

  • Iweb adding extra characters - encoding as Latin-1 instead of UTF-8?

    mines.edu/academic/met/jip/
    Can't get the extra characters off this page. When you view source, it shows extra characters in. When page encoding is changed to UTF-8, works just fine. However, the school webmasters say it is not a problem on server side (not that I believe them). Any thoughts?

    However, the school webmasters say it is not a
    problem on server side
    They are wrong. The server is (mis)configured to force all browsers to use the wrong encoding for your page. They can correct that or someone can put an .htaccess file in your space as described in the link provided earlier.

  • Contacts notes still have extra characters

    No device
    I have a pre that's 2 yrs old.  I have been reading that the extra characters  < br / >  issue is known; in fact 2 other posts from 2010 were closed.  I still have this problem; I added a contact 10 minutes ago and notes still added extra characters.  The extra characters have never gone away since arriving a year (?) or more?  any help coming?

    Hmm...
    OK - I just went into icloud settings on my iphone and figured I would toggle off the notes, back out and then go back and toggle notes back on... this was the one set of data that wasn't critical if I list it. 
    Notes came back, reminders are now back and contacts are now back... Still would love to know why these all disappeared in the first place.  All seems to be back to normal though. 

  • Help with Scripting forms when additional characters added

    Hi,
    I am new to scripting in adobe professional, I thank anyone in advance for any advice or help they can give me.
    I am trying to use the calcuations within the forms that I am putting fields onto.  In the process I discovered that the program the forms are within are attaching a pipe and additional characters after the actual name that I have named them.  So, I am not able to use even the simple calculations within adobe to "sum" fields.   For example: I named the field "1_1Text" and this is what displays when you go into the calculations and pick the fields you want.  But the actual name is "1_1Text|1234567" so the calculations will not work.
    I take it then I need to use the advanced scripting but I am unsure of the format for a routine such as this.  I have a little knowledge of javascript but it has been awhile.  There must be a scan to find the pipe and then you should be able to chop off the extra characters since I will never know the characters the program adds on so then I can do calculations on these fields. Then you would have to put them into an array or something to save them?   Any help with a script or hints would surely be appreciated.
    Thanks!

    Could explain more fully how you are creating your forms and what programs you are using from the creation of the base document to which program and how you are adding fields.
    I think you are misunderstanding me.   I use Adobe Acrobat Professional 6.0.  I can get the calculations to work correctly if I use the form as it is after creating it. 
    But these forms are put into an SQL database and they get selected within a VB.net program or ASP.net program (both are used).  So these programs (VB.net or ASP.net) are adding the extra characters at the end, hence I do not know the names of the fields when the forms are being filled in.  So the calculations do not work with the "original names" that I created for the fields.
    I just figured if I created a routine that looped through and chopped off the extra characters these programs put on the end I would be able to do the calcuations and they would work.  I believe there is a substring operation within javascript.

  • Extra characters getting appended after decoding

    Hi All,
    I am trying to decode the special characters by using the following function
    public static String decode(String str) throws Exception
    byte[] b0 = new byte[str.length()];
    Pattern p = Pattern.compile(
    "\\G(?:=(\\p{XDigit}{2})|[\\p{Graph}\\p{Blank}&&[^=]])");
    Matcher m = p.matcher(str);
    int idx = 0;
    while (m.find())
    b0[idx++] = m.start(1) != -1
    ? (byte)(Integer.parseInt(m.group(1), 16))
    : (byte)m.group().charAt(0);
    // byte[] b1 = Arrays.copyOf(b0, idx);
    return new String(b0, "UTF-8");
    But if i decode "=C2=A365=20sheetal " to £65 sheetal..,the decode is proper but it is adding extra characters like £65 sheetal?????? at the end .
    How can i make my decode function not to add extra characters?OR HOW CAN I JUST SAVE "£65 sheetal " THIS VALUE??
    THANKX

    The problem got solved..,its decoding every extended bit values.
    The function was changed little bit.Array copy is done using for loop.
    public static String decode(String str) throws Exception
    byte[] b0 = new byte[str.length()];
    Pattern p = Pattern.compile(
    "\\G(?:=(\\p{XDigit}{2})|[\\p{Graph}\\p{Blank}&&^=])");
    Matcher m = p.matcher(str);
    int idx = 0;
    while (m.find())
    b0[idx++] = m.start(1) != -1
    ? (byte)(Integer.parseInt(m.group(1), 16))
    : (byte)m.group().charAt(0);
    // byte[] b1 = Arrays.copyOf(b0, idx);
    byte[] b1=new byte[idx];
    for(int i=0;i<idx;i++){
    b1=b0[i];
    return new String(b1, "UTF-8");
    Can any one say me,why euro symbol appears as ? in web-ui ,but it is saved in database as euro symbol itself?
    Thankx

  • Why does it say i have extra characters in this function?

    why does it say extra characters?
    1087: Syntax error: extra characters found after end of program.
    Symbol 12.addEventListener(MouseEvent.onRelease,exit);
    function exit(evt:MouseEvent):void {
        -root.nav_mc.gotoAndPlay(2);  
         -root.page1_mc.gotoAndPlay(30); 

    http://www.megaupload.com/?d=HYR51BPM
    that is the link to upload my website so far... i am following the tutorial from this site:
    http://www.flashvideotutorials.info/paidarea.html
    im on the adding pages 2 part, but he is using as 2 and im using as 3
    i cant figure out how to get the pages to work right.... please help me out
    thanks
    Kyle

  • Why is my Air Mac keyboard typing extra characters?

    Why is my MacBook Air kayboard adding extra characters as I type? It looks like this:
    W@hy6 i8s my6 MacBo9o9k Ai8r4 ke3y6bo9ar4d addi8ng e3xt5r4a char4act5e3r4s as I* t5y6pe3?

    Start up in Safe Mode.
    http://support.apple.com/kb/PH11212
    If this does not help, you have to take the computer to the Apple store to have it
    checked out.

  • Technical issue SAP F110 related issue. getting extra characters in outgoing file from sap.

    Hi Technical guru's,
    SAP system creating a outgoing file through F110- t-code, this outgoing file has extra characters (DOC.NO:)
    We need to remove these extra characters. Once Payment run has been carried out through F110, in SM37 in job spool it is showing like screen attached with name “file from sm37”.
    But when we look in to outgoing file directory extra characters as I mentioned above is appearing below is the related screen attached with name “out gooing file”.
    Gurus can anyone please suggest me where I can check about this. I have checked the program available in the job as well in the F110 transaction.But could not find any hint.
    Programs which I find in SM37.
    SAPF110S
    SAPFPAYM_SCHEDULE
    RFFOSE_B
    Programs which are available in F110.
    RFFOAVIS
    RFFOEDI1
    RFFOSE_B
    Does extra  characters coming through functional configuration (DME configuration) or coming through SAP standard programs.
    I am Technical person. I need to solve this issue guys please help me in this.
    If above information is not sufficient  let me know what are the other information should I provide.

    I didn't get any resolution so far also I can't convert into Adobe form because this is a production issue which should be fix by making the requied setting or changes in SAP script itself we can't go for new developmet for this isuue.

  • BUG: Extra characters at the end of attachment file names

    I received complaints that my attachments didn't open on the PC's of the recipients. After I saw the messages I noticed there were extra characters at the end of their file names. That's why they wouldn't open. When I looked into my sent mail folder it was there as well. The addition took place when I sent the mail, while composing everything looked fine. It took me a while to realize the pattern. There was one extra for every non-ASCII character in the file name.
    Apparently Mail.app is using two different libraries. The other one counts the non-ASCII characters as two while the other doesn't. I don't know whether Finder still uses MacRoman or Unicode, but this seems to relate to double-byte characters.
    The short term solution is to use only ASCII for file names, but that's not what OS X is all about.

    The class files are broken. Recompile them. If you're uploading them, doublecheck if the FTP program used doesn't do mad things with binary files.

  • **Error** Scene 1, Layer 'actions', Frame 1, Line 664: 1087: Syntax error: extra characters found after end of program.

    Scene 1, Layer 'actions', Frame 1, Line 664: 1087: Syntax
    error: extra characters found after end of program.
    I am new to importing classes and I have been practicing
    making a photo gallery. I am stuck and I want to know if someone
    can help me with the error I am getting.
    If it is convenient, you can download and test my .zip at
    www.dhtmlguy.freeservers.com
    Thanks in advance!

    thanks...the small stuff gets me every time.

  • Extra characters at end of line in spool file

    I am trying to generate csv files from SQL Developer using queries written to spool files.  I have embedded the queries and associated set commands in script files and call them, as advised elsewhere.  This gives csv files that look fine, with headings and data comma separated and enclosed with double quotes.  The problem is that the files seem to contain a lot of extra characters at the end of each line.  They seem to be spaces, but not sure.  This is causing problems for the person trying to load the data.
    I'm using version SQL Developer 3.1.07.42, Java 1.6.0_11.
    Any ideas on how to avoid the extra spaces appearing?  Thanks for any help.
    Ben.

    Jeff,
    The SQL in the script file is below.  To be honest, I have reduced it down to a simple select from dual and it still puts extra spaces at the end of the single line.
    col ord noprint
    spool test.csv
    SELECT  ' ' ord,
      'ZONE_ORDER_NUMBER'||','||
      'ZONE_NAME'||','||
      'ZONE_TYPE'||','||
      'DESCRIPTION'||','||
      'START_DATE'||','||
      'END_DATE'
    FROM dual
    UNION ALL
    SELECT zone_name ord,
      '"'||zone_order_number||'"'||','||
      '"'||zone_name||'"'||','||
      '"'||zone_type||'"'||','||
      '"'||description||'"'||','||
      '"'||TO_CHAR(start_date,'DD-MON-YY')||'"'||','||
      '"'||TO_CHAR(end_date,'DD-MON-YY')||'"'
    FROM zones
    ORDER BY ord;
    spool off

  • Convert PDF font ITCFranklinGothicStd-MdCd add extra characters with CR2008

    My customer has several reports that are used the ITCFranklinGothicStd-MdCd font.
    We've had some users tell us that their reports are showing extra characters - specifically, it inserts the letter "i" after every lower-case "f". For example, 'Ref.' becomes 'Refi' and 'For' becomes 'Fior' (there's no letter "i" inserted after the capital "F" - it only inserts after lower-case).
    We've determined that the problem is due to the fact that we're using the ITCFranklinGothicStd-MdCd font; if we use a different font, it works fine. Also, if the end-user copies text from the generated PDF and pastes it into another document, it renders the correct spelling. So for example if they copy "Fior" out of the PDF and paste it into Notepad, it shows "For" as it normally should.
    We cannot change the font, but we should solve the problem.
    Use Crystal Report 2008 and Adobe Acrobat 9.
    How can I solve?

    Hi Ivan,
    This seems like it's PDF issue. You said "So for example if they copy "Fior" out of the PDF and paste it into Notepad, it shows "For" as it normally should."
    This suggests to me that PDF is having problem rendering that font.
    Do they have a TTF version of that font?
    What happens if you export to Word format, do you see it correctly?
    You may want to post your question to Adobe's forum and possibly the the makers of the font also.
    Thank you
    Don

  • Hyperlinks created in CS6 introduce extra characters

    I've noticed that when I create hyperlinks in InDesign CS6 (v 8.0.1) it adds extra characters in the URL, thus breaking the link. For example [red highlights problem areas]...
    Correct hyperlink typed into InDesign:
    http://portfolio.epri.com/ProgramTab.aspx?sId=ENV&rId=220&pId=6931
    InDesign renders the URL this way:
    http://portfolio.epri.com/ProgramTab.aspx%3FsId%3DENV%26rId%3D220%26pId%3D6931
    This happens on both a Mac and a pc. I never experienced this problem in earlier versions of InDesign.
    I found an earlier discussion about this problem but it doesn't appear that Adobe has fixed it. A corrective script was offered by Laubender in that discussion. However, I create a lot of docs with a lot of links and would rather avoid that type of solution.
    Any suggestions would be much appreciated.

    Use laubender's script solution. It is the most straightforward fix.
    http://forums.adobe.com/message/4463255#4463255

Maybe you are looking for

  • My new WD hard drive is no longer able to boot. How do I fix this?

    I got a WD10EALX Cabiar Blue drive last week and copied my existing internal drive that had Tiger OSX on it. It booted fine until I copied an iphoto library from a friend's Mac and now this disk won't boot. I get the circle with the slash through it

  • PCI Signal Converter to USB/Firewire

    Greetings, Is anyone aware of a device that would allow me to continue using my Darla 24 PCI sound card by converting the PCI to a usable USB or Firewire signal? Is this even possible? I'm posting in this forum because I want to upgrade to a new Mac.

  • Problem with multiple inputs / sequential shaders in flash

    Hi, I'm working with pixelbender for the first time and having a little difficulty understanding a couple of things. The project is a little flash game with pixel art spaceships, and I've embedded a couple of pixelbender shaders into the swf. I'm wri

  • Re: Qosmio x770 - memory card reader - problem

    Hi! I want to know how to use correctly memory card slot. I put into it a memory stick pro duo. The card has been read correctly, but after that I had a huge problem with removing card from the slot. I had to use some tools to did it. What is wrong w

  • Contact Person on Vendor Master

    Hi Experts, I turned contact person as required on Vendor Master configuration.  However, it still doesn't show up on Vendor Master create/change/display.  Would you pls let me know what else I need to do to make this happen? On the general data sect