<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Webcatsolutions</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Webcatsolutions"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Webcatsolutions"/>
	<updated>2026-05-15T07:24:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583207</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583207"/>
		<updated>2018-12-06T09:55:40Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot; ===Maak geen gebruik van PHP allow_url_include===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Maak geen gebruik van PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== Bestandsrechten ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Bestanden: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP bestanden: 600 (400 als je paranoïde bent)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Kapotte site door een foutieve upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/61/nl&amp;diff=583206</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/61/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/61/nl&amp;diff=583206"/>
		<updated>2018-12-06T09:55:40Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot; ===Maak geen gebruik van PHP allow_url_include===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===Maak geen gebruik van PHP allow_url_include===&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583205</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583205"/>
		<updated>2018-12-06T09:54:56Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;== Bestandsrechten ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== Bestandsrechten ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Bestanden: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP bestanden: 600 (400 als je paranoïde bent)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Kapotte site door een foutieve upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/66/nl&amp;diff=583204</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/66/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/66/nl&amp;diff=583204"/>
		<updated>2018-12-06T09:54:56Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;== Bestandsrechten ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bestandsrechten ==&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583203</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583203"/>
		<updated>2018-12-06T09:54:07Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;PHP bestanden: 600 (400 als je paranoïde bent)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== File permissions ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Bestanden: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP bestanden: 600 (400 als je paranoïde bent)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Kapotte site door een foutieve upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/75/nl&amp;diff=583202</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/75/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/75/nl&amp;diff=583202"/>
		<updated>2018-12-06T09:54:06Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;PHP bestanden: 600 (400 als je paranoïde bent)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PHP bestanden: 600 (400 als je paranoïde bent)&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583201</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583201"/>
		<updated>2018-12-06T09:53:10Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Bestanden: 644&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== File permissions ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Bestanden: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP files: 600 (400 if you are truly paranoid)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Kapotte site door een foutieve upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/69/nl&amp;diff=583200</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/69/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/69/nl&amp;diff=583200"/>
		<updated>2018-12-06T09:53:10Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Bestanden: 644&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bestanden: 644&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583199</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583199"/>
		<updated>2018-12-06T09:52:50Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Kapotte site door een foutieve upgrade.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== File permissions ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Files: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP files: 600 (400 if you are truly paranoid)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Kapotte site door een foutieve upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/84/nl&amp;diff=583198</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/84/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/84/nl&amp;diff=583198"/>
		<updated>2018-12-06T09:52:50Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Kapotte site door een foutieve upgrade.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kapotte site door een foutieve upgrade.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583197</id>
		<title>Security Checklist/Hosting and Server Setup/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Security_Checklist/Hosting_and_Server_Setup/nl&amp;diff=583197"/>
		<updated>2018-12-06T09:51:42Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{:Security Checklist/TOC}}&lt;br /&gt;
