Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Pear libraries
How well is pear supported by hosting companies.
If I use Pear calendar to generate month views, will it work flawlessly since it is dependent on other pear libraries to work
0
This discussion has been closed.
Comments
- My host had trouble supporting Pear and the required library module(s) directly
- They were helpful in pointing me to a way to install Pear on my own hosting account:
So, even if you use Pear, there should be a path for hosted sites to make use of it.// check to see if PEAR is installed $x = get_include_path()."PEAR.php"; $z = substr(strrchr($x,";"), 1); echo $x."***"; //$y = print_r(get_defined_constants()); //echo $_SERVER['SERVER_SOFTWARE']; //echo $_SERVER['SERVER_NAME']."/PEAR.php"; //if (!file_exists($_SERVER['DOCUMENT_ROOT']."/PEAR.php")) if (file_exists($z)) { echo "PEAR exists"; include ('Archive/Tar.php'); }