|
|
 Ricardo | 2010-01-04 08:57:43 |
When I run the example.php in the package (nothing edited) I got the following error:
Fatal error: Call to undefined method loadingDiv::loaderFlush() in ....
Everything starts fine and the Div appears, but it ends in this error. The echo above the for-loop is not shown. I use Firefox 3.5.6 and PHP Version 5.2.6
whats the matter? can anyone help? |
| |
2. Re: Errormessage... |
|
Reply |
|
|
 Gianluca Zanferrari | 2010-01-04 13:28:09 - In reply to message 1 from Ricardo |
Hi,
try this:
put ob_start(); at the beginning of your script.
OR
try to set your error reporting not to strict:
error_reporting(E_ALL ^ E_NOTICE);
Let me know.
Bye |
| |
3. Re: Errormessage... |
|
Reply |
|
|
 waldifubu | 2010-01-10 14:14:06 - In reply to message 1 from Ricardo |
where is the function
$divLoader->loaderFlush();
There is a func. called loader() but no loaderFlush()
Fatal error: Call to undefined method loadingDiv::loaderFlush() in E:\xampplite\htdocs\flv\div\example.php on line 37 |
| |
4. Re: Errormessage... |
|
Reply |
|
|
 Gianluca Zanferrari | 2010-01-10 17:08:55 - In reply to message 3 from waldifubu |
hi there is no function; that is the way php shows the error:
the class loader and then flush() is called.
You can find flush() at line 41 of class.loading.div.php
Bye. |
|