== Choose a Qualified Hosting Provider ==&lt;br /&gt;
&lt;br /&gt;
===The most important decision===&lt;br /&gt;
: Probably no decision is more critical to site security than the choice of hosts and servers. However, due to the wide variety of hosting options and configurations, it&#039;s not possible to provide a complete list for all situations. Check this [https://resources.joomla.org/en/category/hosting-providers list of hosts] who meet the security requirements of a typical Joomla site. ([[S:MyLanguage/Security_and_Performance_FAQs#How_do_I_choose_a_quality_hosting_provider.3F|FAQ]])&lt;br /&gt;
===Shared server risks===&lt;br /&gt;
: If you are on a tight budget and your site does not process highly confidential data, you can probably get by with a shared server, but you must understand the unavoidable risks. Most of the tips listed below are appropriate for securing sites on shared server environments.&lt;br /&gt;
==Configuring Apache==&lt;br /&gt;
===Use Apache .htaccess===&lt;br /&gt;
&#039;&#039;See also [[S:MyLanguage/htaccess examples (security)|.htaccess examples]]&#039;&#039;&lt;br /&gt;
: Block typical exploit attempts with local Apache &#039;&#039;.htaccess&#039;&#039; files. This option is not enabled on all servers. Check with your host if you run into problems. Using &#039;&#039;.htaccess&#039;&#039;, you can password protect sensitive directories, such as administrator, restrict access to sensitive directories by IP Address, and depending on your server&#039;s configuration, you may be able to increase security by switching  to PHP7.&lt;br /&gt;
&lt;br /&gt;
: Joomla ships with a [[S:MyLanguage/Preconfigured htaccess|preconfigured .htaccess]] file, but *you* need to choose to use it. The file is called htaccess.txt. To use it, rename it to .htaccess and place it in the root of your site using FTP. One important point to note is that as the distributed file is called htaccess.txt and the live file on your site is called .htaccess, the file your site actually uses is NOT updated when you update your site to use to a new version of Joomla. You must manually make the changes to use the new file version. &lt;br /&gt;
&lt;br /&gt;
: Consider following the &amp;quot;Least Privilege&amp;quot; principle for running PHP using tools such as PHPsuExec, php_suexec or suPHP. (Note: These are advanced methods that require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.) &lt;br /&gt;
&lt;br /&gt;
: Consider using a serverside filtering solution like Apache mod_security - a great starting point is the OWASP ModSecurity [https://coreruleset.org/ CoreRuleSet]&lt;br /&gt;
&lt;br /&gt;
===PHP Being Run as an Apache Module===&lt;br /&gt;
&lt;br /&gt;
This causes ownership issues and thus permission problems which will lead to security issues. It is better to select a server setup/host that runs php as a cgi process (such as cgi-fcgi) along with using phpSuExec or a similar configuration. &lt;br /&gt;
&lt;br /&gt;
The two best tutorials and explanations on permissions, ownerships and their relations are from this official Joomla doc page:&lt;br /&gt;
*[[S:MyLanguage/Where can you learn more about file permissions?|File Permissions]] &lt;br /&gt;
*[[S:MyLanguage/Why_can&#039;t_you_install_any_extensions%3F#File_ownership_advice_from_ianmac|File ownership advice]]&lt;br /&gt;
&lt;br /&gt;
Specific topics to read would be the following two:&lt;br /&gt;
*[[S:MyLanguage/How do UNIX file permissions work?|Unix Permissions Primer]]&lt;br /&gt;
And for information on phpSuExec and similar implementations:&lt;br /&gt;
*[[S:MyLanguage/Using phpSuExec|Using phpSuExec]]&lt;br /&gt;
===Use Apache mod_security===&lt;br /&gt;
: Configure Apache mod_security and mod_rewrite filters to block PHP attacks. See [https://www.google.com/search?q=apache%20mod_security Google search for mod_security] and [https://www.google.com/search?q=apache%20mod_rewrite Google search for mod_rewrite]. (Note: These are advanced methods that usually require agreement and coordination with your hosting provider. Such options are enabled or disabled on a server-wide basis and are not individually adjustable on shared servers.)&lt;br /&gt;
==Configuring MySQL== &lt;br /&gt;
===Secure the database===&lt;br /&gt;
: Be sure MySQL accounts are set with limited access. The initial install of MySQL is insecure and careful configuration is required. (See the [http://dev.mysql.com/doc/ MySQL Manuals]) Note: This item applies only to those administering their own servers, such as dedicated servers. Users of shared servers are dependent on their hosting provider to set proper database security.)&lt;br /&gt;
== Configuring PHP==&lt;br /&gt;
===Understand how PHP works===&lt;br /&gt;
: Understand how to work with the php.ini file, and how PHP configurations are controlled. Study the [http://us3.php.net/manual/en/ini.php#ini.list Official List of php.ini Directives] at http://www.php.net, and the well-documented default php.ini file included with every PHP install. &lt;br /&gt;
===Use PHP7===&lt;br /&gt;
PHP versions become deprecated and has become obsolete. Some hosting providers still have several available on servers to support outdated scripts. Joomla should be using PHP7.x. (See [https://downloads.joomla.org/technical-requirements Joomla Requirements])&lt;br /&gt;
===Use local php.ini files===&lt;br /&gt;
: On shared servers you can&#039;t edit the main php.ini file, but you may be able to add custom, local php.ini files. If so, you&#039;ll need to copy the php.ini files to every sub-directory that requires custom settings. &lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;There are a few important things to keep in mind.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files &#039;&#039;&#039;&#039;&#039;only&#039;&#039;&#039;&#039;&#039; have an effect if your server is configured to use them. This includes a &#039;&#039;php.ini&#039;&#039; file in your &#039;&#039;http_root&#039;&#039; directory. You can test whether or not these file affect your site by setting an obvious directive in the local &#039;&#039;php.ini&#039;&#039; file to see if it affects your site.&lt;br /&gt;
# Local &#039;&#039;php.ini&#039;&#039; files only affect &#039;&#039;.php&#039;&#039; files that are located within the same directory (or included() or required() from those files). This means that there are normally only two Joomla! directories in which you would want to place a &#039;&#039;php.ini&#039;&#039; file. They are your &#039;&#039;http_root&#039;&#039;(your actual directory name may vary), which is where Joomla&#039;s Front-end &#039;&#039;index.php&#039;&#039; file is located, and the Joomla! &#039;&#039;administrator&#039;&#039; directory, which is where the backend administrator &#039;&#039;index.php&#039;&#039; file is located. Other directories that don&#039;t have files called via the Web do not need local &#039;&#039;php.ini&#039;&#039; files.&lt;br /&gt;
# If you have a &#039;&#039;php.ini&#039;&#039; file in every directory, some script probably did this for you. If you didn&#039;t intend it to happen, you probably should root them out, but given #2 above, you probably only have to panic about the &#039;&#039;php.ini&#039;&#039; files in &#039;&#039;http_root&#039;&#039; and the &#039;&#039;administrator&#039;&#039; directories.&lt;br /&gt;
===Use PHP disable_functions===&lt;br /&gt;
: Use &#039;&#039;disable_functions&#039;&#039; to disable dangerous PHP functions that are not needed by your site. Here is a typical setup for a Joomla! site:&lt;br /&gt;
&lt;br /&gt;
      disable_functions = show_source, system, shell_exec, passthru, exec, phpinfo, popen, proc_open&lt;br /&gt;
===Consider Using PHP open_basedir===&lt;br /&gt;
: You &#039;&#039;might&#039;&#039; consider enabling &#039;&#039;open_basedir&#039;&#039;.  This directive limits the files that can be opened by PHP to the specified directory-tree. This directive is NOT affected by whether Safe Mode is ON or OFF. &lt;br /&gt;
&lt;br /&gt;
: The restriction specified with open_basedir is a prefix, not a directory name. This means that &#039;&#039;open_basedir = /dir/incl&#039;&#039; allows access to &#039;&#039;/dir/include&#039;&#039; and &#039;&#039;/dir/incls&#039;&#039; if they exist. To restrict access to only the specified directory, end with a slash. For more information, see [http://us3.php.net/manual/en/features.safe-mode.php#ini.safe-mode PHP Security and Safe Mode Configuration Directives].&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html&lt;br /&gt;
&lt;br /&gt;
: Additionally, if &#039;&#039;open_basedir&#039;&#039; is set it may be necessary to set PHP &#039;&#039;upload_tmp_dir&#039;&#039; configuration directive to a path that falls within the scope of &#039;&#039;open_basedir&#039;&#039; or, alternatively, add the &#039;&#039;upload_tmp_dir&#039;&#039; path to &#039;&#039;open_basedir&#039;&#039; using the appropriate path separator for the host system.&lt;br /&gt;
&lt;br /&gt;
     open_basedir = /home/users/you/public_html:/tmp&lt;br /&gt;
&lt;br /&gt;
: PHP will use the system&#039;s temporary directory when &#039;&#039;upload_tmp_dir&#039;&#039; is not set or when it is set but the directory does not exist, therefore it may be necessary to add it to &#039;&#039;open_basedir&#039;&#039; as above to avoid uploading errors within Joomla.&lt;br /&gt;
&lt;br /&gt;
===Adjust magic_quotes_gpc===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been depreciated as of PHP 5.3.0 (30-06-2009) and has been removed from php as of PHP 5.4.0.&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Adjust the &#039;&#039;magic_quotes_gpc&#039;&#039; directive as needed for your site.&lt;br /&gt;
*Joomla! 3.0 and above &#039;&#039;&#039;requires&#039;&#039;&#039; &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off and will not install if &#039;&#039;magic_quotes_gpc&#039;&#039; is on. &lt;br /&gt;
*Joomla! advises &#039;&#039;magic_quotes_gpc&#039;&#039; to be set to off when using Joomla 2.5.xx.&lt;br /&gt;
*Joomla! 1.5 ignores the magic_quotes setting and works fine either way. The safest method is to turn magic_quotes_gpc off and avoid all poorly-written extensions.&lt;br /&gt;
*The recommended settings for Joomla! 1.0.x is ON to protect against poorly-written third-party extensions. &lt;br /&gt;
&lt;br /&gt;
: For more information, see either [[S:MyLanguage/Magic quotes and security|Magic quotes and security]] or [http://php.net/magic_quotes PHP Manual, Chapter 31. Magic Quotes].&lt;br /&gt;
&lt;br /&gt;
 to turn off    magic_quotes_gpc = 0&lt;br /&gt;
 to turn on     magic_quotes_gpc = 1&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP safe_mode===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Relying on this feature is highly discouraged. Avoid the use of PHP safe_mode. This was an attempt to solve shared security problems and provides a false sense of security.  Safe mode can also cause ownership problems with applications and any files created by the applications. See the official PHP site for more information. [http://php.net/manual/en/features.safe-mode.php PHP Manual: Safe Mode]&lt;br /&gt;
&lt;br /&gt;
      safe_mode = 0&lt;br /&gt;
===Don&#039;t use PHP register_globals===&lt;br /&gt;
: &#039;&#039;&#039; &amp;lt;small&amp;gt;&#039;&#039;This PHP feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: Automatically registering global variables was probably one of the dumbest decisions the developers of PHP made. This directive determines whether or not to register the EGPCS (Environment, GET, POST, Cookie, Server) variables as global variables where they become immediately available to all PHP scripts, and where they can easily overwrite your own variable if you&#039;re not careful. Luckily, the PHP developers long since realized the mistake and have deprecated this &#039;feature&#039;. &lt;br /&gt;
&lt;br /&gt;
: If your site is on a shared server with a hosting provider that insists &#039;&#039;register_globals&#039;&#039; must be on, you should be very worried. Although you can often turn register_globals off for your own site with a local php.ini file, this adds little security as other sites on the same server remain vulnerable to attacks which can then launch attacks against your site from within the server.&lt;br /&gt;
&lt;br /&gt;
: For more information, see [http://php.net/manual/en/security.globals.php PHP Manual: Using Register Globals].&lt;br /&gt;
&lt;br /&gt;
      register_globals = 0&lt;br /&gt;
&lt;br /&gt;
===Don&#039;t use PHP allow_url_include===&lt;br /&gt;
&lt;br /&gt;
: Do not use PHP &#039;&#039;allow_url_include&#039;&#039;. This PHP option allows a programmer to include a remote file using an URL rather than a local file path. This is insecure. If an application (or extension) can be tricked into including content from a URL outside itself, an attacker could force the application (or extension) to start running code from their own web site. If an application or extension claims to require this feature to function, you should look into alternatives, as a requirement to use of this feature indicates serious design flaws within the application or extension.&lt;br /&gt;
&lt;br /&gt;
=== Use allow_url_fopen ===&lt;br /&gt;
: This option enables the URL-aware fopen wrappers that enable accessing URL object like files. Default wrappers are provided for the access of remote files using the ftp or http protocol, some extensions like zlib may register additional wrappers. Note: This can only be set in php.ini due to security reasons. &#039;&#039;&#039;Enable and use allow_url_fopen to allow Joomla&#039;s One-Click-Update to work properly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
: For more information see: [http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen PHP Manual: allow_url_fopen and allow_url_include]&lt;br /&gt;
&lt;br /&gt;
    Proper setup will have this:&lt;br /&gt;
                 allow_url_fopen = 1&lt;br /&gt;
               allow_url_include = 0&lt;br /&gt;
   &lt;br /&gt;
    PHP default: allow_url_fopen is enabled&lt;br /&gt;
    PHP default: allow_url_include is disabled&lt;br /&gt;
&lt;br /&gt;
== File permissions ==&lt;br /&gt;
: If a Joomla installation is hosted on Apache with mod_php, then all virtual hosts on that server run in the same context as your joomla code.  If the files are owned by some other user than &#039;nobody&#039; or &#039;wwwrun&#039;, the safest permissions are those which &#039;&#039;&#039;prevent&#039;&#039;&#039; changes to the joomla code, unless via an authorised channel (e.g. FTP:&lt;br /&gt;
*DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
*Files: 644&lt;br /&gt;
*Directories: 755 (711 if you are paranoid, but not for directories which need to be listed) (owner: some user)&lt;br /&gt;
&lt;br /&gt;
: With these permissions set, you will need to use FTP to update your Joomla installation.  Not all modules support this.  Remove modules which do not support FTP upgrades.&lt;br /&gt;
&lt;br /&gt;
: Other processes running under mod_php can read &#039;&#039;&#039;your&#039;&#039;&#039; configuration.php.  You can frustrate automated hacks by renaming this file.  You should not store your FTP password in your configuration file on such hosts, as your account &#039;&#039;will&#039;&#039; be compromised.&lt;br /&gt;
&lt;br /&gt;
: If a Joomla installation is hosted on Apache with fast-cgi, suphp or cgi that runs as a different user, then you should set your permissions as follows:&lt;br /&gt;
* DocumentRoot directory: 750 (e.g. public_html)&lt;br /&gt;
* PHP files: 600 (400 if you are truly paranoid)&lt;br /&gt;
* HTML and image files: 644 (444 if you are truly paranoid)&lt;br /&gt;
* Directories: 755 (711 if you are paranoid, but not for directories which need to be listed)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;If&#039;&#039;&#039; the server your are on requires 777 permissions for Joomla to work correctly, then &#039;&#039;&#039;request to be put on another server&#039;&#039;&#039; with php as cgi and suphp and up-to-date serverside software (apache, php etc) on your existing host or find another server host if necessary.&lt;br /&gt;
&lt;br /&gt;
: Do check with your hosting provider to see if they have purposely secured the server your site is on; and that they or you perform regular (weekly) security updates to keep the server up to date. Check you have jail shell. A rule of thumb is the less you pay, the less they care.&lt;br /&gt;
&lt;br /&gt;
: More information on file permissions can be found here: [[S:MyLanguage/Security Checklist/Where can you learn more about file permissions?|File permissions]]&lt;br /&gt;
&lt;br /&gt;
==Setup a backup and recovery process==&lt;br /&gt;
===The most important rule===&lt;br /&gt;
: You should at all time be able to return your site to a previous working state through regular use of a strong, off-site backup and recovery process. Be sure your backup and recovery process is in place and tested BEFORE you go live. This is the single best way (and often the only way) to recover from such inevitable catastrophes as:&lt;br /&gt;
&lt;br /&gt;
#Broken site due to a faulty upgrade.&lt;br /&gt;
#Hardware failure, such as dead hard drives, power failures, server theft, etc.&lt;br /&gt;
#Authoritarian government intervention. (More common than some think.)&lt;br /&gt;
#Needing to quickly relocate to a new server or hosting provider.&lt;br /&gt;
&lt;br /&gt;
: Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Security Checklist{{#translation:}}]]&lt;br /&gt;
[[Category:Server configurations{{#translation:}}]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/88/nl&amp;diff=583196</id>
		<title>Translations:Security Checklist/Hosting and Server Setup/88/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Security_Checklist/Hosting_and_Server_Setup/88/nl&amp;diff=583196"/>
		<updated>2018-12-06T09:51:42Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Het wordt afgeraden om een gehackte website te herstellen via backup bestanden, omdat het mogelijk is dat de backups de aangepaste en gehackte bestanden bevat. Het gebruik van de backups om een gehackte site te herstellen, zal juist de hack weer terugzetten.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Components_Cache_Manager_Settings/nl&amp;diff=389987</id>
		<title>Help310:Components Cache Manager Settings/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Components_Cache_Manager_Settings/nl&amp;diff=389987"/>
		<updated>2017-03-31T12:41:50Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;==Hoe toegang te krijgen==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{tip|title=This page needs your help&lt;br /&gt;
|text = If you want to help the Joomla! Documentation Team with the Administrator Help Screens, please consider joining the [https://volunteers.joomla.org/teams/documentation-helpscreen-team Documentation Helpscreen Team].&lt;br /&gt;
}}&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
==Kolomkoppen==&lt;br /&gt;
==Opties==&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
==Lijst filters==&lt;br /&gt;
==Verwante Informatie==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Components_Cache_Manager_Settings/4/nl&amp;diff=389986</id>
		<title>Translations:Help36:Components Cache Manager Settings/4/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Components_Cache_Manager_Settings/4/nl&amp;diff=389986"/>
		<updated>2017-03-31T12:41:49Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;==Hoe toegang te krijgen==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Hoe toegang te krijgen==&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389979</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389979"/>
		<updated>2017-03-31T12:40:32Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;====Algemene opties====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Tabblad Gegevens===&lt;br /&gt;
====Verplicht====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Algemene opties====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/24/nl&amp;diff=389978</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/24/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/24/nl&amp;diff=389978"/>
		<updated>2017-03-31T12:40:31Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;====Algemene opties====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====Algemene opties====&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389977</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389977"/>
		<updated>2017-03-31T12:40:17Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;====Verplicht====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Tabblad Gegevens===&lt;br /&gt;
====Verplicht====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/13/nl&amp;diff=389976</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/13/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/13/nl&amp;diff=389976"/>
		<updated>2017-03-31T12:40:17Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;====Verplicht====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====Verplicht====&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389973</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389973"/>
		<updated>2017-03-31T12:40:05Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;===Tabblad Gegevens===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Tabblad Gegevens===&lt;br /&gt;
====Required====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/12/nl&amp;diff=389972</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/12/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/12/nl&amp;diff=389972"/>
		<updated>2017-03-31T12:40:04Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;===Tabblad Gegevens===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Tabblad Gegevens===&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389969</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389969"/>
		<updated>2017-03-31T12:39:31Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;==Gegevens==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Details Tab===&lt;br /&gt;
====Required====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/11/nl&amp;diff=389968</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/11/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/11/nl&amp;diff=389968"/>
		<updated>2017-03-31T12:39:31Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;==Gegevens==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Gegevens==&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389959</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389959"/>
		<updated>2017-03-31T12:39:06Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
===Details Tab===&lt;br /&gt;
====Required====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389958</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/45/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389958"/>
		<updated>2017-03-31T12:39:05Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;nl&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389953</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389953"/>
		<updated>2017-03-31T12:38:44Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-en.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
===Details Tab===&lt;br /&gt;
====Required====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389952</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/45/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389952"/>
		<updated>2017-03-31T12:38:44Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;en&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389951</id>
		<title>Help310:Menus Menu Item Menu Item Alias/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Menu_Item_Alias/nl&amp;diff=389951"/>
		<updated>2017-03-31T12:38:11Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe toegang te krijgen==&lt;br /&gt;
To create a new Alias Menu Item:&lt;br /&gt;
* Select {{rarr|Menus,[name of the menu]}} from the drop-down menu on the back-end of your Joomla! installation (for example, {{rarr|Menus,Main Menu}}).&lt;br /&gt;
* Click the New Toolbar button to create a new menu item.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Menu Item Alias link under System Links.&lt;br /&gt;
&lt;br /&gt;
To edit an existing Menu Item Alias, click its Title in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menu Manager: Menu Items]].&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Used to create a link from one Menu Item to another Menu Item. This link can be to another Menu&#039;s, Menu Item or within the same Menu. See [[S:MyLanguage/Help31:Menus Menu Item Menu Item Alias#Quick_Tips|Quick Tips]] for use.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[File:Help-Menus-Menu-Item-Alias-screenshot-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
===Details Tab===&lt;br /&gt;
====Required====&lt;br /&gt;
These are the required settings:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item/en}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
====Notable Settings====&lt;br /&gt;
Leave the Alias blank if the Menu Item Alias has the same Parent (in the same Menu Name).&lt;br /&gt;
*{{Chunk30:colheader|Alias/nl}}&lt;br /&gt;
&lt;br /&gt;
====Common Options====&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: Edit/New Menu Item]] for help on fields common to all Menu Item types, under the &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Advanced Details Tab]]&#039;&#039;&#039; which includes:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Link Type Options]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Module Assignments Tab===&lt;br /&gt;
See [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu Item Manager: New Menu Item]] for help on fields in &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Module Assignments]]&#039;&#039;&#039; for this Menu Item.&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
*Leave the alias field empty if the menu item alias and the menu item linked to by the alias have the same parent.&lt;br /&gt;
&lt;br /&gt;
*A Main Menu Item Alias could link to an Article Menu&#039;s &#039;Some Menu Type&#039; Menu Item. By using Module Assignments, a possible use would be to replace the Main Menu with the Article Menu when the Alias Menu Item is clicked. A return to Main Menu when another Alias Menu Item is clicked pointed back to a Menu Item in the Main Menu.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
At the top left you will see the toolbar:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group]]&lt;br /&gt;
[[Category:Help screens]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens]]&lt;br /&gt;
[[Category:Menus Help Screens]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389950</id>
		<title>Translations:Help36:Menus Menu Item Menu Item Alias/45/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Menu_Item_Alias/45/nl&amp;diff=389950"/>
		<updated>2017-03-31T12:38:11Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;nl&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389934</id>
		<title>Help310:Menus Menu Item Article Archived/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389934"/>
		<updated>2017-03-31T12:32:19Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe te beginnen==&lt;br /&gt;
Om een nieuw &#039;Gearchiveerd artikel&#039; menu-item te maken:&lt;br /&gt;
* Selecteer {{rarr|Menu&#039;s,[naam van het menu]}} uit het drop-down menu in de back-end van uw Joomla! installatie (bijvoorbeeld {{rarr|Menu&#039;s,Hoofdmenu}}).&lt;br /&gt;
* Klik op de knop Nieuw in de werkbalk om een nieuw menu-item te maken.&lt;br /&gt;
* Klik op de Menu-itemtype Selecteren knop [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&lt;br /&gt;
&lt;br /&gt;
Om een bestaand  Gearchiveerd artikel menu-item te bewerken, klikt u op de titel in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menubeheer: Menu-items]].&lt;br /&gt;
&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
Wordt gebruikt om een lijst met gearchiveerde artikelen te tonen. De lijst met gearchiveerde artikelen kan worden getoond op datum, gefilterd en met de introductietekst zoals hieronder.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[Image:Help30-Menus-Menu-Item-Article-Archived-screen-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Gearchiveerde artikelen worden niet meer gepubliceerd maar worden nog steeds op de site opgeslagen. Artikelen worden gearchiveerd met behulp met het [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]] scherm. Let op dat artikelen gekoppeld aan de &amp;quot;Niet gecategoriseerd&amp;quot; categorie niet getoond wordt in de lijst met gearchiveerde artikelen.&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Gegevens Tab===&lt;br /&gt;
====Verplichte instellingen====&lt;br /&gt;
Het gearchiveerde artikelen menu-item heeft de volgende verplichte instellingen:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu/nl}}&lt;br /&gt;
&lt;br /&gt;
===Geavanceerde details tabblad===&lt;br /&gt;
====Archief opties====&lt;br /&gt;
De gearchiveerde artikelen weergave heeft de volgende archief opties, zoals hieronder getoond.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Article-Archived-archive-options-subscreen-nl.png]]&lt;br /&gt;
*&#039;&#039;&#039;Artikel volgorde.&#039;&#039;&#039; De volgorde van artikelen in deze weergave. De volgende opties zijn beschikbaar. &lt;br /&gt;
** &#039;&#039;Oudste eerst:&#039;&#039; Artikelen worden getoond met de oudste als eerste en eindigen met de nieuwste.&lt;br /&gt;
** &#039;&#039;Meest recente eerst:&#039;&#039; Artikelen worden getoond te beginnen met de nieuwste en eindigend met de oudste.&lt;br /&gt;
** &#039;&#039;Titel alfabetisch:&#039;&#039; Artikelen worden op titel alfabetisch gesorteerd getoond (A to Z)&lt;br /&gt;
** &#039;&#039;Titel alfabetisch omgekeerd:&#039;&#039; Artikelen worden getoond op de titel in omgekeerd alfabetische volgorde (Z tot A)&lt;br /&gt;
** &#039;&#039;Author Alphabetical:&#039;&#039; Articles are displayed by Author in alphabetical order (A to Z)&lt;br /&gt;
** &#039;&#039;Author Reverse Alphabetical:&#039;&#039; Articles are displayed by Author in reverse alphabetical order (Z to A)&lt;br /&gt;
** &#039;&#039;Meeste hits:&#039;&#039; Artikelen worden getoond op het aantal weergaven door het aantal hits, te beginnen met de meeste hits en eindigen met de minste hits.&lt;br /&gt;
** &#039;&#039;Minste hits:&#039;&#039; Artikelen worden getoond door het aantal hits, te beginnen met de minste hits en eindigend met de meeste hits.&lt;br /&gt;
** &#039;&#039;Volgorde:&#039;&#039; Artikelen worden gesorteerd volgens de Volgorde kolom opgegeven in Artikelbeheer.&lt;br /&gt;
{{Chunk30:colheader|Date for Ordering/nl}}&lt;br /&gt;
{{Chunk30:colheader|No Articles to List/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Filterveld.&#039;&#039;&#039; (Gebruik algemeen/Verberg/Toon) Of een filterveld getoond moet worden voor een lijst met artikelen. Indien verborgen, wordt er geen filterveld getoond. Anders wordt het filterveld getoond volgens de algemeen instellingen.&lt;br /&gt;
*&#039;&#039;&#039;Limiet introtekst.&#039;&#039;&#039; Het maximum aantal tekens dat in de introtekst getoond moet worden. Indien de introtekst langer is als deze waarde dan wordt het afgekapt op deze lengte.&lt;br /&gt;
&lt;br /&gt;
====Artikel opties====&lt;br /&gt;
De Gearchiveerde artikelen optie heeft de volgende opties, zoals hieronder getoond. Deze opties bepalen hoe artikelen getoond worden op de website.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Item-Article-Single-Article-options-modal-article-options-tab-nl.png]]&lt;br /&gt;
&lt;br /&gt;
Let op dat de opties &amp;quot;&#039;&#039;&#039;Gebruik algemeen&#039;&#039;&#039;&amp;quot; bevatten. Indien dit geselecteerd is, dan worden de instellingen van de [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer opties]] gebruikt.&lt;br /&gt;
{{Chunk30:colheader|Show Intro Text/nl}}&lt;br /&gt;
{{Chunk30:colheader|Position of Article Info/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Article Info Title.&#039;&#039;&#039; Displays the &#039;Article Info&#039; title on top of the article information block.&lt;br /&gt;
{{Chunk30:colheader|Show Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Linked Titles/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Create Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Modify Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Publish Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Navigation/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Hits/nl}}&lt;br /&gt;
&lt;br /&gt;
===Algemene opties===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu-item bewerken]] onder de &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Gegevens]]&#039;&#039;&#039; voor hulp bij velden die voor alle menu items gelijk zijn, hieronder vallen:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Linktype opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Page Display Options|Paginaweergave opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Metadata Options|Metadata opties]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Moduletoewijzing tab===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu item bewerken]] voor hulp met betrekking tot de  &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Moduletoewijzing]]&#039;&#039;&#039; velden.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
Aan de bovenkant links ziet u de werkbalk:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-SaveCopy-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAsCopy/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
* De gearchiveerde artikelen weergave geeft u de mogelijkheid oude of verlopen artikelen te benaderen die u niet geheel van de website wilt verwijderen.&lt;br /&gt;
* Indien u oude artikelen wilt zien een categorie blog of lijst, maak dan een categorie aan voor ouder artikelen en verplaats de artikelen naar deze categorie (in plaats van de status te wijzigen naar gearchiveerd).&lt;br /&gt;
&lt;br /&gt;
==Verwante informatie==&lt;br /&gt;
* Artikelen worden gearchiveerd met behulp van [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]].&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Put the next statement outsite this comment to check if there are new rows needed (or old deleted) in the table under this comment It lists related documents):&lt;br /&gt;
{{relatedhelp|Article|not=/}}&lt;br /&gt;
If you find new ones please add them to the table.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Verwante helpschermen !! Beschrijving&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Components_Article_Manager_Options|Component artikelbeheer opties]] || Wordt gebruikt om de algemene standaards voor menu-items die artikelen tonen in te stellen. Deze standaard waarden worden gebruikt als &amp;quot;Gebruik algemeen&amp;quot; wordt geselecteerd als optie in een artikel menu-item. Om bijvoorbeeld de &#039;Aanmaak datum&#039; te tonen bij een artikel in uw artikel menu-items, zet die optie dan hier op &amp;quot;Toon&amp;quot; en het wordt de standaard waarde. U hoeft geen van deze opties in te stellen. Uw Joomla site zal met de standaard instellingen werken.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager|Inhoud artikelbeheer]] || Artikelbeheer wordt gebruikt voor het vinden, markeren, toevoegen en bewerken van artikelen. Zie [[Special:MyLanguage/Help30:Content_Article_Manager#Toolbar|Werkbalk]] hieronder voor een gedetailleerde lijst van alle functies.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager_Edit|Inhoud artikelbeheer bewerken]] || Dit is het beheergedeelte scherm waar u artikelen kunt toevoegen en bewerken. Hetzelfde scherm wordt gebruikt voor het toevoegen van nieuwe artikelen en het bewerken van een bestaand artikel. U kunt ook de sectie en categorie van een artikel selecteren en aangeven of een artikel al dan niet gepubliceerd wordt en of het op de voorpagina moet worden getoond.&lt;br /&gt;
De artikelinhoud wordt bewerkt met de standaard tekstverwerker die gekozen wordt in [[Special:MyLanguage/Help30:Users_User_Manager_Edit|Gebruikersbeheer - Nieuw/Bewerk]]. De standaard Joomla! tekstverwerker heet TinyMCE.&lt;br /&gt;
Een aantal parameters kunnen ingesteld worden voor het artikel. Metadata kunnen ook opgegeven worden.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Featured_Articles|Inhoud speciale artikelen]] || Wordt gebruikt om te bepalen welk &#039;speciale artikel&#039; getoond worden op de voorpagina en in welke volgorde ze worden getoond. De voorpagina is vaak de startpagina van een website, maar het kan iedere pagina op de site zijn. De voorpagina wordt aangemaakt met een menu-item met het &#039;Speciale artikelen&#039; menu-itemtype.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Categories|Menu&#039;s - Menu-item - Artikel categorieën]] || Wordt gebruikt om een lijst met categorieën te tonen. Categorieën worden getoond in een hiërarchische lijst, zoals hieronder getoond. Afhankelijk van de geselecteerde opties voor de lay-out, kunt u op een categorietitel drukken om de artikelen in die categorie te tonen.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_Blog|Menu&#039;s - Menu-item - Artikel categorie blog]] || Wordt gebruikt om artikelen in een bepaalde categorie in blog lay-out te tonen. Regelt de introductie ofwel het leidende artikel, aanvullende artikelen met intro tekst en extra links naar meer artikelen in dezelfde categorie. Enkele voorbeelden van de instellingen voor het blog lay-out formaat zijn: aantal artikelen, artikel kolommen, horizontale of verticale lay-out en het aantal extra links. Zie [[S:MyLanguage/Help30:Menus Menu Item Article Category Blog#Advanced Details Tab|het geavanceerde detail tabblad]]  voor alles over dit menu-item.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_List|Menu&#039;s - Menu-item - Artikel categorie lijst]] || Wordt gebruikt om artikelen die tot een bepaalde categorie horen in een lijst weergave.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Create|Menu&#039;s - Menu-item - Artikel aanmaken]] || Geeft de mogelijkheid aan gebruikers om een artikel in te dienen. Normaliter is dit alleen beschikbaar voor gebruikers die ingelogd zijn op de website. Gebruikers moeten rechten hebben om artikelen aan te maken. Indien de maak-artikel pagina wordt getoond op de website, dan worden de voorbeeld-schermen getoond uit de volgende [[Special:MyLanguage/Help30:Menus_Menu_Item_Article_Create#Front_End_Screenshots|website schermafbeeldingen]] sectie.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Featured|Menu&#039;s - Menu-item - Speciale artikelen]] || Wordt gebruikt om alle artikelen te tonen die aangemerkt zijn als &#039;Speciaal&#039;. Artikelen worden getoond in blog lay-out.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Single_Article|Menu&#039;s - Menu-item - Artikel - Een enkel artikel]] || Wordt gebruikt om één artikel op de website te tonen.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0/nl|Helpscherm 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1/nl|Helpscherm 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2/nl|Helpscherm 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3/nl|Helpscherm 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4/nl|Helpscherm 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5/nl|Helpscherm 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6/nl|Helpscherm 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group/nl|Documentatie werkgroep]]&lt;br /&gt;
[[Category:Help screens/nl|Helpschermen]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens/nl|Menu-item helpschermen]]&lt;br /&gt;
[[Category:Menus Help Screens/nl|Menu helpschermen]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/5/nl&amp;diff=389933</id>
		<title>Translations:Help36:Menus Menu Item Article Archived/5/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/5/nl&amp;diff=389933"/>
		<updated>2017-03-31T12:32:19Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Klik op de Menu-itemtype Selecteren knop&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389928</id>
		<title>Help310:Menus Menu Item Article Archived/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389928"/>
		<updated>2017-03-31T12:26:31Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe te beginnen==&lt;br /&gt;
Om een nieuw &#039;Gearchiveerd artikel&#039; menu-item te maken:&lt;br /&gt;
* Selecteer {{rarr|Menu&#039;s,[naam van het menu]}} uit het drop-down menu in de back-end van uw Joomla! installatie (bijvoorbeeld {{rarr|Menu&#039;s,Hoofdmenu}}).&lt;br /&gt;
* Klik op de knop Nieuw in de werkbalk om een nieuw menu-item te maken.&lt;br /&gt;
* Klik op de Menu-itemtype Selecteren knop [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&lt;br /&gt;
&lt;br /&gt;
Om een bestaand  Gearchiveerd artikel menu-item te bewerken, klikt u op de titel in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menubeheer: Menu-items]].&lt;br /&gt;
&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
Wordt gebruikt om een lijst met gearchiveerde artikelen te tonen. De lijst met gearchiveerde artikelen kan worden getoond op datum, gefilterd en met de introductietekst zoals hieronder.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[Image:Help30-Menus-Menu-Item-Article-Archived-screen-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Gearchiveerde artikelen worden niet meer gepubliceerd maar worden nog steeds op de site opgeslagen. Artikelen worden gearchiveerd met behulp met het [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]] scherm. Let op dat artikelen gekoppeld aan de &amp;quot;Niet gecategoriseerd&amp;quot; categorie niet getoond wordt in de lijst met gearchiveerde artikelen.&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Gegevens Tab===&lt;br /&gt;
====Verplichte instellingen====&lt;br /&gt;
Het gearchiveerde artikelen menu-item heeft de volgende verplichte instellingen:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu/nl}}&lt;br /&gt;
&lt;br /&gt;
===Geavanceerde details tabblad===&lt;br /&gt;
====Archief opties====&lt;br /&gt;
De gearchiveerde artikelen weergave heeft de volgende archief opties, zoals hieronder getoond.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Article-Archived-archive-options-subscreen-nl.png]]&lt;br /&gt;
*&#039;&#039;&#039;Artikel volgorde.&#039;&#039;&#039; De volgorde van artikelen in deze weergave. De volgende opties zijn beschikbaar. &lt;br /&gt;
** &#039;&#039;Oudste eerst:&#039;&#039; Artikelen worden getoond met de oudste als eerste en eindigen met de nieuwste.&lt;br /&gt;
** &#039;&#039;Meest recente eerst:&#039;&#039; Artikelen worden getoond te beginnen met de nieuwste en eindigend met de oudste.&lt;br /&gt;
** &#039;&#039;Titel alfabetisch:&#039;&#039; Artikelen worden op titel alfabetisch gesorteerd getoond (A to Z)&lt;br /&gt;
** &#039;&#039;Titel alfabetisch omgekeerd:&#039;&#039; Artikelen worden getoond op de titel in omgekeerd alfabetische volgorde (Z tot A)&lt;br /&gt;
** &#039;&#039;Author Alphabetical:&#039;&#039; Articles are displayed by Author in alphabetical order (A to Z)&lt;br /&gt;
** &#039;&#039;Author Reverse Alphabetical:&#039;&#039; Articles are displayed by Author in reverse alphabetical order (Z to A)&lt;br /&gt;
** &#039;&#039;Meeste hits:&#039;&#039; Artikelen worden getoond op het aantal weergaven door het aantal hits, te beginnen met de meeste hits en eindigen met de minste hits.&lt;br /&gt;
** &#039;&#039;Minste hits:&#039;&#039; Artikelen worden getoond door het aantal hits, te beginnen met de minste hits en eindigend met de meeste hits.&lt;br /&gt;
** &#039;&#039;Volgorde:&#039;&#039; Artikelen worden gesorteerd volgens de Volgorde kolom opgegeven in Artikelbeheer.&lt;br /&gt;
{{Chunk30:colheader|Date for Ordering/nl}}&lt;br /&gt;
{{Chunk30:colheader|No Articles to List/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Filterveld.&#039;&#039;&#039; (Gebruik algemeen/Verberg/Toon) Of een filterveld getoond moet worden voor een lijst met artikelen. Indien verborgen, wordt er geen filterveld getoond. Anders wordt het filterveld getoond volgens de algemeen instellingen.&lt;br /&gt;
*&#039;&#039;&#039;Limiet introtekst.&#039;&#039;&#039; Het maximum aantal tekens dat in de introtekst getoond moet worden. Indien de introtekst langer is als deze waarde dan wordt het afgekapt op deze lengte.&lt;br /&gt;
&lt;br /&gt;
====Artikel opties====&lt;br /&gt;
De Gearchiveerde artikelen optie heeft de volgende opties, zoals hieronder getoond. Deze opties bepalen hoe artikelen getoond worden op de website.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Item-Article-Single-Article-options-modal-article-options-tab-nl.png]]&lt;br /&gt;
&lt;br /&gt;
Let op dat de opties &amp;quot;&#039;&#039;&#039;Gebruik algemeen&#039;&#039;&#039;&amp;quot; bevatten. Indien dit geselecteerd is, dan worden de instellingen van de [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer opties]] gebruikt.&lt;br /&gt;
{{Chunk30:colheader|Show Intro Text/nl}}&lt;br /&gt;
{{Chunk30:colheader|Position of Article Info/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Article Info Title.&#039;&#039;&#039; Displays the &#039;Article Info&#039; title on top of the article information block.&lt;br /&gt;
{{Chunk30:colheader|Show Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Linked Titles/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Create Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Modify Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Publish Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Navigation/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Hits/nl}}&lt;br /&gt;
&lt;br /&gt;
===Algemene opties===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu-item bewerken]] onder de &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Gegevens]]&#039;&#039;&#039; voor hulp bij velden die voor alle menu items gelijk zijn, hieronder vallen:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Linktype opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Page Display Options|Paginaweergave opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Metadata Options|Metadata opties]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Moduletoewijzing tab===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu item bewerken]] voor hulp met betrekking tot de  &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Moduletoewijzing]]&#039;&#039;&#039; velden.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
Aan de bovenkant links ziet u de werkbalk:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-SaveCopy-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAsCopy/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
* De gearchiveerde artikelen weergave geeft u de mogelijkheid oude of verlopen artikelen te benaderen die u niet geheel van de website wilt verwijderen.&lt;br /&gt;
* Indien u oude artikelen wilt zien een categorie blog of lijst, maak dan een categorie aan voor ouder artikelen en verplaats de artikelen naar deze categorie (in plaats van de status te wijzigen naar gearchiveerd).&lt;br /&gt;
&lt;br /&gt;
==Verwante informatie==&lt;br /&gt;
* Artikelen worden gearchiveerd met behulp van [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]].&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Put the next statement outsite this comment to check if there are new rows needed (or old deleted) in the table under this comment It lists related documents):&lt;br /&gt;
{{relatedhelp|Article|not=/}}&lt;br /&gt;
If you find new ones please add them to the table.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Verwante helpschermen !! Beschrijving&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Components_Article_Manager_Options|Component artikelbeheer opties]] || Wordt gebruikt om de algemene standaards voor menu-items die artikelen tonen in te stellen. Deze standaard waarden worden gebruikt als &amp;quot;Gebruik algemeen&amp;quot; wordt geselecteerd als optie in een artikel menu-item. Om bijvoorbeeld de &#039;Aanmaak datum&#039; te tonen bij een artikel in uw artikel menu-items, zet die optie dan hier op &amp;quot;Toon&amp;quot; en het wordt de standaard waarde. U hoeft geen van deze opties in te stellen. Uw Joomla site zal met de standaard instellingen werken.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager|Inhoud artikelbeheer]] || Artikelbeheer wordt gebruikt voor het vinden, markeren, toevoegen en bewerken van artikelen. Zie [[Special:MyLanguage/Help30:Content_Article_Manager#Toolbar|Werkbalk]] hieronder voor een gedetailleerde lijst van alle functies.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager_Edit|Inhoud artikelbeheer bewerken]] || Dit is het beheergedeelte scherm waar u artikelen kunt toevoegen en bewerken. Hetzelfde scherm wordt gebruikt voor het toevoegen van nieuwe artikelen en het bewerken van een bestaand artikel. U kunt ook de sectie en categorie van een artikel selecteren en aangeven of een artikel al dan niet gepubliceerd wordt en of het op de voorpagina moet worden getoond.&lt;br /&gt;
De artikelinhoud wordt bewerkt met de standaard tekstverwerker die gekozen wordt in [[Special:MyLanguage/Help30:Users_User_Manager_Edit|Gebruikersbeheer - Nieuw/Bewerk]]. De standaard Joomla! tekstverwerker heet TinyMCE.&lt;br /&gt;
Een aantal parameters kunnen ingesteld worden voor het artikel. Metadata kunnen ook opgegeven worden.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Featured_Articles|Inhoud speciale artikelen]] || Wordt gebruikt om te bepalen welk &#039;speciale artikel&#039; getoond worden op de voorpagina en in welke volgorde ze worden getoond. De voorpagina is vaak de startpagina van een website, maar het kan iedere pagina op de site zijn. De voorpagina wordt aangemaakt met een menu-item met het &#039;Speciale artikelen&#039; menu-itemtype.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Categories|Menu&#039;s - Menu-item - Artikel categorieën]] || Wordt gebruikt om een lijst met categorieën te tonen. Categorieën worden getoond in een hiërarchische lijst, zoals hieronder getoond. Afhankelijk van de geselecteerde opties voor de lay-out, kunt u op een categorietitel drukken om de artikelen in die categorie te tonen.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_Blog|Menu&#039;s - Menu-item - Artikel categorie blog]] || Wordt gebruikt om artikelen in een bepaalde categorie in blog lay-out te tonen. Regelt de introductie ofwel het leidende artikel, aanvullende artikelen met intro tekst en extra links naar meer artikelen in dezelfde categorie. Enkele voorbeelden van de instellingen voor het blog lay-out formaat zijn: aantal artikelen, artikel kolommen, horizontale of verticale lay-out en het aantal extra links. Zie [[S:MyLanguage/Help30:Menus Menu Item Article Category Blog#Advanced Details Tab|het geavanceerde detail tabblad]]  voor alles over dit menu-item.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_List|Menu&#039;s - Menu-item - Artikel categorie lijst]] || Wordt gebruikt om artikelen die tot een bepaalde categorie horen in een lijst weergave.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Create|Menu&#039;s - Menu-item - Artikel aanmaken]] || Geeft de mogelijkheid aan gebruikers om een artikel in te dienen. Normaliter is dit alleen beschikbaar voor gebruikers die ingelogd zijn op de website. Gebruikers moeten rechten hebben om artikelen aan te maken. Indien de maak-artikel pagina wordt getoond op de website, dan worden de voorbeeld-schermen getoond uit de volgende [[Special:MyLanguage/Help30:Menus_Menu_Item_Article_Create#Front_End_Screenshots|website schermafbeeldingen]] sectie.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Featured|Menu&#039;s - Menu-item - Speciale artikelen]] || Wordt gebruikt om alle artikelen te tonen die aangemerkt zijn als &#039;Speciaal&#039;. Artikelen worden getoond in blog lay-out.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Single_Article|Menu&#039;s - Menu-item - Artikel - Een enkel artikel]] || Wordt gebruikt om één artikel op de website te tonen.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0/nl|Helpscherm 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1/nl|Helpscherm 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2/nl|Helpscherm 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3/nl|Helpscherm 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4/nl|Helpscherm 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5/nl|Helpscherm 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6/nl|Helpscherm 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group/nl|Documentatie werkgroep]]&lt;br /&gt;
[[Category:Help screens/nl|Helpschermen]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens/nl|Menu-item helpschermen]]&lt;br /&gt;
[[Category:Menus Help Screens/nl|Menu helpschermen]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/5/nl&amp;diff=389927</id>
		<title>Translations:Help36:Menus Menu Item Article Archived/5/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/5/nl&amp;diff=389927"/>
		<updated>2017-03-31T12:26:30Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Klik op de Menu-itemtype Selecteren knop [[File:Help30-Menu-Item-Type-Select-Button-nl.png]]&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389922</id>
		<title>Help310:Menus Menu Item Article Archived/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389922"/>
		<updated>2017-03-31T12:25:19Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe te beginnen==&lt;br /&gt;
Om een nieuw &#039;Gearchiveerd artikel&#039; menu-item te maken:&lt;br /&gt;
* Selecteer {{rarr|Menu&#039;s,[naam van het menu]}} uit het drop-down menu in de back-end van uw Joomla! installatie (bijvoorbeeld {{rarr|Menu&#039;s,Hoofdmenu}}).&lt;br /&gt;
* Klik op de knop Nieuw in de werkbalk om een nieuw menu-item te maken.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&lt;br /&gt;
&lt;br /&gt;
Om een bestaand  Gearchiveerd artikel menu-item te bewerken, klikt u op de titel in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menubeheer: Menu-items]].&lt;br /&gt;
&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
Wordt gebruikt om een lijst met gearchiveerde artikelen te tonen. De lijst met gearchiveerde artikelen kan worden getoond op datum, gefilterd en met de introductietekst zoals hieronder.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[Image:Help30-Menus-Menu-Item-Article-Archived-screen-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Gearchiveerde artikelen worden niet meer gepubliceerd maar worden nog steeds op de site opgeslagen. Artikelen worden gearchiveerd met behulp met het [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]] scherm. Let op dat artikelen gekoppeld aan de &amp;quot;Niet gecategoriseerd&amp;quot; categorie niet getoond wordt in de lijst met gearchiveerde artikelen.&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Gegevens Tab===&lt;br /&gt;
====Verplichte instellingen====&lt;br /&gt;
Het gearchiveerde artikelen menu-item heeft de volgende verplichte instellingen:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu/nl}}&lt;br /&gt;
&lt;br /&gt;
===Geavanceerde details tabblad===&lt;br /&gt;
====Archief opties====&lt;br /&gt;
De gearchiveerde artikelen weergave heeft de volgende archief opties, zoals hieronder getoond.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Article-Archived-archive-options-subscreen-nl.png]]&lt;br /&gt;
*&#039;&#039;&#039;Artikel volgorde.&#039;&#039;&#039; De volgorde van artikelen in deze weergave. De volgende opties zijn beschikbaar. &lt;br /&gt;
** &#039;&#039;Oudste eerst:&#039;&#039; Artikelen worden getoond met de oudste als eerste en eindigen met de nieuwste.&lt;br /&gt;
** &#039;&#039;Meest recente eerst:&#039;&#039; Artikelen worden getoond te beginnen met de nieuwste en eindigend met de oudste.&lt;br /&gt;
** &#039;&#039;Titel alfabetisch:&#039;&#039; Artikelen worden op titel alfabetisch gesorteerd getoond (A to Z)&lt;br /&gt;
** &#039;&#039;Titel alfabetisch omgekeerd:&#039;&#039; Artikelen worden getoond op de titel in omgekeerd alfabetische volgorde (Z tot A)&lt;br /&gt;
** &#039;&#039;Author Alphabetical:&#039;&#039; Articles are displayed by Author in alphabetical order (A to Z)&lt;br /&gt;
** &#039;&#039;Author Reverse Alphabetical:&#039;&#039; Articles are displayed by Author in reverse alphabetical order (Z to A)&lt;br /&gt;
** &#039;&#039;Meeste hits:&#039;&#039; Artikelen worden getoond op het aantal weergaven door het aantal hits, te beginnen met de meeste hits en eindigen met de minste hits.&lt;br /&gt;
** &#039;&#039;Minste hits:&#039;&#039; Artikelen worden getoond door het aantal hits, te beginnen met de minste hits en eindigend met de meeste hits.&lt;br /&gt;
** &#039;&#039;Volgorde:&#039;&#039; Artikelen worden gesorteerd volgens de Volgorde kolom opgegeven in Artikelbeheer.&lt;br /&gt;
{{Chunk30:colheader|Date for Ordering/nl}}&lt;br /&gt;
{{Chunk30:colheader|No Articles to List/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Filterveld.&#039;&#039;&#039; (Gebruik algemeen/Verberg/Toon) Of een filterveld getoond moet worden voor een lijst met artikelen. Indien verborgen, wordt er geen filterveld getoond. Anders wordt het filterveld getoond volgens de algemeen instellingen.&lt;br /&gt;
*&#039;&#039;&#039;Limiet introtekst.&#039;&#039;&#039; Het maximum aantal tekens dat in de introtekst getoond moet worden. Indien de introtekst langer is als deze waarde dan wordt het afgekapt op deze lengte.&lt;br /&gt;
&lt;br /&gt;
====Artikel opties====&lt;br /&gt;
De Gearchiveerde artikelen optie heeft de volgende opties, zoals hieronder getoond. Deze opties bepalen hoe artikelen getoond worden op de website.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Item-Article-Single-Article-options-modal-article-options-tab-nl.png]]&lt;br /&gt;
&lt;br /&gt;
Let op dat de opties &amp;quot;&#039;&#039;&#039;Gebruik algemeen&#039;&#039;&#039;&amp;quot; bevatten. Indien dit geselecteerd is, dan worden de instellingen van de [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer opties]] gebruikt.&lt;br /&gt;
{{Chunk30:colheader|Show Intro Text/nl}}&lt;br /&gt;
{{Chunk30:colheader|Position of Article Info/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Article Info Title.&#039;&#039;&#039; Displays the &#039;Article Info&#039; title on top of the article information block.&lt;br /&gt;
{{Chunk30:colheader|Show Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Linked Titles/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Create Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Modify Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Publish Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Navigation/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Hits/nl}}&lt;br /&gt;
&lt;br /&gt;
===Algemene opties===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu-item bewerken]] onder de &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Gegevens]]&#039;&#039;&#039; voor hulp bij velden die voor alle menu items gelijk zijn, hieronder vallen:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Linktype opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Page Display Options|Paginaweergave opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Metadata Options|Metadata opties]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Moduletoewijzing tab===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu item bewerken]] voor hulp met betrekking tot de  &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Moduletoewijzing]]&#039;&#039;&#039; velden.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
Aan de bovenkant links ziet u de werkbalk:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-SaveCopy-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAsCopy/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
* De gearchiveerde artikelen weergave geeft u de mogelijkheid oude of verlopen artikelen te benaderen die u niet geheel van de website wilt verwijderen.&lt;br /&gt;
* Indien u oude artikelen wilt zien een categorie blog of lijst, maak dan een categorie aan voor ouder artikelen en verplaats de artikelen naar deze categorie (in plaats van de status te wijzigen naar gearchiveerd).&lt;br /&gt;
&lt;br /&gt;
==Verwante informatie==&lt;br /&gt;
* Artikelen worden gearchiveerd met behulp van [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]].&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Put the next statement outsite this comment to check if there are new rows needed (or old deleted) in the table under this comment It lists related documents):&lt;br /&gt;
{{relatedhelp|Article|not=/}}&lt;br /&gt;
If you find new ones please add them to the table.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Verwante helpschermen !! Beschrijving&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Components_Article_Manager_Options|Component artikelbeheer opties]] || Wordt gebruikt om de algemene standaards voor menu-items die artikelen tonen in te stellen. Deze standaard waarden worden gebruikt als &amp;quot;Gebruik algemeen&amp;quot; wordt geselecteerd als optie in een artikel menu-item. Om bijvoorbeeld de &#039;Aanmaak datum&#039; te tonen bij een artikel in uw artikel menu-items, zet die optie dan hier op &amp;quot;Toon&amp;quot; en het wordt de standaard waarde. U hoeft geen van deze opties in te stellen. Uw Joomla site zal met de standaard instellingen werken.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager|Inhoud artikelbeheer]] || Artikelbeheer wordt gebruikt voor het vinden, markeren, toevoegen en bewerken van artikelen. Zie [[Special:MyLanguage/Help30:Content_Article_Manager#Toolbar|Werkbalk]] hieronder voor een gedetailleerde lijst van alle functies.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager_Edit|Inhoud artikelbeheer bewerken]] || Dit is het beheergedeelte scherm waar u artikelen kunt toevoegen en bewerken. Hetzelfde scherm wordt gebruikt voor het toevoegen van nieuwe artikelen en het bewerken van een bestaand artikel. U kunt ook de sectie en categorie van een artikel selecteren en aangeven of een artikel al dan niet gepubliceerd wordt en of het op de voorpagina moet worden getoond.&lt;br /&gt;
De artikelinhoud wordt bewerkt met de standaard tekstverwerker die gekozen wordt in [[Special:MyLanguage/Help30:Users_User_Manager_Edit|Gebruikersbeheer - Nieuw/Bewerk]]. De standaard Joomla! tekstverwerker heet TinyMCE.&lt;br /&gt;
Een aantal parameters kunnen ingesteld worden voor het artikel. Metadata kunnen ook opgegeven worden.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Featured_Articles|Inhoud speciale artikelen]] || Wordt gebruikt om te bepalen welk &#039;speciale artikel&#039; getoond worden op de voorpagina en in welke volgorde ze worden getoond. De voorpagina is vaak de startpagina van een website, maar het kan iedere pagina op de site zijn. De voorpagina wordt aangemaakt met een menu-item met het &#039;Speciale artikelen&#039; menu-itemtype.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Categories|Menu&#039;s - Menu-item - Artikel categorieën]] || Wordt gebruikt om een lijst met categorieën te tonen. Categorieën worden getoond in een hiërarchische lijst, zoals hieronder getoond. Afhankelijk van de geselecteerde opties voor de lay-out, kunt u op een categorietitel drukken om de artikelen in die categorie te tonen.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_Blog|Menu&#039;s - Menu-item - Artikel categorie blog]] || Wordt gebruikt om artikelen in een bepaalde categorie in blog lay-out te tonen. Regelt de introductie ofwel het leidende artikel, aanvullende artikelen met intro tekst en extra links naar meer artikelen in dezelfde categorie. Enkele voorbeelden van de instellingen voor het blog lay-out formaat zijn: aantal artikelen, artikel kolommen, horizontale of verticale lay-out en het aantal extra links. Zie [[S:MyLanguage/Help30:Menus Menu Item Article Category Blog#Advanced Details Tab|het geavanceerde detail tabblad]]  voor alles over dit menu-item.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_List|Menu&#039;s - Menu-item - Artikel categorie lijst]] || Wordt gebruikt om artikelen die tot een bepaalde categorie horen in een lijst weergave.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Create|Menu&#039;s - Menu-item - Artikel aanmaken]] || Geeft de mogelijkheid aan gebruikers om een artikel in te dienen. Normaliter is dit alleen beschikbaar voor gebruikers die ingelogd zijn op de website. Gebruikers moeten rechten hebben om artikelen aan te maken. Indien de maak-artikel pagina wordt getoond op de website, dan worden de voorbeeld-schermen getoond uit de volgende [[Special:MyLanguage/Help30:Menus_Menu_Item_Article_Create#Front_End_Screenshots|website schermafbeeldingen]] sectie.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Featured|Menu&#039;s - Menu-item - Speciale artikelen]] || Wordt gebruikt om alle artikelen te tonen die aangemerkt zijn als &#039;Speciaal&#039;. Artikelen worden getoond in blog lay-out.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Single_Article|Menu&#039;s - Menu-item - Artikel - Een enkel artikel]] || Wordt gebruikt om één artikel op de website te tonen.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0/nl|Helpscherm 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1/nl|Helpscherm 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2/nl|Helpscherm 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3/nl|Helpscherm 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4/nl|Helpscherm 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5/nl|Helpscherm 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6/nl|Helpscherm 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group/nl|Documentatie werkgroep]]&lt;br /&gt;
[[Category:Help screens/nl|Helpschermen]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens/nl|Menu-item helpschermen]]&lt;br /&gt;
[[Category:Menus Help Screens/nl|Menu helpschermen]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/104/nl&amp;diff=389921</id>
		<title>Translations:Help36:Menus Menu Item Article Archived/104/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/104/nl&amp;diff=389921"/>
		<updated>2017-03-31T12:25:19Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;nl&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389920</id>
		<title>Help310:Menus Menu Item Article Archived/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389920"/>
		<updated>2017-03-31T12:25:15Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe te beginnen==&lt;br /&gt;
Om een nieuw &#039;Gearchiveerd artikel&#039; menu-item te maken:&lt;br /&gt;
* Selecteer {{rarr|Menu&#039;s,[naam van het menu]}} uit het drop-down menu in de back-end van uw Joomla! installatie (bijvoorbeeld {{rarr|Menu&#039;s,Hoofdmenu}}).&lt;br /&gt;
* Klik op de knop Nieuw in de werkbalk om een nieuw menu-item te maken.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&lt;br /&gt;
&lt;br /&gt;
Om een bestaand  Gearchiveerd artikel menu-item te bewerken, klikt u op de titel in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menubeheer: Menu-items]].&lt;br /&gt;
&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
Wordt gebruikt om een lijst met gearchiveerde artikelen te tonen. De lijst met gearchiveerde artikelen kan worden getoond op datum, gefilterd en met de introductietekst zoals hieronder.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[Image:Help30-Menus-Menu-Item-Article-Archived-screen-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Gearchiveerde artikelen worden niet meer gepubliceerd maar worden nog steeds op de site opgeslagen. Artikelen worden gearchiveerd met behulp met het [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]] scherm. Let op dat artikelen gekoppeld aan de &amp;quot;Niet gecategoriseerd&amp;quot; categorie niet getoond wordt in de lijst met gearchiveerde artikelen.&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Gegevens Tab===&lt;br /&gt;
====Verplichte instellingen====&lt;br /&gt;
Het gearchiveerde artikelen menu-item heeft de volgende verplichte instellingen:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
===Geavanceerde details tabblad===&lt;br /&gt;
====Archief opties====&lt;br /&gt;
De gearchiveerde artikelen weergave heeft de volgende archief opties, zoals hieronder getoond.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Article-Archived-archive-options-subscreen-nl.png]]&lt;br /&gt;
*&#039;&#039;&#039;Artikel volgorde.&#039;&#039;&#039; De volgorde van artikelen in deze weergave. De volgende opties zijn beschikbaar. &lt;br /&gt;
** &#039;&#039;Oudste eerst:&#039;&#039; Artikelen worden getoond met de oudste als eerste en eindigen met de nieuwste.&lt;br /&gt;
** &#039;&#039;Meest recente eerst:&#039;&#039; Artikelen worden getoond te beginnen met de nieuwste en eindigend met de oudste.&lt;br /&gt;
** &#039;&#039;Titel alfabetisch:&#039;&#039; Artikelen worden op titel alfabetisch gesorteerd getoond (A to Z)&lt;br /&gt;
** &#039;&#039;Titel alfabetisch omgekeerd:&#039;&#039; Artikelen worden getoond op de titel in omgekeerd alfabetische volgorde (Z tot A)&lt;br /&gt;
** &#039;&#039;Author Alphabetical:&#039;&#039; Articles are displayed by Author in alphabetical order (A to Z)&lt;br /&gt;
** &#039;&#039;Author Reverse Alphabetical:&#039;&#039; Articles are displayed by Author in reverse alphabetical order (Z to A)&lt;br /&gt;
** &#039;&#039;Meeste hits:&#039;&#039; Artikelen worden getoond op het aantal weergaven door het aantal hits, te beginnen met de meeste hits en eindigen met de minste hits.&lt;br /&gt;
** &#039;&#039;Minste hits:&#039;&#039; Artikelen worden getoond door het aantal hits, te beginnen met de minste hits en eindigend met de meeste hits.&lt;br /&gt;
** &#039;&#039;Volgorde:&#039;&#039; Artikelen worden gesorteerd volgens de Volgorde kolom opgegeven in Artikelbeheer.&lt;br /&gt;
{{Chunk30:colheader|Date for Ordering/nl}}&lt;br /&gt;
{{Chunk30:colheader|No Articles to List/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Filterveld.&#039;&#039;&#039; (Gebruik algemeen/Verberg/Toon) Of een filterveld getoond moet worden voor een lijst met artikelen. Indien verborgen, wordt er geen filterveld getoond. Anders wordt het filterveld getoond volgens de algemeen instellingen.&lt;br /&gt;
*&#039;&#039;&#039;Limiet introtekst.&#039;&#039;&#039; Het maximum aantal tekens dat in de introtekst getoond moet worden. Indien de introtekst langer is als deze waarde dan wordt het afgekapt op deze lengte.&lt;br /&gt;
&lt;br /&gt;
====Artikel opties====&lt;br /&gt;
De Gearchiveerde artikelen optie heeft de volgende opties, zoals hieronder getoond. Deze opties bepalen hoe artikelen getoond worden op de website.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Item-Article-Single-Article-options-modal-article-options-tab-nl.png]]&lt;br /&gt;
&lt;br /&gt;
Let op dat de opties &amp;quot;&#039;&#039;&#039;Gebruik algemeen&#039;&#039;&#039;&amp;quot; bevatten. Indien dit geselecteerd is, dan worden de instellingen van de [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer opties]] gebruikt.&lt;br /&gt;
{{Chunk30:colheader|Show Intro Text/nl}}&lt;br /&gt;
{{Chunk30:colheader|Position of Article Info/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Article Info Title.&#039;&#039;&#039; Displays the &#039;Article Info&#039; title on top of the article information block.&lt;br /&gt;
{{Chunk30:colheader|Show Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Linked Titles/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Create Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Modify Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Publish Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Navigation/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Hits/nl}}&lt;br /&gt;
&lt;br /&gt;
===Algemene opties===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu-item bewerken]] onder de &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Gegevens]]&#039;&#039;&#039; voor hulp bij velden die voor alle menu items gelijk zijn, hieronder vallen:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Linktype opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Page Display Options|Paginaweergave opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Metadata Options|Metadata opties]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Moduletoewijzing tab===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu item bewerken]] voor hulp met betrekking tot de  &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Moduletoewijzing]]&#039;&#039;&#039; velden.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
Aan de bovenkant links ziet u de werkbalk:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-SaveCopy-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAsCopy/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
* De gearchiveerde artikelen weergave geeft u de mogelijkheid oude of verlopen artikelen te benaderen die u niet geheel van de website wilt verwijderen.&lt;br /&gt;
* Indien u oude artikelen wilt zien een categorie blog of lijst, maak dan een categorie aan voor ouder artikelen en verplaats de artikelen naar deze categorie (in plaats van de status te wijzigen naar gearchiveerd).&lt;br /&gt;
&lt;br /&gt;
==Verwante informatie==&lt;br /&gt;
* Artikelen worden gearchiveerd met behulp van [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]].&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Put the next statement outsite this comment to check if there are new rows needed (or old deleted) in the table under this comment It lists related documents):&lt;br /&gt;
{{relatedhelp|Article|not=/}}&lt;br /&gt;
If you find new ones please add them to the table.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Verwante helpschermen !! Beschrijving&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Components_Article_Manager_Options|Component artikelbeheer opties]] || Wordt gebruikt om de algemene standaards voor menu-items die artikelen tonen in te stellen. Deze standaard waarden worden gebruikt als &amp;quot;Gebruik algemeen&amp;quot; wordt geselecteerd als optie in een artikel menu-item. Om bijvoorbeeld de &#039;Aanmaak datum&#039; te tonen bij een artikel in uw artikel menu-items, zet die optie dan hier op &amp;quot;Toon&amp;quot; en het wordt de standaard waarde. U hoeft geen van deze opties in te stellen. Uw Joomla site zal met de standaard instellingen werken.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager|Inhoud artikelbeheer]] || Artikelbeheer wordt gebruikt voor het vinden, markeren, toevoegen en bewerken van artikelen. Zie [[Special:MyLanguage/Help30:Content_Article_Manager#Toolbar|Werkbalk]] hieronder voor een gedetailleerde lijst van alle functies.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager_Edit|Inhoud artikelbeheer bewerken]] || Dit is het beheergedeelte scherm waar u artikelen kunt toevoegen en bewerken. Hetzelfde scherm wordt gebruikt voor het toevoegen van nieuwe artikelen en het bewerken van een bestaand artikel. U kunt ook de sectie en categorie van een artikel selecteren en aangeven of een artikel al dan niet gepubliceerd wordt en of het op de voorpagina moet worden getoond.&lt;br /&gt;
De artikelinhoud wordt bewerkt met de standaard tekstverwerker die gekozen wordt in [[Special:MyLanguage/Help30:Users_User_Manager_Edit|Gebruikersbeheer - Nieuw/Bewerk]]. De standaard Joomla! tekstverwerker heet TinyMCE.&lt;br /&gt;
Een aantal parameters kunnen ingesteld worden voor het artikel. Metadata kunnen ook opgegeven worden.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Featured_Articles|Inhoud speciale artikelen]] || Wordt gebruikt om te bepalen welk &#039;speciale artikel&#039; getoond worden op de voorpagina en in welke volgorde ze worden getoond. De voorpagina is vaak de startpagina van een website, maar het kan iedere pagina op de site zijn. De voorpagina wordt aangemaakt met een menu-item met het &#039;Speciale artikelen&#039; menu-itemtype.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Categories|Menu&#039;s - Menu-item - Artikel categorieën]] || Wordt gebruikt om een lijst met categorieën te tonen. Categorieën worden getoond in een hiërarchische lijst, zoals hieronder getoond. Afhankelijk van de geselecteerde opties voor de lay-out, kunt u op een categorietitel drukken om de artikelen in die categorie te tonen.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_Blog|Menu&#039;s - Menu-item - Artikel categorie blog]] || Wordt gebruikt om artikelen in een bepaalde categorie in blog lay-out te tonen. Regelt de introductie ofwel het leidende artikel, aanvullende artikelen met intro tekst en extra links naar meer artikelen in dezelfde categorie. Enkele voorbeelden van de instellingen voor het blog lay-out formaat zijn: aantal artikelen, artikel kolommen, horizontale of verticale lay-out en het aantal extra links. Zie [[S:MyLanguage/Help30:Menus Menu Item Article Category Blog#Advanced Details Tab|het geavanceerde detail tabblad]]  voor alles over dit menu-item.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_List|Menu&#039;s - Menu-item - Artikel categorie lijst]] || Wordt gebruikt om artikelen die tot een bepaalde categorie horen in een lijst weergave.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Create|Menu&#039;s - Menu-item - Artikel aanmaken]] || Geeft de mogelijkheid aan gebruikers om een artikel in te dienen. Normaliter is dit alleen beschikbaar voor gebruikers die ingelogd zijn op de website. Gebruikers moeten rechten hebben om artikelen aan te maken. Indien de maak-artikel pagina wordt getoond op de website, dan worden de voorbeeld-schermen getoond uit de volgende [[Special:MyLanguage/Help30:Menus_Menu_Item_Article_Create#Front_End_Screenshots|website schermafbeeldingen]] sectie.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Featured|Menu&#039;s - Menu-item - Speciale artikelen]] || Wordt gebruikt om alle artikelen te tonen die aangemerkt zijn als &#039;Speciaal&#039;. Artikelen worden getoond in blog lay-out.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Single_Article|Menu&#039;s - Menu-item - Artikel - Een enkel artikel]] || Wordt gebruikt om één artikel op de website te tonen.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0/nl|Helpscherm 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1/nl|Helpscherm 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2/nl|Helpscherm 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3/nl|Helpscherm 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4/nl|Helpscherm 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5/nl|Helpscherm 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6/nl|Helpscherm 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group/nl|Documentatie werkgroep]]&lt;br /&gt;
[[Category:Help screens/nl|Helpschermen]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens/nl|Menu-item helpschermen]]&lt;br /&gt;
[[Category:Menus Help Screens/nl|Menu helpschermen]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/103/nl&amp;diff=389919</id>
		<title>Translations:Help36:Menus Menu Item Article Archived/103/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/103/nl&amp;diff=389919"/>
		<updated>2017-03-31T12:25:15Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;en klik dan op de Gearchiveerde artikelen link onder de Artikelen link.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389918</id>
		<title>Help310:Menus Menu Item Article Archived/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Help310:Menus_Menu_Item_Article_Archived/nl&amp;diff=389918"/>
		<updated>2017-03-31T12:22:00Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{RightTOC}}&lt;br /&gt;
