Portal talk

Difference between revisions of "Beginners"

From Joomla! Documentation

(17 intermediate revisions by 9 users not shown)
Line 1: Line 1:
Where can I indicate that there is a slight (probably transient) problem with the "Joomla! v 1.5 Quick Start Guide"?
+
{{archived_talk_pages}} <!-- Please do not remove -->
 +
Change request for this page by NathanHawks at Joomla forum: http://forum.joomla.org/viewtopic.php?f=303&t=848903&p=3185783#p3185757
  
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.
+
At the very bottom-left:
 +
1. The "Security Announcements" link, is an archived, 1.X-only sec announcements forum! :(
 +
I don't see a correct, exact match to replace; I see security discussion, and I see general announcements. This leads to...
  
I finally installed XAMPP 1.7.1 which installs a supported version of PHP (5.2.9).
+
2. It would be good to have links here to the Security and VEL feed pages:
 +
http://feeds.joomla.org/JoomlaSecurityNews
 +
http://feeds.joomla.org/JoomlaSecurityV ... Extensions
  
It was only a bit frustrating.
+
3. The 3.x security link says 3.1 - it should probably say 3.X now.
 
 
[[User:John2|John2]] 18:55, 18 August 2009 (UTC)
 
 
 
== www needs altering to  ==
 
 
 
To redirect anyone visiting http://www.joomla.org site with the www. to the none www. version
 
 
 
<pre>RewriteEngine on
 
Options +FollowSymlinks
 
RewriteCond %{HTTP_HOST} ^www\.JOOMLA.org [NC]
 
RewriteRule ^(.*) http://JOOMLA.org/$1 [L,R=301]</pre>
 
 
 
 
 
Redirecting anyone visiting http://joomla.org without the www. to http://www.JOOMLA.org:
 
 
 
<pre>RewriteEngine on
 
Options +FollowSymlinks
 
RewriteCond %{HTTP_HOST} !^www\.JOOMLA.org [NC]
 
RewriteRule ^(.*) http://www.JOOMLA.org/$1 [L,R=301]<pre>
 
15:34, 15 November 2009 (UTC)
 

Revision as of 13:45, 15 June 2014

Archived Talk Pages

Change request for this page by NathanHawks at Joomla forum: http://forum.joomla.org/viewtopic.php?f=303&t=848903&p=3185783#p3185757

At the very bottom-left: 1. The "Security Announcements" link, is an archived, 1.X-only sec announcements forum! :( I don't see a correct, exact match to replace; I see security discussion, and I see general announcements. This leads to...

2. It would be good to have links here to the Security and VEL feed pages: http://feeds.joomla.org/JoomlaSecurityNews http://feeds.joomla.org/JoomlaSecurityV ... Extensions

3. The 3.x security link says 3.1 - it should probably say 3.X now.