News + realURL + i18n in Typo3 = cHash error











up vote
1
down vote

favorite












I managed to make news (tx_news) work realurl under the default language. Then I wanted to localize the news, so I created transaltions for them. However when I access the list view for a non-default language, it fails with



Request parameters could not be validated (&cHash comparison failed)


The failing link does not contain cHash, it looks like this



http://host.com/mysite/en/about-us/



What could be the cause and how to fix it? Here is the realURL setup



$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'_DEFAULT' =>
array (
'init' =>
array (
'enableCHashCache' => true,
'enableCHashCache' => 1,
'respectSimulateStaticURLs' => 0,
'appendMissingSlash' => 'ifNotFile,redirect',
//'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/mysite/',
),
'pagePath' =>
array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'rootpage_id' => '1',
'firstHitPathCache'=> '1',
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'cs' => '1',
),
'noMatch' => 'bypass',
),
),
'fixedPostVars' => array(
'19' => array(
array(
'GETvar' => 'tx_news_pi1[controller]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[action]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' =>
'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
'enable404forInvalidAlias' => '1',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l10n_parent',
),
),
),
),

),

);









share|improve this question






















  • Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
    – user1477388
    Jan 20 '14 at 19:05












  • I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
    – smitrovic
    Feb 11 '15 at 11:01















up vote
1
down vote

favorite












I managed to make news (tx_news) work realurl under the default language. Then I wanted to localize the news, so I created transaltions for them. However when I access the list view for a non-default language, it fails with



Request parameters could not be validated (&cHash comparison failed)


The failing link does not contain cHash, it looks like this



http://host.com/mysite/en/about-us/



What could be the cause and how to fix it? Here is the realURL setup



$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'_DEFAULT' =>
array (
'init' =>
array (
'enableCHashCache' => true,
'enableCHashCache' => 1,
'respectSimulateStaticURLs' => 0,
'appendMissingSlash' => 'ifNotFile,redirect',
//'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/mysite/',
),
'pagePath' =>
array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'rootpage_id' => '1',
'firstHitPathCache'=> '1',
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'cs' => '1',
),
'noMatch' => 'bypass',
),
),
'fixedPostVars' => array(
'19' => array(
array(
'GETvar' => 'tx_news_pi1[controller]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[action]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' =>
'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
'enable404forInvalidAlias' => '1',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l10n_parent',
),
),
),
),

),

);









share|improve this question






















  • Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
    – user1477388
    Jan 20 '14 at 19:05












  • I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
    – smitrovic
    Feb 11 '15 at 11:01













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I managed to make news (tx_news) work realurl under the default language. Then I wanted to localize the news, so I created transaltions for them. However when I access the list view for a non-default language, it fails with



Request parameters could not be validated (&cHash comparison failed)


The failing link does not contain cHash, it looks like this



http://host.com/mysite/en/about-us/



What could be the cause and how to fix it? Here is the realURL setup



$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'_DEFAULT' =>
array (
'init' =>
array (
'enableCHashCache' => true,
'enableCHashCache' => 1,
'respectSimulateStaticURLs' => 0,
'appendMissingSlash' => 'ifNotFile,redirect',
//'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/mysite/',
),
'pagePath' =>
array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'rootpage_id' => '1',
'firstHitPathCache'=> '1',
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'cs' => '1',
),
'noMatch' => 'bypass',
),
),
'fixedPostVars' => array(
'19' => array(
array(
'GETvar' => 'tx_news_pi1[controller]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[action]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' =>
'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
'enable404forInvalidAlias' => '1',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l10n_parent',
),
),
),
),

),

);









share|improve this question













I managed to make news (tx_news) work realurl under the default language. Then I wanted to localize the news, so I created transaltions for them. However when I access the list view for a non-default language, it fails with



Request parameters could not be validated (&cHash comparison failed)


The failing link does not contain cHash, it looks like this



http://host.com/mysite/en/about-us/



What could be the cause and how to fix it? Here is the realURL setup



$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']=array (
'_DEFAULT' =>
array (
'init' =>
array (
'enableCHashCache' => true,
'enableCHashCache' => 1,
'respectSimulateStaticURLs' => 0,
'appendMissingSlash' => 'ifNotFile,redirect',
//'adminJumpToBackend' => true,
'enableUrlDecodeCache' => true,
'enableUrlEncodeCache' => true,
'emptyUrlReturnValue' => '/mysite/',
),
'pagePath' =>
array (
'type' => 'user',
'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
'spaceCharacter' => '-',
'languageGetVar' => 'L',
'rootpage_id' => '1',
'firstHitPathCache'=> '1',
),
'preVars' =>
array (
0 =>
array (
'GETvar' => 'L',
'valueMap' =>
array (
'cs' => '1',
),
'noMatch' => 'bypass',
),
),
'fixedPostVars' => array(
'19' => array(
array(
'GETvar' => 'tx_news_pi1[controller]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[action]',
'noMatch' => 'bypass',
),
array(
'GETvar' => 'tx_news_pi1[news]',
'lookUpTable' => array(
'table' =>
'tx_news_domain_model_news',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => array(
'strtolower' => 1,
'spaceCharacter' => '-',
),
'enable404forInvalidAlias' => '1',
'languageGetVar' => 'L',
'languageExceptionUids' => '',
'languageField' => 'sys_language_uid',
'transOrigPointerField' => 'l10n_parent',
),
),
),
),

),

);






