Ajax Framework (CJAX) for Codeigniter 2.x+ |
[eluser]Ajaxboy[/eluser]
Update: All issues mentioned above have been fixed and are available after RC3: Proceed to download the updated version: Code: http://sourceforge.net/projects/cjax/files/CodeIgnater/ -- After the conference call, here are the bugs identified, These are immediate fixes. These are patches you can apply yourself in the mean time, but these fixes will be included in the next release. 3 bugs were identified, mainly small and innocent but deadly. <h2>#1</h2> Introduced in RC2: Forces controller to inherit a parent class when not needed. Quote:A PHP Error was encountered Fix: In file ajaxfw.php on line 113: Change: Code: if(method_exists($class, $class) || method_exists($class, '__construct')) { To: Code: if(method_exists($class, $class)) { <h2>#2</h2> Introduced in RC2: Bug when looking at the examples package, shows an errors when looking at the examples Quote:Your system folder path does not appear to be set correctly. Please open the following file and correct this: ajax.php Fix: inside file: examples/ajax.php on line 3: Change: Code: if(!file_exists($f = '../ajax.php')) { To: Code: if(!file_exists($f = '../ajaxfw.php') && !file_exists($f = '../ajax.php')) { That should fix that issue. <h2>#3</h2> Introduced in RC2: Error: "( ! ) Quote:Warning: defined() expects exactly 1 parameter, 2 given in C:\wamp\www2\ajax.php on line 34"; Fix: Follow the instructions specified here: http://ellislab.com/forums/viewthread/21...0/#1012750 |
Welcome Guest, Not a member yet? Register Sign In |