Re: [PHP] Tracking file download progress

2009-12-26 Thread STEEL
>> Thanks all, I've found the solution! PHP Backend + JQuery works great! > Just out of curiosity. Can you please tell me how you initiated the download? Via JSHttpRequest( JQuery started to lie %) ) to PHP backend then , in file downloading cycle there are $GLOBALS['_FULL'] tells fronten

[PHP] Noob stuff - Zend/Opcode/Cache/Optimizer

2009-12-26 Thread Daniel Kolbo
Hello, I'm missing some unifying piece of the zend/php puzzle... I understand the basics of zend engine opcode, caching the opcode, optimizing the opcode, and caching the optimized opcode, etc... The part I'm struggling with is somewhere in the zend world. Under a typical php install where doe

Re: [PHP] Multiple Inheritance Concern

2009-12-26 Thread Daniel Kolbo
Larry Garfield wrote: > On Friday 25 December 2009 8:02:06 pm Daniel Kolbo wrote: >> Hello PHPers, >> >> I've learned that php doesn't support multiple inheritance, b/c if you >> need multiple inheritance usually it is a sign you've got a design >> imperfection...or so they say. >> >> Well, I'm usi

Re: [PHP] Accessing Objects - Object to Object Communication

2009-12-26 Thread Larry Garfield
On Saturday 26 December 2009 3:38:44 pm Allen McCabe wrote: > Here are some code snippets: > > Content.class.php: > class Page { > > private $db;// Contains reference to instance of the > Database class > private $notify;// Contains reference to instance of the

[PHP] Accessing Objects - Object to Object Communication

2009-12-26 Thread Allen McCabe
I have a Database class that I instantiate with credential information. The connect method connects and creates a resource by the name $link_id. So if I do this: $db = new Database($server, $user, $password, $database); $db->connect(); To get the resource (for use by mysql_insert_id() for example

[PHP] Re: uninstalling wamp

2009-12-26 Thread Carlos Medina
Sudhakar schrieb: hi after installing wamp when i accessed phpmyadmin i got an error about root having no password, i have tried various steps but could not get to use phpmyadmin, so i uninstalled and reinstalled wamp, i deleted the old wamp folder when i access phpmyadmin i get the same error m

[PHP] uninstalling wamp

2009-12-26 Thread Sudhakar
hi after installing wamp when i accessed phpmyadmin i got an error about root having no password, i have tried various steps but could not get to use phpmyadmin, so i uninstalled and reinstalled wamp, i deleted the old wamp folder when i access phpmyadmin i get the same error message i read that

Re: [PHP] File upload directive: $_FILES['filename']['name'] instead of $_FILES['filename']['tmp_name']

2009-12-26 Thread Richard Quadling
2009/12/23 Andrei Iarus > > Found the problem: I use Zend Framework, and after using a procedre, it is > automatically moved. :( Thanks very much, I thought it was a problem with > PHP, but from now on, it is a Zend Framework problem. Thanks again. > > --- On Wed, 12/23/09, Richard Quadling wro