|  | 
  Igor - 2007-11-09 09:57:18Hello,
 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.
 
  Cesar D. Rodas - 2007-11-09 16:43:17 - In reply to message 1 from IgorHello,
 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
  Igor - 2007-11-09 17:13:54 - In reply to message 2 from Cesar D. Rodas4.3.9Any 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
 
  Cesar D. Rodas - 2007-11-09 17:56:50 - In reply to message 3 from IgorI 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,
 
  Igor - 2007-11-09 18:31:21 - In reply to message 4 from Cesar D. Rodasyes, it works now. If I will use php5 , will I need to change the code back as it was?
 Thanks.
  Cesar D. Rodas - 2007-11-09 18:53:12 - In reply to message 5 from IgorRight now, if you download the class, it will work on php5 and php4.
 Best regards.
  Igor - 2007-11-09 19:55:49 - In reply to message 6 from Cesar D. RodasThanks for great class.
 - Igor
  Cesar D. Rodas - 2007-11-09 20:19:15 - In reply to message 7 from Igoryou're welcome, and please let me know if you find another bug. |