Portal talk

Beginners

From Joomla! Documentation

Where can I indicate that there is a slight (probably transient) problem with the "Joomla! v 1.5 Quick Start Guide"?

I followed directions and installed XAMPP 1.7.2 and was unable to get Joomla 1.5.14 to run. Root cause: XAMPP 1.7.2 installs the latest version of PHP which is not supported in Joomla 1.5.

I finally installed XAMPP 1.7.1 which installs a supported version of PHP (5.2.9).

It was only a bit frustrating.

John2 18:55, 18 August 2009 (UTC)

www needs altering to[edit]

To redirect anyone visiting http://www.joomla.org site with the www. to the none www. version

RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} ^www\.JOOMLA.org [NC]
RewriteRule ^(.*) http://JOOMLA.org/$1 [L,R=301]


Redirecting anyone visiting http://joomla.org without the www. to http://www.JOOMLA.org:

RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} !^www\.JOOMLA.org [NC]
RewriteRule ^(.*) http://www.JOOMLA.org/$1 [L,R=301]

15:34, 15 November 2009 (UTC)