==Hoe te beginnen==&lt;br /&gt;
Om een nieuw &#039;Gearchiveerd artikel&#039; menu-item te maken:&lt;br /&gt;
* Selecteer {{rarr|Menu&#039;s,[naam van het menu]}} uit het drop-down menu in de back-end van uw Joomla! installatie (bijvoorbeeld {{rarr|Menu&#039;s,Hoofdmenu}}).&lt;br /&gt;
* Klik op de knop Nieuw in de werkbalk om een nieuw menu-item te maken.&lt;br /&gt;
* Click the Menu Item Type Select button [[File:Help30-Menu-Item-Type-Select-Button-nl.png]] and then click the Archived Articles link under Articles link.&lt;br /&gt;
&lt;br /&gt;
Om een bestaand  Gearchiveerd artikel menu-item te bewerken, klikt u op de titel in [[S:MyLanguage/Help30:Menus_Menu_Item_Manager|Menubeheer: Menu-items]].&lt;br /&gt;
&lt;br /&gt;
==Beschrijving==&lt;br /&gt;
Wordt gebruikt om een lijst met gearchiveerde artikelen te tonen. De lijst met gearchiveerde artikelen kan worden getoond op datum, gefilterd en met de introductietekst zoals hieronder.&lt;br /&gt;
&lt;br /&gt;
==Schermafbeelding==&lt;br /&gt;
[[Image:Help30-Menus-Menu-Item-Article-Archived-screen-nl.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Gearchiveerde artikelen worden niet meer gepubliceerd maar worden nog steeds op de site opgeslagen. Artikelen worden gearchiveerd met behulp met het [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]] scherm. Let op dat artikelen gekoppeld aan de &amp;quot;Niet gecategoriseerd&amp;quot; categorie niet getoond wordt in de lijst met gearchiveerde artikelen.&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
===Gegevens Tab===&lt;br /&gt;
====Verplichte instellingen====&lt;br /&gt;
Het gearchiveerde artikelen menu-item heeft de volgende verplichte instellingen:&lt;br /&gt;
{{chunk30:colheader|Menu Title/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu Item Type/nl}}&lt;br /&gt;
{{chunk30:colheader|Menu/en}}&lt;br /&gt;
&lt;br /&gt;
===Geavanceerde details tabblad===&lt;br /&gt;
====Archief opties====&lt;br /&gt;
De gearchiveerde artikelen weergave heeft de volgende archief opties, zoals hieronder getoond.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Article-Archived-archive-options-subscreen-nl.png]]&lt;br /&gt;
*&#039;&#039;&#039;Artikel volgorde.&#039;&#039;&#039; De volgorde van artikelen in deze weergave. De volgende opties zijn beschikbaar. &lt;br /&gt;
** &#039;&#039;Oudste eerst:&#039;&#039; Artikelen worden getoond met de oudste als eerste en eindigen met de nieuwste.&lt;br /&gt;
** &#039;&#039;Meest recente eerst:&#039;&#039; Artikelen worden getoond te beginnen met de nieuwste en eindigend met de oudste.&lt;br /&gt;
** &#039;&#039;Titel alfabetisch:&#039;&#039; Artikelen worden op titel alfabetisch gesorteerd getoond (A to Z)&lt;br /&gt;
** &#039;&#039;Titel alfabetisch omgekeerd:&#039;&#039; Artikelen worden getoond op de titel in omgekeerd alfabetische volgorde (Z tot A)&lt;br /&gt;
** &#039;&#039;Author Alphabetical:&#039;&#039; Articles are displayed by Author in alphabetical order (A to Z)&lt;br /&gt;
** &#039;&#039;Author Reverse Alphabetical:&#039;&#039; Articles are displayed by Author in reverse alphabetical order (Z to A)&lt;br /&gt;
** &#039;&#039;Meeste hits:&#039;&#039; Artikelen worden getoond op het aantal weergaven door het aantal hits, te beginnen met de meeste hits en eindigen met de minste hits.&lt;br /&gt;
** &#039;&#039;Minste hits:&#039;&#039; Artikelen worden getoond door het aantal hits, te beginnen met de minste hits en eindigend met de meeste hits.&lt;br /&gt;
** &#039;&#039;Volgorde:&#039;&#039; Artikelen worden gesorteerd volgens de Volgorde kolom opgegeven in Artikelbeheer.&lt;br /&gt;
{{Chunk30:colheader|Date for Ordering/nl}}&lt;br /&gt;
{{Chunk30:colheader|No Articles to List/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Filterveld.&#039;&#039;&#039; (Gebruik algemeen/Verberg/Toon) Of een filterveld getoond moet worden voor een lijst met artikelen. Indien verborgen, wordt er geen filterveld getoond. Anders wordt het filterveld getoond volgens de algemeen instellingen.&lt;br /&gt;
*&#039;&#039;&#039;Limiet introtekst.&#039;&#039;&#039; Het maximum aantal tekens dat in de introtekst getoond moet worden. Indien de introtekst langer is als deze waarde dan wordt het afgekapt op deze lengte.&lt;br /&gt;
&lt;br /&gt;
====Artikel opties====&lt;br /&gt;
De Gearchiveerde artikelen optie heeft de volgende opties, zoals hieronder getoond. Deze opties bepalen hoe artikelen getoond worden op de website.&lt;br /&gt;
:[[Image:Help30-Menus-Menu-Item-Article-Single-Article-options-modal-article-options-tab-nl.png]]&lt;br /&gt;
&lt;br /&gt;
Let op dat de opties &amp;quot;&#039;&#039;&#039;Gebruik algemeen&#039;&#039;&#039;&amp;quot; bevatten. Indien dit geselecteerd is, dan worden de instellingen van de [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer opties]] gebruikt.&lt;br /&gt;
{{Chunk30:colheader|Show Intro Text/nl}}&lt;br /&gt;
{{Chunk30:colheader|Position of Article Info/nl}}&lt;br /&gt;
*&#039;&#039;&#039;Article Info Title.&#039;&#039;&#039; Displays the &#039;Article Info&#039; title on top of the article information block.&lt;br /&gt;
{{Chunk30:colheader|Show Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Category/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Parent/nl}}&lt;br /&gt;
{{Chunk30:colheader|Linked Titles/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Link Author/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Create Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Modify Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Publish Date/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Navigation/nl}}&lt;br /&gt;
{{Chunk30:colheader|Show Hits/nl}}&lt;br /&gt;
&lt;br /&gt;
===Algemene opties===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu-item bewerken]] onder de &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Advanced Details Tab|Gegevens]]&#039;&#039;&#039; voor hulp bij velden die voor alle menu items gelijk zijn, hieronder vallen:&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Link Type Options|Linktype opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Page Display Options|Paginaweergave opties]]&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Metadata Options|Metadata opties]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===Moduletoewijzing tab===&lt;br /&gt;
Zie [[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit|Menu-item beheer: Menu item bewerken]] voor hulp met betrekking tot de  &#039;&#039;&#039;[[S:MyLanguage/Help30:Menus_Menu_Item_Manager_Edit#Module Assignment Tab|Moduletoewijzing]]&#039;&#039;&#039; velden.&lt;br /&gt;
&lt;br /&gt;
==Werkbalk==&lt;br /&gt;
Aan de bovenkant links ziet u de werkbalk:&lt;br /&gt;
&lt;br /&gt;
[[Image:Help30-Save-SaveClose-SaveNew-SaveCopy-Cancel-Help-toolbar-nl.png]]&lt;br /&gt;
&lt;br /&gt;
De functies zijn:&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Save/nl|menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndClose/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAndNew/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_SaveAsCopy/nl|Menu-item}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Cancel/nl}}&lt;br /&gt;
{{Chunk30:Help_screen_toolbar_icon_Help/nl}}&lt;br /&gt;
&lt;br /&gt;
==Snelle Tips==&lt;br /&gt;
* De gearchiveerde artikelen weergave geeft u de mogelijkheid oude of verlopen artikelen te benaderen die u niet geheel van de website wilt verwijderen.&lt;br /&gt;
* Indien u oude artikelen wilt zien een categorie blog of lijst, maak dan een categorie aan voor ouder artikelen en verplaats de artikelen naar deze categorie (in plaats van de status te wijzigen naar gearchiveerd).&lt;br /&gt;
&lt;br /&gt;
==Verwante informatie==&lt;br /&gt;
* Artikelen worden gearchiveerd met behulp van [[S:MyLanguage/Help30:Content_Article_Manager|Artikelbeheer]].&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Put the next statement outsite this comment to check if there are new rows needed (or old deleted) in the table under this comment It lists related documents):&lt;br /&gt;
{{relatedhelp|Article|not=/}}&lt;br /&gt;
If you find new ones please add them to the table.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Verwante helpschermen !! Beschrijving&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Components_Article_Manager_Options|Component artikelbeheer opties]] || Wordt gebruikt om de algemene standaards voor menu-items die artikelen tonen in te stellen. Deze standaard waarden worden gebruikt als &amp;quot;Gebruik algemeen&amp;quot; wordt geselecteerd als optie in een artikel menu-item. Om bijvoorbeeld de &#039;Aanmaak datum&#039; te tonen bij een artikel in uw artikel menu-items, zet die optie dan hier op &amp;quot;Toon&amp;quot; en het wordt de standaard waarde. U hoeft geen van deze opties in te stellen. Uw Joomla site zal met de standaard instellingen werken.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager|Inhoud artikelbeheer]] || Artikelbeheer wordt gebruikt voor het vinden, markeren, toevoegen en bewerken van artikelen. Zie [[Special:MyLanguage/Help30:Content_Article_Manager#Toolbar|Werkbalk]] hieronder voor een gedetailleerde lijst van alle functies.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Article_Manager_Edit|Inhoud artikelbeheer bewerken]] || Dit is het beheergedeelte scherm waar u artikelen kunt toevoegen en bewerken. Hetzelfde scherm wordt gebruikt voor het toevoegen van nieuwe artikelen en het bewerken van een bestaand artikel. U kunt ook de sectie en categorie van een artikel selecteren en aangeven of een artikel al dan niet gepubliceerd wordt en of het op de voorpagina moet worden getoond.&lt;br /&gt;
De artikelinhoud wordt bewerkt met de standaard tekstverwerker die gekozen wordt in [[Special:MyLanguage/Help30:Users_User_Manager_Edit|Gebruikersbeheer - Nieuw/Bewerk]]. De standaard Joomla! tekstverwerker heet TinyMCE.&lt;br /&gt;
Een aantal parameters kunnen ingesteld worden voor het artikel. Metadata kunnen ook opgegeven worden.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Content_Featured_Articles|Inhoud speciale artikelen]] || Wordt gebruikt om te bepalen welk &#039;speciale artikel&#039; getoond worden op de voorpagina en in welke volgorde ze worden getoond. De voorpagina is vaak de startpagina van een website, maar het kan iedere pagina op de site zijn. De voorpagina wordt aangemaakt met een menu-item met het &#039;Speciale artikelen&#039; menu-itemtype.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Categories|Menu&#039;s - Menu-item - Artikel categorieën]] || Wordt gebruikt om een lijst met categorieën te tonen. Categorieën worden getoond in een hiërarchische lijst, zoals hieronder getoond. Afhankelijk van de geselecteerde opties voor de lay-out, kunt u op een categorietitel drukken om de artikelen in die categorie te tonen.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_Blog|Menu&#039;s - Menu-item - Artikel categorie blog]] || Wordt gebruikt om artikelen in een bepaalde categorie in blog lay-out te tonen. Regelt de introductie ofwel het leidende artikel, aanvullende artikelen met intro tekst en extra links naar meer artikelen in dezelfde categorie. Enkele voorbeelden van de instellingen voor het blog lay-out formaat zijn: aantal artikelen, artikel kolommen, horizontale of verticale lay-out en het aantal extra links. Zie [[S:MyLanguage/Help30:Menus Menu Item Article Category Blog#Advanced Details Tab|het geavanceerde detail tabblad]]  voor alles over dit menu-item.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Category_List|Menu&#039;s - Menu-item - Artikel categorie lijst]] || Wordt gebruikt om artikelen die tot een bepaalde categorie horen in een lijst weergave.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Create|Menu&#039;s - Menu-item - Artikel aanmaken]] || Geeft de mogelijkheid aan gebruikers om een artikel in te dienen. Normaliter is dit alleen beschikbaar voor gebruikers die ingelogd zijn op de website. Gebruikers moeten rechten hebben om artikelen aan te maken. Indien de maak-artikel pagina wordt getoond op de website, dan worden de voorbeeld-schermen getoond uit de volgende [[Special:MyLanguage/Help30:Menus_Menu_Item_Article_Create#Front_End_Screenshots|website schermafbeeldingen]] sectie.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Featured|Menu&#039;s - Menu-item - Speciale artikelen]] || Wordt gebruikt om alle artikelen te tonen die aangemerkt zijn als &#039;Speciaal&#039;. Artikelen worden getoond in blog lay-out.&lt;br /&gt;
|-&lt;br /&gt;
| [[S:MyLanguage/Help36:Menus_Menu_Item_Article_Single_Article|Menu&#039;s - Menu-item - Artikel - Een enkel artikel]] || Wordt gebruikt om één artikel op de website te tonen.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Help screen 3.0/nl|Helpscherm 3.0]]&lt;br /&gt;
[[Category:Help screen 3.1/nl|Helpscherm 3.1]]&lt;br /&gt;
[[Category:Help screen 3.2/nl|Helpscherm 3.2]]&lt;br /&gt;
[[Category:Help screen 3.3/nl|Helpscherm 3.3]]&lt;br /&gt;
[[Category:Help screen 3.4/nl|Helpscherm 3.4]]&lt;br /&gt;
[[Category:Help screen 3.5/nl|Helpscherm 3.5]]&lt;br /&gt;
[[Category:Help screen 3.6/nl|Helpscherm 3.6]]&lt;br /&gt;
[[Category:Documentation Working Group/nl|Documentatie werkgroep]]&lt;br /&gt;
[[Category:Help screens/nl|Helpschermen]]&lt;br /&gt;
[[Category:Menu Item Manager Help Screens/nl|Menu-item helpschermen]]&lt;br /&gt;
[[Category:Menus Help Screens/nl|Menu helpschermen]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/102/nl&amp;diff=389917</id>
		<title>Translations:Help36:Menus Menu Item Article Archived/102/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Help36:Menus_Menu_Item_Article_Archived/102/nl&amp;diff=389917"/>
		<updated>2017-03-31T12:22:00Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;nl&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;nl&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/Page_display_title/nl&amp;diff=389914</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/Page display title/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/Page_display_title/nl&amp;diff=389914"/>
		<updated>2017-03-31T12:19:45Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;Help-Gebruikersnotitie toevoegen&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Help-Gebruikersnotitie toevoegen&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/1/nl&amp;diff=389911</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/1/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/1/nl&amp;diff=389911"/>
		<updated>2017-03-31T12:19:00Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;en&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;en&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389910</id>
		<title>Chunk30:Help-3x-add-user-note/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389910"/>
		<updated>2017-03-31T12:18:55Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Notitie:&amp;#039;&amp;#039;&amp;#039; Voer de notitie in.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==Screenshot==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
[[Image:help-3x-users-notes-en.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
*&#039;&#039;&#039;Onderwerp:&#039;&#039;&#039; Het onderwerp van de notitie.&lt;br /&gt;
*&#039;&#039;&#039;Gebruiker:&#039;&#039;&#039; De gebruiker voor wie de notitie is. U kunt een bestaande gebruiker selecteren.&lt;br /&gt;
*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;br /&gt;
*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Gepubliceerd&#039;&#039;/&#039;&#039;Gedepubliceerd&#039;&#039;/&#039;&#039;Verplaatst naar prullenbak&#039;&#039;). Stel publicatiestatus in.&lt;br /&gt;
*&#039;&#039;&#039;Herzieningsdatum:&#039;&#039;&#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hiervan zijn het veld vullen met een datum waarop u wilt dat een gebruiker wordt beoordeeld, of de meest recente datum waarop een gebruiker voor het laatst door u is beoordeeld.&lt;br /&gt;
*&#039;&#039;&#039;Notitie versie:&#039;&#039;&#039; Vul optioneel een notitie in voor deze versie van het item.&lt;br /&gt;
*&#039;&#039;&#039;Notitie:&#039;&#039;&#039; Voer de notitie in.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/8/nl&amp;diff=389909</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/8/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/8/nl&amp;diff=389909"/>
		<updated>2017-03-31T12:18:55Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Notitie:&amp;#039;&amp;#039;&amp;#039; Voer de notitie in.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Notitie:&#039;&#039;&#039; Voer de notitie in.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389908</id>
		<title>Chunk30:Help-3x-add-user-note/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389908"/>
		<updated>2017-03-31T12:18:30Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Notitie versie:&amp;#039;&amp;#039;&amp;#039; Vul optioneel een notitie in voor deze versie van het item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==Screenshot==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
[[Image:help-3x-users-notes-en.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
*&#039;&#039;&#039;Onderwerp:&#039;&#039;&#039; Het onderwerp van de notitie.&lt;br /&gt;
*&#039;&#039;&#039;Gebruiker:&#039;&#039;&#039; De gebruiker voor wie de notitie is. U kunt een bestaande gebruiker selecteren.&lt;br /&gt;
*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;br /&gt;
*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Gepubliceerd&#039;&#039;/&#039;&#039;Gedepubliceerd&#039;&#039;/&#039;&#039;Verplaatst naar prullenbak&#039;&#039;). Stel publicatiestatus in.&lt;br /&gt;
*&#039;&#039;&#039;Herzieningsdatum:&#039;&#039;&#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hiervan zijn het veld vullen met een datum waarop u wilt dat een gebruiker wordt beoordeeld, of de meest recente datum waarop een gebruiker voor het laatst door u is beoordeeld.&lt;br /&gt;
*&#039;&#039;&#039;Notitie versie:&#039;&#039;&#039; Vul optioneel een notitie in voor deze versie van het item.&lt;br /&gt;
*&#039;&#039;&#039;Note:&#039;&#039;&#039; Enter the note.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/7/nl&amp;diff=389907</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/7/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/7/nl&amp;diff=389907"/>
		<updated>2017-03-31T12:18:29Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Notitie versie:&amp;#039;&amp;#039;&amp;#039; Vul optioneel een notitie in voor deze versie van het item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Notitie versie:&#039;&#039;&#039; Vul optioneel een notitie in voor deze versie van het item.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389904</id>
		<title>Chunk30:Help-3x-add-user-note/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389904"/>
		<updated>2017-03-31T12:17:41Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Herzieningsdatum:&amp;#039;&amp;#039;&amp;#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hierv...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==Screenshot==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
[[Image:help-3x-users-notes-en.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
*&#039;&#039;&#039;Onderwerp:&#039;&#039;&#039; Het onderwerp van de notitie.&lt;br /&gt;
*&#039;&#039;&#039;Gebruiker:&#039;&#039;&#039; De gebruiker voor wie de notitie is. U kunt een bestaande gebruiker selecteren.&lt;br /&gt;
*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;br /&gt;
*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Gepubliceerd&#039;&#039;/&#039;&#039;Gedepubliceerd&#039;&#039;/&#039;&#039;Verplaatst naar prullenbak&#039;&#039;). Stel publicatiestatus in.&lt;br /&gt;
*&#039;&#039;&#039;Herzieningsdatum:&#039;&#039;&#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hiervan zijn het veld vullen met een datum waarop u wilt dat een gebruiker wordt beoordeeld, of de meest recente datum waarop een gebruiker voor het laatst door u is beoordeeld.&lt;br /&gt;
*&#039;&#039;&#039;Version Note:&#039;&#039;&#039; Enter an optional note for this version of the item.&lt;br /&gt;
*&#039;&#039;&#039;Note:&#039;&#039;&#039; Enter the note.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/6/nl&amp;diff=389903</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/6/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/6/nl&amp;diff=389903"/>
		<updated>2017-03-31T12:17:41Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Herzieningsdatum:&amp;#039;&amp;#039;&amp;#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hierv...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Herzieningsdatum:&#039;&#039;&#039; De herzieningsdatum is een handmatig ingevoerde datum die u kunt gebruiken al naar gelang de manier waarop deze in uw workflow past. Voorbeelden hiervan zijn het veld vullen met een datum waarop u wilt dat een gebruiker wordt beoordeeld, of de meest recente datum waarop een gebruiker voor het laatst door u is beoordeeld.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389896</id>
		<title>Chunk30:Help-3x-add-user-note/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389896"/>
		<updated>2017-03-31T12:14:44Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Status:&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;Gepubliceerd&amp;#039;&amp;#039;/&amp;#039;&amp;#039;Gedepubliceerd&amp;#039;&amp;#039;/&amp;#039;&amp;#039;Verplaatst naar prullenbak&amp;#039;&amp;#039;). Stel publicatiestatus in.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==Screenshot==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
[[Image:help-3x-users-notes-en.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
*&#039;&#039;&#039;Onderwerp:&#039;&#039;&#039; Het onderwerp van de notitie.&lt;br /&gt;
*&#039;&#039;&#039;Gebruiker:&#039;&#039;&#039; De gebruiker voor wie de notitie is. U kunt een bestaande gebruiker selecteren.&lt;br /&gt;
*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;br /&gt;
*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Gepubliceerd&#039;&#039;/&#039;&#039;Gedepubliceerd&#039;&#039;/&#039;&#039;Verplaatst naar prullenbak&#039;&#039;). Stel publicatiestatus in.&lt;br /&gt;
*&#039;&#039;&#039;Review Date:&#039;&#039;&#039; Review date is a manually entered date you can use as fits in your workflow. Examples would be to put in a date that you want to review a user or the last date you reviewed the user.&lt;br /&gt;
*&#039;&#039;&#039;Version Note:&#039;&#039;&#039; Enter an optional note for this version of the item.&lt;br /&gt;
*&#039;&#039;&#039;Note:&#039;&#039;&#039; Enter the note.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/5/nl&amp;diff=389895</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/5/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/5/nl&amp;diff=389895"/>
		<updated>2017-03-31T12:14:44Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Status:&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;Gepubliceerd&amp;#039;&amp;#039;/&amp;#039;&amp;#039;Gedepubliceerd&amp;#039;&amp;#039;/&amp;#039;&amp;#039;Verplaatst naar prullenbak&amp;#039;&amp;#039;). Stel publicatiestatus in.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Gepubliceerd&#039;&#039;/&#039;&#039;Gedepubliceerd&#039;&#039;/&#039;&#039;Verplaatst naar prullenbak&#039;&#039;). Stel publicatiestatus in.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389894</id>
		<title>Chunk30:Help-3x-add-user-note/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Chunk30:Help-3x-add-user-note/nl&amp;diff=389894"/>
		<updated>2017-03-31T12:14:38Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Categorie:&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;Ongecategoriseerd&amp;#039;&amp;#039;). De categorie waar deze notitie aan toegewezen is.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
==Screenshot==&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
[[Image:help-3x-users-notes-en.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Gegevens==&lt;br /&gt;
*&#039;&#039;&#039;Onderwerp:&#039;&#039;&#039; Het onderwerp van de notitie.&lt;br /&gt;
*&#039;&#039;&#039;Gebruiker:&#039;&#039;&#039; De gebruiker voor wie de notitie is. U kunt een bestaande gebruiker selecteren.&lt;br /&gt;
*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;br /&gt;
*&#039;&#039;&#039;Status:&#039;&#039;&#039; (&#039;&#039;Published&#039;&#039;/&#039;&#039;Unpublished&#039;&#039;/&#039;&#039;Archived&#039;&#039;/&#039;&#039;Trashed&#039;&#039;). Set publication status.&lt;br /&gt;
*&#039;&#039;&#039;Review Date:&#039;&#039;&#039; Review date is a manually entered date you can use as fits in your workflow. Examples would be to put in a date that you want to review a user or the last date you reviewed the user.&lt;br /&gt;
*&#039;&#039;&#039;Version Note:&#039;&#039;&#039; Enter an optional note for this version of the item.&lt;br /&gt;
*&#039;&#039;&#039;Note:&#039;&#039;&#039; Enter the note.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/4/nl&amp;diff=389893</id>
		<title>Translations:Chunk30:Help-3x-add-user-note/4/nl</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Chunk30:Help-3x-add-user-note/4/nl&amp;diff=389893"/>
		<updated>2017-03-31T12:14:37Z</updated>

		<summary type="html">&lt;p&gt;Webcatsolutions: Created page with &amp;quot;*&amp;#039;&amp;#039;&amp;#039;Categorie:&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;Ongecategoriseerd&amp;#039;&amp;#039;). De categorie waar deze notitie aan toegewezen is.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*&#039;&#039;&#039;Categorie:&#039;&#039;&#039; (&#039;&#039;Ongecategoriseerd&#039;&#039;). De categorie waar deze notitie aan toegewezen is.&lt;/div&gt;</summary>
		<author><name>Webcatsolutions</name></author>
	</entry>
</feed>