Failed opening required ‘System.php’ (include_path=’.;C:phppear’) in D:wampwwwz

I am bit new in php. I Downloaded a wordpress and installed in my wamp. But the below error encountered.

Fatal error: require_once() [function.require]: Failed opening required 'System.php'
(include_path='.;C:phppear') in D:wampwwwfundwe...

My Wamp is not installed in C drive. Instead it is in D Drive. Please please help me

Related posts

Leave a Reply

1 comment

  1. In WAMPServer, the include_path is commented out, so you are getting the default version which is why it is pointing to include_path='.;C:phppear'

    So you could try editing the php.ini file, using the wampserver menus to make sure you edit the correct file (wampbinphp{phpVersion}binphpForApache.ini)

    wampmanager->PHP->php.ini
    

    And add a proper include path in place of the commented out one in there already

    include_path=".;d:wampbinphp{yourPHPVersion}pear"
    

    Although I have an idea this is not related to PEAR at all.

    You would probably be better of creating a Virtual Host for the WordPress site to run in, then it will probably find the file its looking for in the theme folder.