Ho caricato lo script su un server locale con easyphp (php versione 4.4)
scaricato dalla pagina download del sito, c'era un file php, uno js e un readme con i changes

ho cosi creato js.php

quello che viene descritto come primo esempio nella homepage del sito http://www.phplivex.com/ ho inserito

e cioè

1. <?PHP
2. include("PHPLiveX.php");
3.
4. // Your PHP Function
5. function generateRandomCode($length){
6. sleep(1); // Function is slowed to show you the process exactly.
7. $chars = array("1","2","3","4","5","6","a","b","c","d","e", "f");
8. $code = array_rand(array_flip($chars), $length);
9. return implode($code);
10. }
11. // Necessary PHPLiveX Codes
12. $ajax = new PHPLiveX(array("generateRandomCode"));
13. $ajax->Run(); // Must be called inside the 'html' tags.
14. ?>

1.
2. <input type="button" value="Generate Random Code"
3. onclick="generateRandomCode(10, {'target':'rcode','preloader':'pr'});">
4. [img]design/Progressbar2.gif[/img]
5. <span id="rcode"></span>

[togliendo ovviamente i numeri che vengono formattati]



sicuramente sbaglio più di una cosa, perchè non si vede proprio niente, pagina completamente bianca

non solo, anche provando gli esempi presenti qui http://www.phplivex.com/examples.php
ho lo stesso pagine sempre bianche, dopo aver incluso quel file php e come se tutto il resto me lo escludesse anche fuori dai tag php, sembra un exit; che fa fuori tutto, però sul loro sito funziona, mi chiedo ancora dove sbaglio?