Warning: require_once(PEAR.php) [function.require-once]: failed to open stream: No such file or directory in D:\VirtualWebsites\JoomlaPlace\JoomlaGHOP\plugins\content\jigglr\phpFlickr\PEAR\HTTP\Request.php on line 46
Fatal error: require_once() [function.require]: Failed opening required 'PEAR.php' (include_path='D:\VirtualWebsites\JoomlaPlace\JoomlaGHOP\plugins\content\jigglr\phpFlickr/PEAR;.;C:\php5\pear') in D:\VirtualWebsites\JoomlaPlace\JoomlaGHOP\plugins\content\jigglr\phpFlickr\PEAR\HTTP\Request.php on line 46
/* phpFlickr Class 2.1.0
* Written by Dan Coulter (
dan@dancoulter.com)
* Sourceforge Project Page:
http://www.sourceforge.net/projects/phpflickr/ * Released under GNU Lesser General Public License (
http://www.gnu.org/copyleft/lgpl.html)
* For more information about the class and upcoming tools and toys using it,
* visit
http://www.phpflickr.com/ or
http://phpflickr.sourceforge.net *
* For installation instructions, open the README.txt file packaged with this
* class. If you don't have a copy, you can see it at:
*
http://www.phpflickr.com/README.txt *
* Please submit all problems or questions to the Help Forum on my project page:
*
http://sourceforge.net/forum/forum.php?forum_id=469652 *
*/
if (session_id() == "") {
@session_start();
}
// Decides which include path delimiter to use. Windows should be using a semi-colon
// and everything else should be using a colon. If this isn't working on your system,
// comment out this if statement and manually set the correct value into $path_delimiter.
if (strpos(__FILE__, ':') !== false) {
$path_delimiter = ';';
} else {
$path_delimiter = ':';
}
// This will add the packaged PEAR files into the include path for PHP, allowing you
// to use them transparently. This will prefer officially installed PEAR files if you
// have them. If you want to prefer the packaged files (there shouldn't be any reason
// to), swap the two elements around the $path_delimiter variable. If you don't have
// the PEAR packages installed, you can leave this like it is and move on.
// ini_set('include_path', ini_get('include_path') . $path_delimiter . dirname(__FILE__) . '/PEAR');
// If you have problems including the default PEAR install (like if your open_basedir
// setting doesn't allow you to include files outside of your web root), comment out
// the line above and uncomment the next line:
ini_set('include_path', dirname(__FILE__) . '/PEAR' . $path_delimiter . ini_get('include_path'));