[eluser]Ayman Elarian[/eluser]
after tracking code i found that error from this point
on ajaxfw.php
define('AJAX_CONTROLLER',1);
require_once (dirname(__file__)).'/cjax/cjax.php';
$ajax = CJAX::getInstance();
$controller = $ajax->input('controller');
// self echo for controller dont print any name that mean that CJAX::getInstance(); input function dont return controller on windows iis
how to fix that ?
echo $controller;
if($controller) {
new ajax($controller);
}