php typo3 realurl






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 20 '14 at 19:01









David Apltauer

3831820




3831820












  • Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
    – user1477388
    Jan 20 '14 at 19:05












  • I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
    – smitrovic
    Feb 11 '15 at 11:01


















  • Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
    – user1477388
    Jan 20 '14 at 19:05












  • I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
    – smitrovic
    Feb 11 '15 at 11:01
















Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
– user1477388
Jan 20 '14 at 19:05






Just a word of advice, don't use CMS if you are building a custom app. I have found that making a CMS yield to your will is a lot harder than just building from scratch. CMS are good for simple sites; but if you are trying to build something with some advanced functionality, you should just build from scratch.
– user1477388
Jan 20 '14 at 19:05














I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
– smitrovic
Feb 11 '15 at 11:01




I totally disagree to build anything from scratch, especially if you are working alone. One man can not implement security like TYPO3 security team, or Symfony, or Zend. There is no need to invent wheel, unless it is a better wheel :) and one man can hardly do it on his own.
– smitrovic
Feb 11 '15 at 11:01












4 Answers
4






active

oldest

votes

















up vote
10
down vote













With this error I had fight a lot.



Go to Typo3 Install Tool => All configuration and change the value 1 => 0 for this attribute.




[FE] [pageNotFoundOnCHashError] = 0




I hope this gona solve the problem !!!






share|improve this answer

















  • 1




    Perfect! you save my time @Jimit thanks :)
    – Ghanshyam Gohel
    Apr 11 '15 at 18:44










  • great, this does work but does it lower security ?
    – webMan
    Aug 9 '17 at 8:08










  • @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
    – Jimit Shah
    Aug 10 '17 at 10:23


















up vote
2
down vote













I seem to have fixed it by emptying the tx_realurl_chashcache in the database.






share|improve this answer





















  • this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
    – webfacer
    Jul 13 at 17:32


















up vote
1
down vote













I had to disable caching for the page. On my site it seems the "no_cache" parameter is confusing the chash calculation. This way i can keep the - i think important - security setting [FE][pageNotFoundOnCHashError] = 0






