|
ARC2StoreInstall
Details of how to install and configure ARC2Store for Semantic Mediawiki
Update July 16: Please see InstallAll insteadHow to... assuming that you have a working Semantic MediaWiki installation (Tested with MW 1.15 and later)
/**************************
* ARC2 RDF API for PHP *
**************************/
$smwgARC2Path = $smwgIP . '/libs/arc/';
require_once($smwgARC2Path . '/ARC2.php');
/**************************
* ARC2 RDF Store config *
**************************/
$smwgARC2StoreConfig = array(
/* Customize these details if you *
* want to use an external database */
'db_host' => $wgDBserver,
'db_name' => $wgDBname,
'db_user' => $wgDBuser,
'db_pwd' => $wgDBpassword,
'store_name' => 'arc2store',
);
$smwgDefaultStore = 'SMWARC2Store'; // Determines database table prefix
require_once("$IP/extensions/RDFIO/SMW_ARC2Store.php");
require_once("$IP/extensions/RDFIO/SpecialARC2Admin.php"); |
► Sign in to add a comment