Andi Gutmans wrote:
> If anyone here has time or has already tried running some popular PHP
> packages such as php-nuke, phpbb, phpmyadmin and so on, I'd love to
> hear about your experience and especially the problems.
Dunno if these are popular, but phpOpenTracker and XML_Transformer work
fine.
I had to change
function &get($parameters) {
include_once POT_INCLUDE_PATH . 'API.php';
$api = &phpOpenTracker_API::getInstance();
return $api->get($parameters);
}
to
function &get($parameters) {
include_once POT_INCLUDE_PATH . 'API.php';
$api = &phpOpenTracker_API::getInstance();
$result = $api->get($parameters);
return $result;
}
but I think that this is a known problem.
--
Sebastian Bergmann
http://sebastian-bergmann.de/ http://phpOpenTracker.de/
Das Buch zu PHP 5: http://professionelle-softwareentwicklung-mit-php5.de/
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php