Hi, I have a very strange issue. I add a rule into my htaccess, which is the following one: # Session rule RewriteRule ^([0-9]+)/(.*) session_script.php?source_traffic=$1&page_name=$2 [L] Into the script "session_script.php" I have this code : <?php if(!isset($_SESSION))session_start()...
Hi, I need to get the data from the cms to put it into a variable and display it afterward. I am using ajax to change dynamicaly the content of a div (using innerHTML). into this div I want to load a page which exists into the CMS. for now I am doing that: include_once(dirname(__FILE__).'/../include...