<?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=Dandv</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=Dandv"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Dandv"/>
	<updated>2026-07-10T07:20:22Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=User:Dandv&amp;diff=61362</id>
		<title>User:Dandv</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=User:Dandv&amp;diff=61362"/>
		<updated>2011-08-16T11:31:01Z</updated>

		<summary type="html">&lt;p&gt;Dandv: Created page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See http://dandascalescu.com&lt;/div&gt;</summary>
		<author><name>Dandv</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61361</id>
		<title>Nginx</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61361"/>
		<updated>2011-08-16T11:30:30Z</updated>

		<summary type="html">&lt;p&gt;Dandv: /* Configure Nginx */ Added index.php&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://nginx.net/ nginx] is a lightweight web server that powers 7.5% of web servers across all domains[http://en.wikipedia.org/wiki/Nginx#Usage]. Unless you have specific requirements that demand a heavy web server like Apache, you are much better off using nginx.&lt;br /&gt;
&lt;br /&gt;
Below are instructions on how to get Joomla! running with [http://wiki.nginx.org/PHPFcgiExample nginx and PHP via FastCGI].&lt;br /&gt;
&lt;br /&gt;
== Install nginx ==&lt;br /&gt;
For Ubuntu, run &amp;lt;tt&amp;gt;aptitude install nginx&amp;lt;/tt&amp;gt;. For other distros, run the corresponding package manager, or see http://wiki.nginx.org/Install.&lt;br /&gt;
&lt;br /&gt;
== Install PHP FastCGI == &lt;br /&gt;
For Ubuntu, read this excellent page on how to [http://wiki.nginx.org/PHPFcgiExample configure PHP and FastCGI for nginx].&lt;br /&gt;
&lt;br /&gt;
For Gentoo, PHP will run as a FastCGI service (fpm), so the nginx server will run PHP asa  different process:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;dev-lang/php gd gd2 curl simplexml tokenizer dom tidy sqlite xml fpm cgi&amp;quot; &amp;gt;&amp;gt; /etc/portage/package.use&lt;br /&gt;
# emerge php&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The default settings of php-fpm are good for most servers. For special configuration visit the [http://php.net/manual/en/install.fpm.php PHP FPM site].&lt;br /&gt;
&lt;br /&gt;
== Configure Nginx ==&lt;br /&gt;
nginx configuration files reside in:&lt;br /&gt;
* &amp;lt;tt&amp;gt;/usr/local/nginx/conf/&amp;lt;/tt&amp;gt; on Ubuntu&lt;br /&gt;
* &amp;lt;tt&amp;gt;/etc/nginx/nginx.conf&amp;lt;/tt&amp;gt; on Gentoo&lt;br /&gt;
&lt;br /&gt;
Here is an sample nginx configuration file. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
        listen 80;&lt;br /&gt;
        server_name YOUR_DOMAIN;&lt;br /&gt;
        server_name_in_redirect off;&lt;br /&gt;
&lt;br /&gt;
        access_log /var/log/nginx/localhost.access_log main;&lt;br /&gt;
        error_log /var/log/nginx/localhost.error_log info;&lt;br /&gt;
&lt;br /&gt;
        root PATH_ON_SERVER;&lt;br /&gt;
        index index.php;&lt;br /&gt;
        # Support Clean (aka Search Engine Friendly) URLs&lt;br /&gt;
        location / {&lt;br /&gt;
                try_files $uri $uri/ /index.php?q=$request_uri;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        index index.php index.html index.htm default.html default.htm;&lt;br /&gt;
        # deny running scripts inside writable directories&lt;br /&gt;
        location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {&lt;br /&gt;
                return 403;&lt;br /&gt;
                error_page 403 /403_error.html;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        location ~ .*.php$ {&lt;br /&gt;
            include /etc/nginx/fastcgi.conf;&lt;br /&gt;
            fastcgi_pass  127.0.0.1:9000;&lt;br /&gt;
            fastcgi_index index.php;&lt;br /&gt;
            include fastcgi_params;&lt;br /&gt;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        # caching of files &lt;br /&gt;
        location ~* \.(ico|pdf|flv)$ {&lt;br /&gt;
                expires 1y;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {&lt;br /&gt;
                expires 14d;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pay attention for few things:&lt;br /&gt;
# The parameter &amp;lt;tt&amp;gt;fastcgi_pass&amp;lt;/tt&amp;gt; is set to 127.0.0.1:9000, corresponding to the port that fpm is configured to listen to. This means you can run the PHP processes on separate servers. On Gentoo, you can find this configuration in &amp;lt;tt&amp;gt;/etc/php/fpm-php5.3/php-fpm.conf/&amp;lt;/tt&amp;gt;&lt;br /&gt;
# Don&#039;t forget to replace YOUR_DOMAIN &amp;amp; PATH_ON_SERVER depend on your domain and the path of Joomla on your server.&lt;br /&gt;
&lt;br /&gt;
== GZip support ==&lt;br /&gt;
If you need GZip compression support, add the following section to the http section of the main nginx configuration file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        gzip on;&lt;br /&gt;
        gzip_http_version 1.1;&lt;br /&gt;
        gzip_comp_level 6;&lt;br /&gt;
        gzip_min_length 1100;&lt;br /&gt;
        gzip_buffers 4 8k;&lt;br /&gt;
        gzip_types text/plain application/xhtml+xml text/css application/xml application/xml+rss text/javascript application/javascript application/x-javascr$&lt;br /&gt;
        gzip_proxied     any;&lt;br /&gt;
        gzip_disable     &amp;quot;MSIE [1-6]\.&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
* [http://en.gentoo-wiki.com/wiki/Nginx Nginx in Gentoo]&lt;br /&gt;
* [http://www.kevinworthington.com/nginx-for-windows/ Nginx for Windows]&lt;br /&gt;
* [http://wiki.nginx.org/Install#Ubuntu_PPA Nginx in Ubuntu]&lt;br /&gt;
* [http://www.debianadmin.com/howto-install-nginx-webserver-in-debian.html Nginx in Debian]&lt;br /&gt;
* [http://www.cyberciti.biz/faq/rhel-fedora-install-configure-nginx-php5/ Nginx in RedHat/Centos]&lt;br /&gt;
* [http://php.net/manual/en/install.fpm.php PHP-FPM installation and configuration]&lt;br /&gt;
* [http://wiki.nginx.org/HttpGzipModule GZip in Nginx]&lt;br /&gt;
* [http://wiki.nginx.org/HttpRewriteModule Rewrite in Nginx]&lt;br /&gt;
* [http://nginx.org/en/docs/http/request_processing.html How nginx processes a request]&lt;/div&gt;</summary>
		<author><name>Dandv</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61360</id>
		<title>Nginx</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61360"/>
		<updated>2011-08-16T10:37:06Z</updated>

		<summary type="html">&lt;p&gt;Dandv: Deleted duplicate header and unnecessary nginx.conf outdent&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://nginx.net/ nginx] is a lightweight web server that powers 7.5% of web servers across all domains[http://en.wikipedia.org/wiki/Nginx#Usage]. Unless you have specific requirements that demand a heavy web server like Apache, you are much better off using nginx.&lt;br /&gt;
&lt;br /&gt;
Below are instructions on how to get Joomla! running with [http://wiki.nginx.org/PHPFcgiExample nginx and PHP via FastCGI].&lt;br /&gt;
&lt;br /&gt;
== Install nginx ==&lt;br /&gt;
For Ubuntu, run &amp;lt;tt&amp;gt;aptitude install nginx&amp;lt;/tt&amp;gt;. For other distros, run the corresponding package manager, or see http://wiki.nginx.org/Install.&lt;br /&gt;
&lt;br /&gt;
== Install PHP FastCGI == &lt;br /&gt;
For Ubuntu, read this excellent page on how to [http://wiki.nginx.org/PHPFcgiExample configure PHP and FastCGI for nginx].&lt;br /&gt;
&lt;br /&gt;
For Gentoo, PHP will run as a FastCGI service (fpm), so the nginx server will run PHP asa  different process:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;dev-lang/php gd gd2 curl simplexml tokenizer dom tidy sqlite xml fpm cgi&amp;quot; &amp;gt;&amp;gt; /etc/portage/package.use&lt;br /&gt;
# emerge php&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The default settings of php-fpm are good for most servers. For special configuration visit the [http://php.net/manual/en/install.fpm.php PHP FPM site].&lt;br /&gt;
&lt;br /&gt;
== Configure Nginx ==&lt;br /&gt;
nginx configuration files reside in:&lt;br /&gt;
* &amp;lt;tt&amp;gt;/usr/local/nginx/conf/&amp;lt;/tt&amp;gt; on Ubuntu&lt;br /&gt;
* &amp;lt;tt&amp;gt;/etc/nginx/nginx.conf&amp;lt;/tt&amp;gt; on Gentoo&lt;br /&gt;
&lt;br /&gt;
Here is an sample nginx configuration file. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
        listen 80;&lt;br /&gt;
        server_name YOUR_DOMAIN;&lt;br /&gt;
        server_name_in_redirect off;&lt;br /&gt;
&lt;br /&gt;
        access_log /var/log/nginx/localhost.access_log main;&lt;br /&gt;
        error_log /var/log/nginx/localhost.error_log info;&lt;br /&gt;
&lt;br /&gt;
        root PATH_ON_SERVER;&lt;br /&gt;
        # Support Clean URLs (aka Search Engine Friendly)&lt;br /&gt;
        location / {&lt;br /&gt;
                try_files $uri $uri/ /index.php?q=$request_uri;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        index index.php index.html index.htm default.html default.htm;&lt;br /&gt;
        # deny running scripts inside writable directories&lt;br /&gt;
        location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {&lt;br /&gt;
                return 403;&lt;br /&gt;
                error_page 403 /403_error.html;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        location ~ .*.php$ {&lt;br /&gt;
            include /etc/nginx/fastcgi.conf;&lt;br /&gt;
            fastcgi_pass  127.0.0.1:9000;&lt;br /&gt;
            fastcgi_index index.php;&lt;br /&gt;
            include fastcgi_params;&lt;br /&gt;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        # caching of files &lt;br /&gt;
        location ~* \.(ico|pdf|flv)$ {&lt;br /&gt;
                expires 1y;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {&lt;br /&gt;
                expires 14d;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pay attention for few things:&lt;br /&gt;
# The parameter &amp;lt;tt&amp;gt;fastcgi_pass&amp;lt;/tt&amp;gt; is set to 127.0.0.1:9000, corresponding to the port that fpm is configured to listen to. This means you can run the PHP processes on separate servers. On Gentoo, you can find this configuration in &amp;lt;tt&amp;gt;/etc/php/fpm-php5.3/php-fpm.conf/&amp;lt;/tt&amp;gt;&lt;br /&gt;
# Don&#039;t forget to replace YOUR_DOMAIN &amp;amp; PATH_ON_SERVER depend on your domain and the path of Joomla on your server.&lt;br /&gt;
&lt;br /&gt;
== GZip support ==&lt;br /&gt;
If you need GZip compression support, add the following section to the http section of the main nginx configuration file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        gzip on;&lt;br /&gt;
        gzip_http_version 1.1;&lt;br /&gt;
        gzip_comp_level 6;&lt;br /&gt;
        gzip_min_length 1100;&lt;br /&gt;
        gzip_buffers 4 8k;&lt;br /&gt;
        gzip_types text/plain application/xhtml+xml text/css application/xml application/xml+rss text/javascript application/javascript application/x-javascr$&lt;br /&gt;
        gzip_proxied     any;&lt;br /&gt;
        gzip_disable     &amp;quot;MSIE [1-6]\.&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
* [http://en.gentoo-wiki.com/wiki/Nginx Nginx in Gentoo]&lt;br /&gt;
* [http://www.kevinworthington.com/nginx-for-windows/ Nginx for Windows]&lt;br /&gt;
* [http://wiki.nginx.org/Install#Ubuntu_PPA Nginx in Ubuntu]&lt;br /&gt;
* [http://www.debianadmin.com/howto-install-nginx-webserver-in-debian.html Nginx in Debian]&lt;br /&gt;
* [http://www.cyberciti.biz/faq/rhel-fedora-install-configure-nginx-php5/ Nginx in RedHat/Centos]&lt;br /&gt;
* [http://php.net/manual/en/install.fpm.php PHP-FPM installation and configuration]&lt;br /&gt;
* [http://wiki.nginx.org/HttpGzipModule GZip in Nginx]&lt;br /&gt;
* [http://wiki.nginx.org/HttpRewriteModule Rewrite in Nginx]&lt;br /&gt;
* [http://nginx.org/en/docs/http/request_processing.html How nginx processes a request]&lt;/div&gt;</summary>
		<author><name>Dandv</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61359</id>
		<title>Nginx</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Nginx&amp;diff=61359"/>
		<updated>2011-08-16T10:35:49Z</updated>

		<summary type="html">&lt;p&gt;Dandv: Fixed the shitty English and crappy style&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://nginx.net/ nginx] is a lightweight web server that powers 7.5% of web servers across all domains[http://en.wikipedia.org/wiki/Nginx#Usage]. Unless you have specific requirements that demand a heavy web server like Apache, you are much better off using nginx.&lt;br /&gt;
&lt;br /&gt;
Below are instructions on how to get Joomla! running with [http://wiki.nginx.org/PHPFcgiExample nginx and PHP via FastCGI].&lt;br /&gt;
&lt;br /&gt;
== Install nginx ==&lt;br /&gt;
For Ubuntu, run &amp;lt;tt&amp;gt;aptitude install nginx&amp;lt;/tt&amp;gt;. For other distros, run the corresponding package manager, or see http://wiki.nginx.org/Install.&lt;br /&gt;
&lt;br /&gt;
== Install PHP FastCGI == &lt;br /&gt;
For Ubuntu, read this excellent page on how to [http://wiki.nginx.org/PHPFcgiExample configure PHP and FastCGI for nginx].&lt;br /&gt;
&lt;br /&gt;
For Gentoo, PHP will run as a FastCGI service (fpm), so the nginx server will run PHP asa  different process:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# echo &amp;quot;dev-lang/php gd gd2 curl simplexml tokenizer dom tidy sqlite xml fpm cgi&amp;quot; &amp;gt;&amp;gt; /etc/portage/package.use&lt;br /&gt;
# emerge php&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The default settings of php-fpm are good for most servers. For special configuration visit the [http://php.net/manual/en/install.fpm.php PHP FPM site].&lt;br /&gt;
&lt;br /&gt;
== Configure Nginx ==&lt;br /&gt;
== Configure Nginx ==&lt;br /&gt;
&lt;br /&gt;
nginx configuration files reside in:&lt;br /&gt;
* &amp;lt;tt&amp;gt;/usr/local/nginx/conf/&amp;lt;/tt&amp;gt; on Ubuntu&lt;br /&gt;
* &amp;lt;tt&amp;gt;/etc/nginx/nginx.conf&amp;lt;/tt&amp;gt; on Gentoo&lt;br /&gt;
&lt;br /&gt;
Here is an sample nginx configuration file. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        server {&lt;br /&gt;
                listen 80;&lt;br /&gt;
                server_name YOUR_DOMAIN;&lt;br /&gt;
                server_name_in_redirect off;&lt;br /&gt;
&lt;br /&gt;
                access_log /var/log/nginx/localhost.access_log main;&lt;br /&gt;
                error_log /var/log/nginx/localhost.error_log info;&lt;br /&gt;
&lt;br /&gt;
                root PATH_ON_SERVER;&lt;br /&gt;
                # Support Clean URLs (aka Search Engine Friendly)&lt;br /&gt;
                location / {&lt;br /&gt;
                        try_files $uri $uri/ /index.php?q=$request_uri;&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
                index index.php index.html index.htm default.html default.htm;&lt;br /&gt;
                # deny running scripts inside writable directories&lt;br /&gt;
                location ~* /(images|cache|media|logs|tmp)/.*\.(php|pl|py|jsp|asp|sh|cgi)$ {&lt;br /&gt;
                        return 403;&lt;br /&gt;
                        error_page 403 /403_error.html;&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
                location ~ .*.php$ {&lt;br /&gt;
                    include /etc/nginx/fastcgi.conf;&lt;br /&gt;
                    fastcgi_pass  127.0.0.1:9000;&lt;br /&gt;
                    fastcgi_index index.php;&lt;br /&gt;
                    include fastcgi_params;&lt;br /&gt;
                    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
                # caching of files &lt;br /&gt;
                location ~* \.(ico|pdf|flv)$ {&lt;br /&gt;
                        expires 1y;&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
                location ~* \.(js|css|png|jpg|jpeg|gif|swf|xml|txt)$ {&lt;br /&gt;
                        expires 14d;&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pay attention for few things:&lt;br /&gt;
# The parameter &amp;lt;tt&amp;gt;fastcgi_pass&amp;lt;/tt&amp;gt; is set to 127.0.0.1:9000, corresponding to the port that fpm is configured to listen to. This means you can run the PHP processes on separate servers. On Gentoo, you can find this configuration in &amp;lt;tt&amp;gt;/etc/php/fpm-php5.3/php-fpm.conf/&amp;lt;/tt&amp;gt;&lt;br /&gt;
# Don&#039;t forget to replace YOUR_DOMAIN &amp;amp; PATH_ON_SERVER depend on your domain and the path of Joomla on your server.&lt;br /&gt;
&lt;br /&gt;
== GZip support ==&lt;br /&gt;
If you need GZip compression support, add the following section to the http section of the main nginx configuration file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        gzip on;&lt;br /&gt;
        gzip_http_version 1.1;&lt;br /&gt;
        gzip_comp_level 6;&lt;br /&gt;
        gzip_min_length 1100;&lt;br /&gt;
        gzip_buffers 4 8k;&lt;br /&gt;
        gzip_types text/plain application/xhtml+xml text/css application/xml application/xml+rss text/javascript application/javascript application/x-javascr$&lt;br /&gt;
        gzip_proxied     any;&lt;br /&gt;
        gzip_disable     &amp;quot;MSIE [1-6]\.&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
* [http://en.gentoo-wiki.com/wiki/Nginx Nginx in Gentoo]&lt;br /&gt;
* [http://www.kevinworthington.com/nginx-for-windows/ Nginx for Windows]&lt;br /&gt;
* [http://wiki.nginx.org/Install#Ubuntu_PPA Nginx in Ubuntu]&lt;br /&gt;
* [http://www.debianadmin.com/howto-install-nginx-webserver-in-debian.html Nginx in Debian]&lt;br /&gt;
* [http://www.cyberciti.biz/faq/rhel-fedora-install-configure-nginx-php5/ Nginx in RedHat/Centos]&lt;br /&gt;
* [http://php.net/manual/en/install.fpm.php PHP-FPM installation and configuration]&lt;br /&gt;
* [http://wiki.nginx.org/HttpGzipModule GZip in Nginx]&lt;br /&gt;
* [http://wiki.nginx.org/HttpRewriteModule Rewrite in Nginx]&lt;br /&gt;
* [http://nginx.org/en/docs/http/request_processing.html How nginx processes a request]&lt;/div&gt;</summary>
		<author><name>Dandv</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=How_do_you_report_a_bug%3F&amp;diff=61358</id>
		<title>How do you report a bug?</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=How_do_you_report_a_bug%3F&amp;diff=61358"/>
		<updated>2011-08-16T00:31:32Z</updated>

		<summary type="html">&lt;p&gt;Dandv: This is my first time I visit the Joomla wiki, and looking for how to report bugs, and, the wiki has no information about reporting bugs in the current version. WTF guys.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you think you have found a bug, please report it!&lt;br /&gt;
&lt;br /&gt;
== Confirm the bug ==&lt;br /&gt;
Please start by posting a description in the Joomla! Forum for the release. &lt;br /&gt;
This will allow others to see if the problem can be reproduced.&lt;br /&gt;
&lt;br /&gt;
* Joomla! Bug Reporting 1.5 Forum: http://forum.joomla.org/index.php/board,199.0.html&lt;br /&gt;
* Joomla! Bug Reporting 1.7/.6.x Forum: http://forum.joomla.org/viewforum.php?f=579&lt;br /&gt;
&lt;br /&gt;
After confirmation you can file the report using the tracker&lt;br /&gt;
&lt;br /&gt;
== Report a bug ==&lt;br /&gt;
* Before reporting a bug to the issue tracker, we strongly recommend reading [http://community.joomla.org/blogs/community/551-how-to-test-and-report.html How to Test and Report]&lt;br /&gt;
* Using the tracker: to report a bug using the tracker you need to register at http://www.joomlacode.org&lt;br /&gt;
&lt;br /&gt;
== Issue tracker ==&lt;br /&gt;
* For bugs in the 1.5 series: http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&amp;amp;tracker_id=32&lt;br /&gt;
* For bugs in the 1.6/1.7 series: http://joomlacode.org/gf/project/joomla/tracker/?action=TrackerItemBrowse&amp;amp;tracker_id=8103&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Administration FAQ]]&lt;br /&gt;
[[Category:Installation FAQ]]&lt;br /&gt;
[[Category:Version 1.5 FAQ]]&lt;br /&gt;
[[Category:Version 1.6 FAQ]]&lt;br /&gt;
[[Category:Joomla! CMS Project FAQ]]&lt;br /&gt;
[[Category:Working Groups]]&lt;br /&gt;
[[Category:Contributors]]&lt;/div&gt;</summary>
		<author><name>Dandv</name></author>
	</entry>
</feed>