Hello,
we have Version 1.0. I have installed pear. We Use wamp on Windows.
I can't create a Subnet. phpipam says "Warning: requiere_once(PEAR.php): failed to open stream: No such file or directory in C:\wamp\www\phpipam\functions\PEAR\Net\IPv4.php"
What do i wrong?
Thanks a lot.
Anonymous
Ok now it works.
edit the files IPv4.php, Ping.php like the markes line
//require_once 'PEAR.php';
require_once 'C:\wamp\bin\php\php5.5.12\pear\PEAR.php';
If you already have Pear installed it's most likely missing from the php.ini file.
Verify that there is an include path for pear.
include_path = ".;c:\wamp\bin\php\php5.5.12\pear"
I'm not sure if this is neccesary but you may also need to include the same path in the PATH system variable.
This is how I managed to resolve the issue.