vote up 0 vote down star

Hi,

I have a problem with PECL::Runkit with this little example

index.php contain <?php
runkit_import('a.php');
runkit_import('b.php');
Doublon::get();

a.php et b.php each contain the same code

class Doublon
{
static function get() { echo "class " . __FILE__; }
}

On my PC (Windows XP, Wampserver 2, php 5.2.9-2, runkit DLL bundled with Wamp) it work and index.php show

class C:\wamp2\www\utilitaires\essais\runkit\b.php

On my Linux CentOS 5 server, PHP 5.2.10, Runkit compiled by hand

Warning: runkit_import() [function.runkit-import]: class doublon not
found in /shares/public/cedric/test/index.php on line 2
Warning: runkit_import() [function.runkit-import]: Cannot redeclare
class doublon in /shares/public/cedric/test/index.php on line 2
Warning: runkit_import() [function.runkit-import]: class doublon not
found in /shares/public/cedric/test/index.php on line 3
Warning: runkit_import() [function.runkit-import]: Cannot redeclare
class doublon in /shares/public/cedric/test/index.php on line 3
Fatal error: Class 'Doublon' not found in
/shares/public/cedric/test/index.php on line 4

One problem : runkit's make test give me 100% of tests failed, but I still don't know why. The runkit version from the linux distribution just make crash Apache : http://stackoverflow.com/questions/1097105/php-startup-timezone-database-is-corrupt

I dropped xdebug, return to php 5.2.9, but the errors are the same

Thanks in advance, Cédric

flag

1 Answer

vote up 1 vote down

The Package site says:

WARNING: 0.9 does not compile with PHP 5.2+ so use the CVS version instead.

Are you using the CVS version?

link|flag
Yes, but you find for me why the rpm version does not work. – Cédric Girard Jul 10 at 7:26
Are you using rpm's on windows? Also, I don't know why your version doesn't work, but you will most definitely need to compile yourself. – Evert Jul 10 at 15:19
Non, RPM on Centos (fork of Redhat). I had compiled CVS version but it does not work. – Cédric Girard Jul 11 at 20:04
hm weird.. I don't know in that case.. I would attempt to compile it yourself. It's really simple! Assuming you have PEAR installed, just hit: pecl install Runkit-beta – Evert Jul 11 at 21:20
But I had compiled Runkit by myself already, and it is the compiled version which don't work. – Cédric Girard Jul 13 at 6:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.