Index: trunk/phase3/extensions/README |
— | — | @@ -12,3 +12,11 @@ |
13 | 13 | |
14 | 14 | You can find documentation and additional extensions on MediaWiki website: |
15 | 15 | http://www.mediawiki.org/wiki/Category:Extensions |
| 16 | + |
| 17 | + |
| 18 | +Please note that under POSIX systems (Linux...), parent of a symbolic path |
| 19 | +refers to the link source, NOT to the target! If you need to include a |
| 20 | +file from mediawiki/, you will want to set and use MW_INSTALL_PATH env. |
| 21 | + |
| 22 | + $IP = getenv( 'MW_INSTALL_PATH' ); // points to mediawiki/ |
| 23 | + require( "$IP/maintenance/Maintenance.php" ); // a MediaWiki file |