Thanks Brion, I'll consult the documentation. I'll let you know if I have any other issues or if I succeed.
Much appreciated. --- On Tue, 5/17/11, Brion Vibber <[email protected]> wrote: From: Brion Vibber <[email protected]> Subject: Re: [Mediawiki-l] Fatal error To: "MediaWiki announcements and site admin list" <[email protected]> Date: Tuesday, May 17, 2011, 1:31 PM On Tue, May 17, 2011 at 12:15 PM, KAMOHELO MOFOKENG <[email protected]>wrote: > My current include_path is: > include_path = > ".;C:\xampp\php\PHPMailer_v5.1\class.phpmailer.php;C:\xampp\php\PHPMailer_v5.1\class.smtp.php" > The include_path lists *directories*, which are searched in turn for files. You appear to have put *files* in, which is wrong and will never work. You should always check the documentation if you're unfamiliar with configuring PHP: http://de.php.net/manual/en/ini.core.php#ini.include-path You probably want something like: include_path=".;C:\xampp\php" and PEAR::Mail should be installed via the PEAR installer, so it goes in that common include directory in C:\xampp\php. PEAR also has online documentation including some nice howto guides for installation: http://pear.php.net/manual/ -- brion _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
