Changes between Initial Version and Version 1 of Ticket #35291, comment 26


Ignore:
Timestamp:
Oct 18, 2012, 8:31:47 PM (12 years ago)
Author:
z.aliakseyeu@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35291, comment 26

    initial v1  
    1717}}}
    1818then
    19 {{
     19{{{
    2020$ which pear
    21 }}
     21}}}
    2222if it outputs /usr/local/bin/pear or something which not equals /opt/local/bin/pear, then it wrong too
    23 {{
     23{{{
    2424$ sudo pear uninstall pear
    2525$ which pear
    26 }}
     26}}}
    2727if its still outputs old path, then, how you guess
    28 {{
     28{{{
    2929$ sudo rm /usr/local/bin/pear
    30 }}
     30}}}
    3131after that my which pear shows /opt/local/bin/pear (right path)
    3232then i just do such actions
    33 {{
     33{{{
    3434$ sudo pear channel-discover pear.phpunit.de
    3535$ sudo pear install pear.phpunit.de/PHPUnit
    36 }}
     36}}}
    3737then add to /opt/local/etc/php54/php.ini
    38 {{
     38{{{
    3939include_path = ".:/opt/local/lib/php54/pear/:/opt/local/lib/php54/pear/share/pear/"
    40 }}
     40}}}
    4141
    4242restarted apache and thats it)
    43 {{
     43{{{
    4444$ phpunit --version
    4545PHPUnit 3.7.8 by Sebastian Bergmann.
    46 }}
     46}}}