YouTube app don't accept special character like '&' in field password

Like the subject... I link my YouTube account with Google account and when i login i get incorrect login. I change my Google password deleting character '&' and now login work. Please fix this bug.
Thank's

It'a know bug? Or doesn't work only for me???

Similar Messages

  • On the JTextPane need to don't print special character .........

    Hello All,
    I work on JTextPane , and want to don't print special character when the user press on this the JTextPane ,like "a" character,
    the application will test is this character is "a" or "A" , it won't print the character , else print it , So how can i do that code.??
    Thanks.

    There are other ways, but the best is probably to use a documentFilter.
    The Java Tutorials: [Implementing a Document Filter|http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html#filter]
    luck, db

  • How to Insert special character like 'Б б В в Г Д  ж Ğ ğ € ₧ š Ž ž'

    Hi All,
    My database NLS_CHARACTERSET is ABLAUT and my sql client setting is AMERICAN_AMERICA.AL32UTF8.
    when i try to insert the special character like 'Б б В в Г Д ж Ğ ğ € ₧ š Ž ž' in oracle it shows question mark or square box
    can any one help me how to insert the above character and view the same in database while retrieving.
    Thanks in advance.
    By
    Chells

    I'm not sure.
    Perhaps UNISTR() or TO_NCHAR() will be helpful.
    select level, unistr(concat('\', TO_CHAR(Level, 'FM000X'))) from dual connect by level < 300;

  • Why the SAX parser cannot support the special character like "¡"

    I do not understand why the SAX parser cannot support the special character like &iexcl; but it can replace the &quot; &amp; &lt; &gt;   to ", &, <, >, ,, but other characters will be replaced to empty charater.
    can somebody give me any suggestions or solutions. THX.
    Edited by: 844086 on 2011-3-14 上午2:27
    Edited by: 844086 on 2011-3-14 上午2:27

    I quote:
    Alternatively implement an EntityResolver that resolves the desired escapes.You are again an example that people only read/register the first thing written in a post.

  • Uploading file with special character like ( # , $ or any other special ch)

    Hi All,
    This perform statements then uploads the file from UNIX. Because of the special character in the file this  program fails.
    Please let me resulation as soon as possible .
    Thanks,
    Madhav

    Hi
    Good
    Check the below sdn post on special character.
    https://forums.sdn.sap.com/profile.jspa?userID=3649609
    Thanks
    mrutyun^

  • DIS PDF with special Character like cyrillic or chinese

    Hello,
    does anybody know how I can solve my Problem with PDF-Documents with Special Character which are Checked In (Tcode CV02N)
    If I want to open the file again, it will be downloaded to
    C:\Users\....\AppData\Local\SAP\SAPGUI\tmp\####
    and not with the Special characters.... so SAP says
    File
    C:\.......
    could not be accessed
    So is there any flag to set in the customizing that the downloaded file will be with the correct Name or any note?
    (Our System is a Unicode System)
    (my Laptop has all the Windows updates including the language packages for Russia and China)
    Thanks in advance
    Stephan

    Hello,
    the SAPhttp.exe is in the Folder:
    C:\Program Files (x86)\SAP\FrontEnd\SAPgui\Unicode
    on my laptop
    therefore I think it should be the Unicode Version?

  • Is spacebar considered to be a special character when creating a password?

    Hi !
    I would like to know if spacebar is a special character when it comes to creating a password.

    I have complexity enabled but my system will no longer accept a PW using spaces as special characters. Did something change recently? It worked a little more than a month ago for my account.
    A test example PW I've tried is   
    My name is Bill
    If I add a number or punctuation to this phrase it works. It should have exceeded all my requirements as originally entered though.

  • Special Character in Subject Field of Discussion Forum

    I am creating a new discussion, in the subject when i enter "Portal Discussion?" then it gives error that special character is not allowed. But i want to use the "?" in the subject at the time of creation.
    After creating the discussion i can edit the same thing with special characters, then why SharePoint is not allowing to enter special character at the time of creation.

    Hi 
    Refer this link
    http://social.technet.microsoft.com/Forums/office/en-US/6e7a7eae-26fc-467f-bfdc-7c5d5ff49a95/discussion-forum-storing-special-character-in-title-differently?forum=sharepointdevelopmentlegacy
    It seems that SharePoint will allow the Title of the discussion board to remain with the special characters, but the actual URL will not be allowed and will strip them from the final URL.  SharePoint Manager easily shows this, btw.
    So, there are probably many different ways to get what you are looking for, but one way could be to have a Linq query look for all Discussion Boards on a given site and then return the Title and the DefaultViewUrl, which the latter could then be prefixed by
    the SPWeb.Url to give you something like "Testing? , /" for the title and http://mysite/Lists/Testing/AllItems.aspx (assuming
    that is the actual default view) which you could then use as the final URL for your hyperlink in your web part.
    In the code snippet below you can see the Linq query (which I assumed from your post that you need to query to find the Discussion Boards) and a simple DataTable that you could then use to populate a repeater or you just omit the DataTable and
    enumerate the results from the query yourself:
    var linqResults
    = from list in oSPWeb.Lists.Cast<SPList>() where list.BaseTemplate
    == SPListTemplateType.DiscussionBoardselect list;
    DataTable oDataTable
    = new DataTable();
    DataColumn oDataColumn_Title
    = new DataColumn("Title", typeof(string));
    oDataTable.Columns.Add(oDataColumn_Title);
    DataColumn oDataColumn_URL
    = new DataColumn("URL", typeof(string));
    oDataTable.Columns.Add(oDataColumn_URL);
    foreach (SPList oSPList in linqResults)
    DataRow oDataRow
    = oDataTable.NewRow();
    oDataRow[
    "Title"]
    = oSPList.Title.ToString();
    oDataRow[
    "URL"]
    = oSPWeb.Url + oSPList.DefaultViewUrl.ToString();
    oDataTable.Rows.Add(oDataRow);
    oDataTable.AcceptChanges();
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • LR 2 - special character in caption field

    I'm using LR 2.6 and a custom template to generate a flash gallery.
    The problem is my language which is Norwegian and contains characters like æøå and these behave strange when creating a web gallery.
    In the library the caption field looks ok, but when exported to web, they make an extra whitespace and that's annoying.
    I've looked into the xml file and can't see any whitespace there, so probably the problem appears when the swf file is created.
    How do I control the output in the caption field when using special characters?
    I've tried to change the encoding in the group.xml file, but it doesn't help. Also tried using entities for the characters such as &#229; and &aring;, it didn't help either.
    //kfinsrud

    Hi 
    Refer this link
    http://social.technet.microsoft.com/Forums/office/en-US/6e7a7eae-26fc-467f-bfdc-7c5d5ff49a95/discussion-forum-storing-special-character-in-title-differently?forum=sharepointdevelopmentlegacy
    It seems that SharePoint will allow the Title of the discussion board to remain with the special characters, but the actual URL will not be allowed and will strip them from the final URL.  SharePoint Manager easily shows this, btw.
    So, there are probably many different ways to get what you are looking for, but one way could be to have a Linq query look for all Discussion Boards on a given site and then return the Title and the DefaultViewUrl, which the latter could then be prefixed by
    the SPWeb.Url to give you something like "Testing? , /" for the title and http://mysite/Lists/Testing/AllItems.aspx (assuming
    that is the actual default view) which you could then use as the final URL for your hyperlink in your web part.
    In the code snippet below you can see the Linq query (which I assumed from your post that you need to query to find the Discussion Boards) and a simple DataTable that you could then use to populate a repeater or you just omit the DataTable and
    enumerate the results from the query yourself:
    var linqResults
    = from list in oSPWeb.Lists.Cast<SPList>() where list.BaseTemplate
    == SPListTemplateType.DiscussionBoardselect list;
    DataTable oDataTable
    = new DataTable();
    DataColumn oDataColumn_Title
    = new DataColumn("Title", typeof(string));
    oDataTable.Columns.Add(oDataColumn_Title);
    DataColumn oDataColumn_URL
    = new DataColumn("URL", typeof(string));
    oDataTable.Columns.Add(oDataColumn_URL);
    foreach (SPList oSPList in linqResults)
    DataRow oDataRow
    = oDataTable.NewRow();
    oDataRow[
    "Title"]
    = oSPList.Title.ToString();
    oDataRow[
    "URL"]
    = oSPWeb.Url + oSPList.DefaultViewUrl.ToString();
    oDataTable.Rows.Add(oDataRow);
    oDataTable.AcceptChanges();
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • I have Lion on my Mac ProBook.  Using Pages "09 4.1 I can't get special character like "Emoji" to work!  Punctuation, arrows, etc work fine.

    Why does Pages '09 Version 4.1 offer "special characters" when many are NOT SUPPORTED (according to the user guide) when I try to insert one into my text?  My son-in-law is a zombie freak.  A picture of a skull looks like it should be available in the "Emoji" section; but it will not, nor will any other emticon, consent to showing up in my text!          < And this is all I can get on this site!  The angry face wouldn't budge!     I can get all the arrows, monetary symbols, upsidedown ? and tilde n's  to last a lifetime.
    For now I all I want from Santa is a skull, a puppy and maybe a dinosaur ..... the last 2 are for grandkids!

    Jan
    These are two entirely different things. The "Special Characters" are Unicode characters in fonts.
    Emoticons and Emoji are substituted icons for certain typed combinations like : ) , : ( . This is a software trick.
    If you want the actual little pictures just go to the various websites where they are available and copy paste or drag them into Pages like any other graphic.
    http://www.bandoo.com/?ad=153
    Recently emoji have been added to the Unicode set:
    http://en.wikipedia.org/wiki/Emoji
    But you need to find a font that actually includes them as glyphs. This is the only one I can find and don't know if it meets your needs:
    http://www.users.globalnet.co.uk/~ngo/EMOJI001.TTF
    Emoticons and Emoji are common for browsers and email where such indicators of otherwise hard to tell facial expresions are useful. Such usage in a Word Processor or DTP application is very much a minority usage and perfectly met by simple imported graphics.
    Peter
    PS How do you not get these emoticons:

  • How to insert special character like trademark and registered mark.

    I have tried using prepared statment, but characters like � (registered mark) are not inserted properly, in fact i tried using some debug statements before inserting. the data that is coming from html form fields it self shows that � - such characters are converted to ? . So on consol instead of � i see ?. How do I make sure that data passing from html form will pass � in a right manner and not ?. Also how do i insert these symbols in database

    What database are you using, and what is the character set use for storage in that database?
    What character set is your HTML page using?
    You may have a character set mismatch somewhere. The registered symbol � is character 174 in Unicode and LATIN-1, so it cannot be displayed using just the ASCII character set.
    If you have the character in a java String, it should be passed to the database properly with a PreparedStatement. Strings are Unicode in java.
    Scott
    http://www.swiftradius.com

  • Entering a special character like a colon (:) in textarea field

    Hi,
    I am getting an error like the one below when entering a colon (:) in my textarea field. The error shows when the page submits but it does not branch to the next page where I wanted to go, but the database gets updated fine it's only the branching to another page. I know that I have to include the items between \item\ backslashes to include all charcter when I branch to another page on the application. Can someone tell me why I am getting this error. I appreciate any help. Thank you.
    This is the error I get when I try to branch to another page on the application.
    Bad Request
    Your browser sent a request that this server could not understand.
    mod_plsql: /pls/apex/f HTTP-400 Missing '=' in query string or post form

    What charset are you using ?? (Judging frome you question its not utf-8)
    If your pages charset/encoding not i utf-8 you have to use alpha codes to make special careters
    If it is utf-8 you can simply write the special carecters.
    To set the pages to utf-8 charset/encoding go to file>document encoding (You can also set the charset/encoding when crating new pages)
    to use/write special carecters in non utf-pages you have to use alpha codes When writing in the codeview
    the copyrightsign alphacode is & copy; or & #169; (without space)
    When writing in layoutview GL shud translate the carecters to alphacode, if not go to codeview and rewrite them to alphacodes
    You find the alpha dodes here
    http://www.visibone.com/htmlref/char/ceralpha.htm

  • Problem with special character like u00E5,u00E4 u00F6 in Sender JMS Adapter

    Hi,
    Problem:
    Sender JMS Adapter has transformation error when the file includes western european characters such as å,ä ö. And because of this reason the data is not picked up by adapter.
    The scenrio is JMS --- > XI ---> Proxy.
    If the file does not include the western European characters then it is working fine, but when the file include the western european characters such as å, ä, ö so got the error.
    Our Efforts:
    We have tried ISO8859-1 in JMS Module Tab as shown below.
    1. Transfer.ContentType text/xml;charset=ISO-8859-1
        AND with this also
    2. Transfer.ContentType application/coctet-stream;charset=ISO-8859-1
    None of them working.
    Error In CC:
    In Sender CC monitoring we are getting the below error.
    Error while processing message 'aa157082-b064-4421-0fc3-c286d2732093'; detailed error description: com.sap.aii.adapter.jms.api.channel.filter.MessageFilterException: Error converting Message: sun.io.MalformedInputException: TransformException: Error converting Message: 'sun.io.MalformedInputException' at com.sap.aii.adapter.jms.core.channel.filter.SendToModuleProcessorFilter.filter(SendToModuleProcessorFilter.java(Compiled Code)) ...
    Any suggestion in this regard will be a great help.
    Regards,
    Sarvesh

    > I think you have to figure out first, which codepage you really have, not just try. Maybe you ask someone or you check with a hex editor.
    Hi Stefan,
    Finally we solved the problem.
    As you said above to figure the the codepage, we asked to our MQ team for the same and found that they are using ISO-8859-1. In XI we were also trying with multiple conbinations (ISO-8859-1, UTF-8 and many more), but didn't get any success.
    Finally MQ team changed their encoding to UTF-8 and in XI we used ISO-8859-1 and we get the success in picking the data with spl char. Even though in XI the spl char comes in destorted order but at the receiver end they are in proper shape.
    Thanks a lot for your help.
    Regards,
    Sarvesh

  • Inserting special character like apostrophes with PHP/Mysql

    Hi friends,
    I have a problem with php/mysql. I have created a form inton a php page with dreamweaver and when i try to fill the form with a string containing apostrophe ( ' ), i have a error. It seems that the insertion is not possible. Could you have any idea for that. I give you the php dreamweaver code and thank you for your help.
    <?php require_once('Connections/Mainconnect.php'); ?>
    <?php require_once('Zend/Date.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
    if ($theValue=="")
        $theValue="NULL";
    else
        $zendDate=new Zend_Date($theValue,"dd/MM/yyyy");
        $theValue="'".$zendDate->toString("yyyy-MM-dd")."'";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
      $updateSQL = sprintf("UPDATE pers_soc_reg SET field1=%s, field2=%s,
                           GetSQLValueString($_POST['field1'], "text"),
                           GetSQLValueString($_POST['field2'], "double"));

    "Normally, you canot use mysql_real_escape_string without connection to database"
    That is not true at all. Try running the following script.
    <?php
    if ($_POST['submit']){
    $x1=$_POST['test1'];
    foreach ($_POST as $key => $value) {
    if (!is_array($value)){
    $_POST[$key] = mysql_real_escape_string($value);
    extract($_POST);
    echo "The text after 'becomes' should be escaped (\')<br/>";
    echo "$x1 becomes $test1<br/>";
    ?>
    <hr/>
      <form action="#" method="post" />
    Enter some text, including an apostrophe: <input name="test1" type="text"><br/>
        <p><input name="submit" value="submit" type="submit"/>
      </form>

  • How do I create a connection with a special character (!) in the password ?

    Oracle 11.2.0.3 EE on Solaris
    SQL*Developer 3.1.0.6 on Windows 7
    Due to security requirements our passwords contain an exclamation mark (!) but I can't get SQL*Developer to recognize it.
    I've tried to put it in quotes, escaping it and even swearing at it but to no avail.
    I get the famous ORA-1017-Invalid username/password
    It seems to be no trouble for TOAD!!
    Many thanks!
    -gary

    The solution has been found!!
    I finally saw a error in the message tab at the bottom of the screen: error 108 o.jdbc.driver.OracleDriver Error while registering Oracle JDBC Diagnosability MBean.
    According to Oracle Support Note:469494.1 I had a conflict with having two (2) versions of SQL*Developer on my laptop.
    The first was downloaded and installed as a standalone product. This was followed up by installing the 11g Client which also contains a version of SQL*Developer, albeit a much older version. This caused a JDBC library conflict of some kind.
    As per the note, since I only had one (1) Oracle Home, I renamed the %ORACLE_HOME%/jdbc/lib directory to lib$.
    That seems to force the use of the newer jdbc library files and all seems to be good.
    Turned out not to be anything related to the special characters in the password even though the popup message indicated that was the issue.
    Thanks for all the help!!
    -gary

Maybe you are looking for

  • Why won't my RAW files import into LR4?

    Hello all, Something very strange is going on with LR4.  I have been using LR since version 1 and never had this happen before.  When I have an SD card filled with jpegs and RAW files from my Fuji X100 camera and try to import all of them into LR 4,

  • Aperture 3.2 won't update library, won't load

    Upgraded from Aperture ver. 2.1.8. When I try to open the upgraded version, I get the message regarding the need to upgrade the library.  Whether I check the box in the dialog or not, I get the message "The library in "/Users/sharedlAperture Library.

  • Customisation of Date format while Scheduling reports

    Hello, While I am scheduling a report,in reccurance-Dateformat-RunObject and option is Hourly, the StartDate/Time format needs to change from 07 - 20 -AM 06/07/2009 to 06/Jul/2009 07-20- AM or equivalent time format. Is there any options to customise

  • Can i use my iphone that I bought in Canada, in the USA?

    I'd like to know from the community if anyone has tried to use their iPhone in the US? Given that they had bought their iPhone from the Apple store and had it activated through Rogers in Canada. I'd like to know if it is as simple as just swapping ou

  • Losing internet connection but not dropping

    Have been having issues recently with no internet but router not dropping connection.  Internet is rubbish in this area TBH and high speed broadband is about to be activated sometime soon, but until it is im finding it hard to work (work from home) I