ম্যানুয়াল:$wgAllowUserJs
Security: $wgAllowUserJs | |
---|---|
ব্যবহারকারী নামস্থানের জাভাস্ক্রিপ্ট পাতাগুলো ব্যবহার করার অনুমতি দেয় |
|
Introduced in version: | 1.3.0 (r4194) |
Removed in version: | Still in use |
Allowed values: | (বুলিয়ান) |
Default value: | false (1.3.10+, r7357)true (1.3.0-1.3.9) |
Other settings: Alphabetical | By function |
বিবরণ
ব্যবহারকারী নামস্থানের জাভাস্ক্রিপ্ট পাতা সক্রিয়/নিষ্ক্রিয় করে। This enables a lot of neat customizations, but may increase security risk to users and server load. (Personal scripts can only be edited by the owner and interface administrators, but they may still serve as vectors for various social engineering based attacks.)
A related setting $wgAllowUserCss
allows/disallows users to use their own CSS files.
ব্যবহার
To enable users to perform their own JavaScript, append the following line to your LocalSettings.php file:
$wgAllowUserJs = true;
To disable this function set $wgAllowUserJs
to false or delete whole line.
গুরুত্বপূর্ণ টীকা
Microsoft Internet Explorer and Mozilla/Firefox allow the embedding of JavaScript into stylesheets using HTC or XBL.
So in order to prevent users from defining JavaScript, you need to disable $wgAllowUserCss
as well.