Advertisement:

Author Topic: region specific characters search problem  (Read 135 times)

zasami

  • Full Member
  • ***
  • Posts: 210
region specific characters search problem
« on: May 24, 2019, 03:08:09 pm »
hi!!
permalink is actve,
when i select region for search like Neuchâtel or saint-gall i have this page The page isn’t redirecting properly
and the link is lik this
www.exemle.com/sOrder,dt_pub_date/iOrderType,desc/region,Neuch%25252525252525252525252525252525252525C3%25252525252525252525252525252525252525A2tel/meta1,0
but when i select a region name whithout specific characters all worl nomaly

thank for help

zasami

  • Full Member
  • ***
  • Posts: 210
Re: region specific characters search problem
« Reply #1 on: May 24, 2019, 08:44:12 pm »
i have resolve
change line 113 on oc_include/osclass/classes/Rerwite.php
change this
 
Code: [Select]
$request_uri = preg_replace('@^' . REL_WEB_URL . '@', "", Params::getServerParam('REQUEST_URI', false, false));by this
Code: [Select]
$request_uri = preg_replace('@^' . REL_WEB_URL . '@', "",  mb_strtolower(urldecode(Params::getServerParam('REQUEST_URI', false, false)), 'UTF-8') );