$smwgSparqlUpdateEndpoint

From Linux Web Expert


Template:Interlanguagelink: en
Configuration parameter details:
Name $smwgSparqlUpdateEndpoint
Description Sets the endpoint for updating the SPARQL database
Default setting http://localhost:8080/update/
Software Semantic MediaWiki
Since version
Until version still available
Configuration Store settings
Keyword sparqlstore · store · rdf · sparql


__NOBREADCRUMBLINKS__

$smwgSparqlUpdateEndpoint is a configuration parameter that is used to set the endpoint (service URL) for updating (SPARQL update queries) the semantic update store (SPARQL database). The parameter was introduced in Semantic MediaWiki 1.6.0Released on an unknown date unknown versions of MediaWiki.

Default setting

$smwgSparqlUpdateEndpoint = 'http://localhost:8080/update/';

This means that localhost is used as query location.

Changing the default setting

To modify the setting to this configuration parameter, add one of the following lines to your "LocalSettings.php" file after the enableSemantics() call:

Defining a different update endpoint
$smwgSparqlQueryEndpoint = 'https://localhost:8080/update/';
Disable the update endpoint
$smwgSparqlUpdateEndpoint = '';

This setting may be omitted if SPARQL update is not supported. This however will lead to reduced functionality, e.g. writing to the SPARQL database will not work if "Update" is not available.

See also