PHP Classes

bugs

Recommend this page to a friend!

      Auto Ajax  >  All threads  >  bugs  >  (Un) Subscribe thread alerts  
Subject:bugs
Summary:bugs here?
Messages:8
Author:Igor
Date:2007-11-09 09:57:18
Update:2007-11-09 20:19:15
 

  1. bugs   Reply   Report abuse  
Picture of Igor Igor - 2007-11-09 09:57:18
Hello,

I've uploaded your class to the server and tried how it works.
Looks like there are some bugs.
You can try http://igonza.com/tmp/example/ . When I click any link always time changed but not any text. As I understand when I click on copyright.php link I have to see "Copyright (C) 2007 by Cesar D. Rodas ...."
Let me know if I do something wrong.

Thanks,
Igor.

  2. Re: bugs   Reply   Report abuse  
Picture of Cesar D. Rodas Cesar D. Rodas - 2007-11-09 16:43:17 - In reply to message 1 from Igor
Hello,

That error is extrange, what version of PHP do you have?.

I have try with an Unix Free with PHP4 and PHP5 and works.


best regards

  3. Re: bugs   Reply   Report abuse  
Picture of Igor Igor - 2007-11-09 17:13:54 - In reply to message 2 from Cesar D. Rodas
4.3.9
Any idea how to test it and find the problem?

Btw, my friend tried your class and got the same problem. I do not know now what server he used.

- Igor

  4. Re: bugs   Reply   Report abuse  
Picture of Cesar D. Rodas Cesar D. Rodas - 2007-11-09 17:56:50 - In reply to message 3 from Igor
I found the bug!, :-D

Thank you very much for report it.

The problem were in the examples,
$ajax->start();//the page start here
$ajax->destiny("central"); /* the ajax destination of this page */

And with php4 you must call first destiny the start, like this:
$ajax->destiny("central"); /* the ajax destination of this page */
$ajax->start();//the page start here

Please let me know if you can fix it, and if this class works for you.

PD: I've update the package and you can download it again if you don't want to change it.

Best regards,

  5. Re: bugs   Reply   Report abuse  
Picture of Igor Igor - 2007-11-09 18:31:21 - In reply to message 4 from Cesar D. Rodas
yes, it works now.
If I will use php5 , will I need to change the code back as it was?
Thanks.

  6. Re: bugs   Reply   Report abuse  
Picture of Cesar D. Rodas Cesar D. Rodas - 2007-11-09 18:53:12 - In reply to message 5 from Igor
Right now, if you download the class, it will work on php5 and php4.

Best regards.

  7. Re: bugs   Reply   Report abuse  
Picture of Igor Igor - 2007-11-09 19:55:49 - In reply to message 6 from Cesar D. Rodas
Thanks for great class.

- Igor

  8. Re: bugs   Reply   Report abuse  
Picture of Cesar D. Rodas Cesar D. Rodas - 2007-11-09 20:19:15 - In reply to message 7 from Igor
you're welcome, and please let me know if you find another bug.