Re: Airtime INstallation
  • Vote Up0Vote Down Daniel JamesDaniel James
    Posts: 844Member, Sourcefabric Team
    Hi Katim,

    > I was trying to continue with my Airtime installation today, but ran
    > into the problem with pear.phing. When I enter the first command in the
    > phing installation process, this is what I get:
    >
    > sudo pear channel-discover pear.phing.info <http://pear.phing.info>
    > PHP Deprecated: Comments starting with '#' are deprecated in
    > /etc/php5/cli/conf.d/idn.ini on line 1 in Unknown on line 0
    > PHP Deprecated: Comments starting with '#' are deprecated in
    > /etc/php5/cli/conf.d/mhash.ini on line 1 in Unknown on line 0
    > PHP Deprecated: Comments starting with '#' are deprecated in
    > /etc/php5/cli/conf.d/ming.ini on line 1 in Unknown on line 0

    These are just warnings, take a look at the
    /etc/php5/cli/conf.d/ming.ini file for instance. The comments should be
    ; instead of # but they shouldn't do any harm for now.

    > PHP Warning: PHP Startup: Unable to load dynamic library
    > '/usr/lib/php5/20090626+lfs/apc.so' - /usr/lib/php5/20090626+lfs/apc.so:
    > cannot open shared object file: No such file or directory in Unknown on
    > line 0

    Probably you have an .ini file under /etc/php5/ which is trying to load
    apc.so even though it is no longer installed on your system. Try this
    command:

    grep -r apc /etc/php5/

    to identify which file that is. Then you could comment out the offending
    line with a ; sign.

    > PHP Warning: PHP Startup: Unable to load dynamic library
    > '/usr/lib/php5/20090626+lfs/mhash.so' -
    > /usr/lib/php5/20090626+lfs/mhash.so: cannot open shared object file: No
    > such file or directory in Unknown on line 0

    Same as above, an old configuration is hanging around.

    > Channel "pear.phing.info <http://pear.phing.info>" is already initialized

    That sounds like the command worked :-)

    Cheers!

    Daniel