How to assign users to groups in MediaWiki?

How to assign users to groups in MediaWiki?

If you want to grant extra permissions to some of your registered users in MediaWiki, you have to login with your admin user, click on the Special pages link at the left column and then follow the User rights management link. On the next … Continued
Where can I find my MediaWiki main configuration file?

Where can I find my MediaWiki main configuration file?

MediaWiki’s configuration file is called LocalSettings.php and is located in the root directory of the application. You can modify this file via FTP, File Manager or SSH if needed.
Additional Moodle resources – modules, themes, etc.

Additional Moodle resources – modules, themes, etc.

The official Moodle website. The official Moodle documentation. The official support forum of Moodle. The official Moodle extensions. XonHost Moodle tutorials.
How to change the default currency in PrestaShop?

How to change the default currency in PrestaShop?

Please note that the default currency will be the one displayed for your website visitors when they access the store for the first time. In order to change the default currency in Presta Shop, log in to the administrative area. … Continued
How to enable RSS in phpBB?

How to enable RSS in phpBB?

RSS stands for Really Simple Syndication – a web feed format for publishing frequent updates of site content such as news, blog posts, etc. Publishers benefit from RSS feeds because this lets them syndicate their site content automatically. Readers benefit … Continued
How to change the SMF index page title?

How to change the SMF index page title?

If you want to change your SMF application’s index page title you will have to edit the following file: ~/SMF_installation_directory/Themes/default/languages/index.LANGUAGE.php where LANGUAGE is the current language which your application is using. You will have to find the following line: $txt[18] = $context[‘forum_name‘] … Continued
Remove default http:// from the Insert Link option in vBulletin

Remove default http:// from the Insert Link option in vBulletin

In order to remove the predefined http://  string from the Insert Link functionality in the vBulletin text editor open the clientscript/vbulletin_textedit.js file and change the following code excerpts: {url=this.show_prompt(vbphrase.enter_link_url,”http://”,true)} (appears twice) and {this.prompt_link(“url”,url,vbphrase.enter_link_url,”http://”)} to {url=this.show_prompt(vbphrase.enter_link_url,””,true)} (appears twice) and {this.prompt_link(“url”,url,vbphrase.enter_link_url,””)} Also, navigate to your vBulletin admin panel->Languages & … Continued
How to configure vBulletin albums?

How to configure vBulletin albums?

The vBulletin Albums functionality allows you to create albums with images and share them with the other forum members. You can configure the albums settings from the vBulletin admin control panel->Options->User Profile: Album Options. The “My Albums” link will be … Continued
How to run the MediaWiki update script through a browser?

How to run the MediaWiki update script through a browser?

By default, when upgrading MediaWiki, you have to run the update.php file from a command prompt. This becomes a problem if you don’t have SSH access to your account. Fortunately, there is a way to run the script through your browser. Follow the steps … Continued
How to disable registration for MediaWiki?

How to disable registration for MediaWiki?

If you want to disable the option for your MediaWiki visitors to register accounts at your MediaWiki website you will have to add the following line in the LocalSettings.php file: $wgGroupPermissions[‘*’][‘createaccount’] = false; You can find below detailed instructions on how to … Continued