share|improve this answer




























    up vote
    0
    down vote













    In Typo3 8.x version:



    click the "Speaking Urls" module in the backend and than do "Flush all entries"



    Now when you browse the frontend those entries would get re-created. And every thing should work fine.



    Basically here we are deleting all page path entries for all pages so that they get created again.



    Also you may delete the entries for the selected page by selecting the option "Delete all entries for this page"






    share|improve this answer





















      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f21242017%2fnews-realurl-i18n-in-typo3-chash-error%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      10
      down vote













      With this error I had fight a lot.



      Go to Typo3 Install Tool => All configuration and change the value 1 => 0 for this attribute.




      [FE] [pageNotFoundOnCHashError] = 0




      I hope this gona solve the problem !!!






      share|improve this answer

















      • 1




        Perfect! you save my time @Jimit thanks :)
        – Ghanshyam Gohel
        Apr 11 '15 at 18:44










      • great, this does work but does it lower security ?
        – webMan
        Aug 9 '17 at 8:08










      • @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
        – Jimit Shah
        Aug 10 '17 at 10:23















      up vote
      10
      down vote













      With this error I had fight a lot.



      Go to Typo3 Install Tool => All configuration and change the value 1 => 0 for this attribute.




      [FE] [pageNotFoundOnCHashError] = 0




      I hope this gona solve the problem !!!






      share|improve this answer

















      • 1




        Perfect! you save my time @Jimit thanks :)
        – Ghanshyam Gohel
        Apr 11 '15 at 18:44










      • great, this does work but does it lower security ?
        – webMan
        Aug 9 '17 at 8:08










      • @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
        – Jimit Shah
        Aug 10 '17 at 10:23













      up vote
      10
      down vote










      up vote
      10
      down vote









      With this error I had fight a lot.



      Go to Typo3 Install Tool => All configuration and change the value 1 => 0 for this attribute.




      [FE] [pageNotFoundOnCHashError] = 0




      I hope this gona solve the problem !!!






      share|improve this answer












      With this error I had fight a lot.



      Go to Typo3 Install Tool => All configuration and change the value 1 => 0 for this attribute.




      [FE] [pageNotFoundOnCHashError] = 0




      I hope this gona solve the problem !!!







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jun 6 '14 at 5:46









      Jimit Shah

      518512




      518512








      • 1




        Perfect! you save my time @Jimit thanks :)
        – Ghanshyam Gohel
        Apr 11 '15 at 18:44










      • great, this does work but does it lower security ?
        – webMan
        Aug 9 '17 at 8:08










      • @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
        – Jimit Shah
        Aug 10 '17 at 10:23














      • 1




        Perfect! you save my time @Jimit thanks :)
        – Ghanshyam Gohel
        Apr 11 '15 at 18:44










      • great, this does work but does it lower security ?
        – webMan
        Aug 9 '17 at 8:08










      • @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
        – Jimit Shah
        Aug 10 '17 at 10:23








      1




      1




      Perfect! you save my time @Jimit thanks :)
      – Ghanshyam Gohel
      Apr 11 '15 at 18:44




      Perfect! you save my time @Jimit thanks :)
      – Ghanshyam Gohel
      Apr 11 '15 at 18:44












      great, this does work but does it lower security ?
      – webMan
      Aug 9 '17 at 8:08




      great, this does work but does it lower security ?
      – webMan
      Aug 9 '17 at 8:08












      @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
      – Jimit Shah
      Aug 10 '17 at 10:23




      @webMan: yes , it decrease security , it helps at up-gradation of TYPO3.
      – Jimit Shah
      Aug 10 '17 at 10:23












      up vote
      2
      down vote













      I seem to have fixed it by emptying the tx_realurl_chashcache in the database.






      share|improve this answer





















      • this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
        – webfacer
        Jul 13 at 17:32















      up vote
      2
      down vote













      I seem to have fixed it by emptying the tx_realurl_chashcache in the database.






      share|improve this answer





















      • this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
        – webfacer
        Jul 13 at 17:32













      up vote
      2
      down vote










      up vote
      2
      down vote









      I seem to have fixed it by emptying the tx_realurl_chashcache in the database.






      share|improve this answer












      I seem to have fixed it by emptying the tx_realurl_chashcache in the database.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jan 20 '14 at 19:33









      David Apltauer

      3831820




      3831820












      • this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
        – webfacer
        Jul 13 at 17:32


















      • this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
        – webfacer
        Jul 13 at 17:32
















      this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
      – webfacer
      Jul 13 at 17:32




      this is the right answer, if you disable [FE] [pageNotFoundOnCHashError] you will no longer have a check by typo3 and security will be also an issue. the newer databes does not support this tablename. i emptying al of that.
      – webfacer
      Jul 13 at 17:32










      up vote
      1
      down vote













      I had to disable caching for the page. On my site it seems the "no_cache" parameter is confusing the chash calculation. This way i can keep the - i think important - security setting [FE][pageNotFoundOnCHashError] = 0






      share|improve this answer

























        up vote
        1
        down vote













        I had to disable caching for the page. On my site it seems the "no_cache" parameter is confusing the chash calculation. This way i can keep the - i think important - security setting [FE][pageNotFoundOnCHashError] = 0






        share|improve this answer























          up vote
          1
          down vote










          up vote
          1
          down vote









          I had to disable caching for the page. On my site it seems the "no_cache" parameter is confusing the chash calculation. This way i can keep the - i think important - security setting [FE][pageNotFoundOnCHashError] = 0






          share|improve this answer












          I had to disable caching for the page. On my site it seems the "no_cache" parameter is confusing the chash calculation. This way i can keep the - i think important - security setting [FE][pageNotFoundOnCHashError] = 0







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 17 '16 at 11:03









          InforMedic

          11314




          11314






















              up vote
              0
              down vote













              In Typo3 8.x version:



              click the "Speaking Urls" module in the backend and than do "Flush all entries"



              Now when you browse the frontend those entries would get re-created. And every thing should work fine.



              Basically here we are deleting all page path entries for all pages so that they get created again.



              Also you may delete the entries for the selected page by selecting the option "Delete all entries for this page"






              share|improve this answer

























                up vote
                0
                down vote













                In Typo3 8.x version:



                click the "Speaking Urls" module in the backend and than do "Flush all entries"



                Now when you browse the frontend those entries would get re-created. And every thing should work fine.



                Basically here we are deleting all page path entries for all pages so that they get created again.



                Also you may delete the entries for the selected page by selecting the option "Delete all entries for this page"






                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  In Typo3 8.x version:



                  click the "Speaking Urls" module in the backend and than do "Flush all entries"



                  Now when you browse the frontend those entries would get re-created. And every thing should work fine.



                  Basically here we are deleting all page path entries for all pages so that they get created again.



                  Also you may delete the entries for the selected page by selecting the option "Delete all entries for this page"






                  share|improve this answer












                  In Typo3 8.x version:



                  click the "Speaking Urls" module in the backend and than do "Flush all entries"



                  Now when you browse the frontend those entries would get re-created. And every thing should work fine.



                  Basically here we are deleting all page path entries for all pages so that they get created again.



                  Also you may delete the entries for the selected page by selecting the option "Delete all entries for this page"







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 11 at 8:09









                  Vikram

                  11




                  11






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f21242017%2fnews-realurl-i18n-in-typo3-chash-error%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Xamarin.iOS Cant Deploy on Iphone

                      Glorious Revolution

                      Dulmage-Mendelsohn matrix decomposition in Python