Welcome Guest, Not a member yet? Register   Sign In
Ajax Framework (CJAX) for Codeigniter 2.x+
#71

[eluser]Ajaxboy[/eluser]
I am looking into the issues. In the mean time, you may work with RC1.
#72

[eluser]MonsterTKE[/eluser]
Ok, RC1 is giving me a blank screen at ajax.php?test/test and any other combination I try.

view-source has zero output.
#73

[eluser]Ajaxboy[/eluser]
You are all welcome to join me in a conference call/chat on skype to discuss current issues you are experiencing with the ajax framework and go in depth with these matters and get them fixed, these fixes will also be merged to the next release.

When: Saturday August 23 2012,
Where: Anywhere in the world, through skype.
What time: 3pm US, Central Time (1 pm Pacific, 4pm Eastern)
Who: Anyone Interested.
Price: Free
Duration: 1 hour (or more if required)

You may add me on your skype as: ajaxboy21

Main purpose of this conference is to get you running and optimize the performance of the framework to work for everyone.

Please note that to address the issues more appropriately you may need to show your screen in Skype so that we can go deeper on the issues, if you are unable to do that I might not be able to help you. You may use a microphone or you may also simply use the chat.

Issues will be dealt with as first come first serve basis.

#74

[eluser]MonsterTKE[/eluser]
Let me just reset my Skype password, considering I havent used it in about 10 months o.O
#75

[eluser]MonsterTKE[/eluser]
Ahh lol... central time. pssh.
#76

[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

Severity: Notice

Message: Undefined property: empty__test::$load

Filename: response/test.php

Line Number: 8


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



#77

[eluser]MonsterTKE[/eluser]
Found this one in the example page.

Call to undefined method validate::rule() in /var/www/examples/plugin_validate.php on line 53

Using validate plugin cjax.validate_1.3.zip
#78

[eluser]Ajaxboy[/eluser]
Download the latest validate plugin: (cjax.validate_1.3.zip) you are probably using the older version.

http://sourceforge.net/projects/cjax/files/Plugins/
#79

[eluser]MonsterTKE[/eluser]
Nope, that is the one I have. All the .zip contents go in the plugin directory right?
#80

[eluser]Ajaxboy[/eluser]
the directory itself goes in the plugin's directory




Theme © iAndrew 2016 - Forum software by © MyBB