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

Reply via email to