<?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=Asika32764</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=Asika32764"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Asika32764"/>
	<updated>2026-05-14T14:35:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Calendar_form_field_type&amp;diff=477354</id>
		<title>Calendar form field type</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Calendar_form_field_type&amp;diff=477354"/>
		<updated>2018-02-02T09:49:59Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
The &#039;&#039;&#039;calendar&#039;&#039;&#039; form field type provides a text box for entry of a date. An icon next to the text box provides a link to a pop-up calendar, which can also be used to enter the date value. If the field has a saved value this is shown in the text box. Otherwise the default value, if any, is displayed.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:DatePicker1.calendar-&amp;lt;translate&amp;gt;&amp;lt;!--T:71--&amp;gt;&lt;br /&gt;
en&amp;lt;/translate&amp;gt;.png|right]]&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;type&#039;&#039;&#039; (mandatory) must be &#039;&#039;calendar&#039;&#039;.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;name&#039;&#039;&#039; (mandatory) is the unique name of the field.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;label&#039;&#039;&#039; (mandatory) (translatable) is the descriptive title of the field.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;default&#039;&#039;&#039; (optional) is the default date.  This must be given in the same format as specified by the format argument. You can put &amp;quot;NOW&amp;quot; to have current date or time information in the given format.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;description&#039;&#039;&#039; (optional) (translatable) is text that will be shown as a tooltip when the user moves the mouse over the text box.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;readonly&#039;&#039;&#039; (optional) is whether the text box is read-only (&#039;&#039;true&#039;&#039; or &#039;&#039;false&#039;&#039;). If the text box is read-only, the date cannot be changed, but can be selected and copied. No calendar icon will be shown.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:8--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;disabled&#039;&#039;&#039; (optional) is whether the text box is disabled (&#039;&#039;true&#039;&#039; or &#039;&#039;false&#039;&#039;). If the text box is disabled, the date cannot be changed, selected or copied.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:9--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;class&#039;&#039;&#039; (optional) is a CSS class name for the HTML form field. It is recommended to use the &amp;quot;Bootstrap2 Relatives sizing&amp;quot; (see code examples below).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:10--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;format&#039;&#039;&#039; (optional) is the date format to be used.  This is in the format used by PHP to specify date string formats (see below).  If no format argument is given, &#039;%Y-%m-%d&#039; is assumed (giving dates like &#039;2017-05-15&#039;).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:11--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;filter&#039;&#039;&#039; (optional) is time zone to be used. There are two values; server_utc and user_utc. The first one is server time zone and the later is user time zone as configured in global configuration and user information respectively.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:51--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;translateformat&#039;&#039;&#039; (optional): If set to true, the calendar will use a language string to determine the format. The `format` attribute is ignored. If false, the `format` attribute is used (same behaviour as today). (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:52--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;showtime&#039;&#039;&#039; (optional): If set to true and &amp;lt;code&amp;gt;translateformat&amp;lt;/code&amp;gt; is true, the language key &amp;lt;code&amp;gt;DATE_FORMAT_CALENDAR_DATETIME&amp;lt;/code&amp;gt; is used, otherwise &amp;lt;code&amp;gt;DATE_FORMAT_CALENDAR_DATE&amp;lt;/code&amp;gt;. (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:54--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;timeformat&#039;&#039;&#039; (optional): can be set to 12 (and specify AM or PM) or 24 (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:55--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;singleheader&#039;&#039;&#039; (optional): if set to false, the year and the month selection will be set on two separates lines, with independant selection (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:56--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;todaybutton&#039;&#039;&#039; (optional): if set to true, a button is added at the bottom of the datePicker to select the date of the current day (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:57--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;weeknumbers&#039;&#039;&#039; (optional): if set to true, a column is added at the left of the datePicker to display the number of the week in the current year (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:58--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;filltable&#039;&#039;&#039; (optional): if set to true, dates of the previous and next month is added at the top and the bottom of the current month to fill the grid (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:59--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;minyear&#039;&#039;&#039; (optional): set a signed integer for a number of years (-10, -2, 0, 7, 12, ...) to define the relative lower limit for the year selection. The user could not select a year before your limit (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:60--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;maxyear&#039;&#039;&#039; (optional): set a signed integer for a number of years (-10, -2, 0, 7, 12, ...) to define the relative upper limit for the year selection. The user could not select a year after your limit (starting with 3.7.0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:12--&amp;gt;&lt;br /&gt;
Example for a light DatePicker XML field definition:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&amp;lt;field name=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:64--&amp;gt;&lt;br /&gt;
mycalendar&amp;lt;/translate&amp;gt;&amp;quot; type=&amp;quot;calendar&amp;quot; default=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:65--&amp;gt;&lt;br /&gt;
2017-05-15&amp;lt;/translate&amp;gt;&amp;quot; label=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:66--&amp;gt;&lt;br /&gt;
Select a date&amp;lt;/translate&amp;gt;&amp;quot; description=&amp;quot;&amp;quot;&lt;br /&gt;
	class=&amp;quot;input-small&amp;quot; required=&amp;quot;true&amp;quot; filter=&amp;quot;user_utc&amp;quot;&lt;br /&gt;
	showtime=&amp;quot;false&amp;quot; todaybutton=&amp;quot;false&amp;quot; filltable=&amp;quot;false&amp;quot; translateformat=&amp;quot;true&amp;quot; /&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
[[Image:DatePicker1.calendar-&amp;lt;translate&amp;gt;&amp;lt;!--T:61--&amp;gt;&lt;br /&gt;
en&amp;lt;/translate&amp;gt;.png|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:62--&amp;gt;&lt;br /&gt;
Example for an advanced DatePicker XML field definition:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&amp;lt;field name=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:67--&amp;gt;&lt;br /&gt;
mycalendar&amp;lt;/translate&amp;gt;&amp;quot; type=&amp;quot;calendar&amp;quot; default=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:68--&amp;gt;&lt;br /&gt;
2017-05-15&amp;lt;/translate&amp;gt;&amp;quot; label=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:69--&amp;gt;&lt;br /&gt;
Select a date&amp;lt;/translate&amp;gt;&amp;quot; description=&amp;quot;&amp;quot;&lt;br /&gt;
	class=&amp;quot;input-medium&amp;quot; required=&amp;quot;true&amp;quot; filter=&amp;quot;user_utc&amp;quot; format=&amp;quot;&amp;lt;translate&amp;gt;&amp;lt;!--T:70--&amp;gt;&lt;br /&gt;
%Y-%m-%d %H:%M:%S&amp;lt;/translate&amp;gt;&amp;quot;&lt;br /&gt;
	singleheader=&amp;quot;true&amp;quot; showtime=&amp;quot;true&amp;quot; timeformat=&amp;quot;12&amp;quot; todaybutton=&amp;quot;true&amp;quot; weeknumbers=&amp;quot;true&amp;quot;&lt;br /&gt;
	filltable=&amp;quot;true&amp;quot; minyear=&amp;quot;-3&amp;quot; maxyear=&amp;quot;5&amp;quot; /&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
[[Image:DatePicker2.calendar-&amp;lt;translate&amp;gt;&amp;lt;!--T:63--&amp;gt;&lt;br /&gt;
en&amp;lt;/translate&amp;gt;.png|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:13--&amp;gt;&lt;br /&gt;
The format attribute specifies the format that the date string will be saved in. It is also the format that manually entered dates need to be enterered in; except that the punctuation character is ignored. The coding scheme used to specify date formats is a custom one defined for the javascript library used in the datepicker, full details of which can be found for example on [https://github.com/joomla/joomla-cms/blob/staging/media/system/js/calendar-uncompressed.js#L1741-L1774 Joomla&#039;s Github].&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:14--&amp;gt;&lt;br /&gt;
The following are some of the most frequently used date string codes:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!&amp;lt;translate&amp;gt;&amp;lt;!--T:15--&amp;gt;&lt;br /&gt;
Character&amp;lt;/translate&amp;gt;&lt;br /&gt;
!&amp;lt;translate&amp;gt;&amp;lt;!--T:16--&amp;gt;&lt;br /&gt;
Description&amp;lt;/translate&amp;gt;&lt;br /&gt;
!&amp;lt;translate&amp;gt;&amp;lt;!--T:17--&amp;gt;&lt;br /&gt;
Example&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|d&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:18--&amp;gt;&lt;br /&gt;
Day of the month, 2 digits with leading zeros&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:19--&amp;gt;&lt;br /&gt;
01 to 31&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|a&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:20--&amp;gt;&lt;br /&gt;
A textual representation of a day, three letters&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:21--&amp;gt;&lt;br /&gt;
Mon through Sun&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|e&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:22--&amp;gt;&lt;br /&gt;
Day of the month without leading zeros&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:23--&amp;gt;&lt;br /&gt;
1 to 31&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|A&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:24--&amp;gt;&lt;br /&gt;
A full textual representation of the day of the week&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:25--&amp;gt;&lt;br /&gt;
Monday through Sunday&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|w&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:26--&amp;gt;&lt;br /&gt;
Numeric representation of the day of the week&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:27--&amp;gt;&lt;br /&gt;
0 (for Sunday) through 6 (for Saturday)&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|j&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:28--&amp;gt;&lt;br /&gt;
The day of the year (starting from 0)&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:29--&amp;gt;&lt;br /&gt;
001 through 366&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|B&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:30--&amp;gt;&lt;br /&gt;
A full textual representation of a month&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:31--&amp;gt;&lt;br /&gt;
January through December&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|m&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:32--&amp;gt;&lt;br /&gt;
Numeric representation of a month, with leading zeros&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:33--&amp;gt;&lt;br /&gt;
01 through 12&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|b&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:34--&amp;gt;&lt;br /&gt;
A short textual representation of a month, three letters&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:35--&amp;gt;&lt;br /&gt;
Jan through Dec&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Y&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:36--&amp;gt;&lt;br /&gt;
A full numeric representation of a year, 4 digits&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:37--&amp;gt;&lt;br /&gt;
1999 or 2003&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|y&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:38--&amp;gt;&lt;br /&gt;
A two-digit representation of a year&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:39--&amp;gt;&lt;br /&gt;
99 or 03&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|p&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:40--&amp;gt;&lt;br /&gt;
Lowercase Ante Meridiem or Post Meridiem&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:41--&amp;gt;&lt;br /&gt;
am or pm&amp;lt;/translate&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|P&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:42--&amp;gt;&lt;br /&gt;
Uppercase Ante Meridiem or Post Meridiem&amp;lt;/translate&amp;gt;&lt;br /&gt;
|&amp;lt;translate&amp;gt;&amp;lt;!--T:43--&amp;gt;&lt;br /&gt;
AM or PM&amp;lt;/translate&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:44--&amp;gt;&lt;br /&gt;
Note: The format in which dates are stored in the params.ini file is that specified by the format argument.  Since there can be language-dependent elements to this format (for example, the &#039;%A&#039; specifier), you need to be careful not to use such elements if there is a possibility that the front-end and back-end languages may be different.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:45--&amp;gt;&lt;br /&gt;
Note: The calendar form field type does not support non-Gregorian calendars.  If you need to support non-Gregorian calendars then you will need to create a custom form field type to support your calendar.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;=== Standard associated filters === &amp;lt;!--T:46--&amp;gt;&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:47--&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;user_utc&#039;&#039;&#039; - Calculates the specified value to the time of Greenwich, according to the user time zone settings.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;=== See also === &amp;lt;!--T:48--&amp;gt;&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:49--&amp;gt;&lt;br /&gt;
* [[S:MyLanguage/Standard form field types|List of standard form field types]]&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:50--&amp;gt;&lt;br /&gt;
[[Category:Standard form field types]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188919</id>
		<title>Portal:Administrators/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188919"/>
		<updated>2015-06-05T09:49:36Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
As a website administrator you might be concerned about the visual appearance of a website but will pass responsibility for making changes and improvements to a web designer.  Similarly, when changes to functionality are required you will contract a web developer to do the necessary work.  As a website administrator you are responsible for the day-to-day operation and maintenance of the website.  Activities might include ensuring that the site is properly backed up; managing user access; possibly installing extensions.  You will also have responsibility for maintaining the security of the website.&lt;br /&gt;
[[File:Help-3x-system-control-panel-en.png|center|500px|Administrator Control Panel|border]]&lt;br /&gt;
&lt;br /&gt;
{{top portal heading|icon=book|size=4x|title=Joomla! Administrator&#039;s Manual}}&lt;br /&gt;
__TOC__&lt;br /&gt;
The intention is that the list of topics you see below should be &#039;&#039;&#039;&#039;&#039;task-orientated&#039;&#039;&#039;&#039;&#039; and not a &#039;&#039;&#039;&#039;&#039;&amp;quot;feature list&amp;quot;&#039;&#039;&#039;&#039;&#039; for Joomla! website administration.  These items should address real and common activities that an Administrator will need to perform.&lt;br /&gt;
&lt;br /&gt;
== Common Tasks and Questions ==&lt;br /&gt;
&lt;br /&gt;
* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do you recover or reset your admin password?]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=file-text|title=Article Management}}{{Portal:Article Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Article_Management|Article Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=users|title=User Management}}{{Portal:User Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:User_Management|User Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=bars|title=Menu Management}}{{Portal:Menu_Management/Reading_list/en}}&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Menu Management|Menu Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
{{section portal heading|icon=lock|title=Joomla! Security Guide}}{{:Portal:Administrators/Joomla! Security Guide/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list-alt|title=Template Management}}{{:Portal:Template Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Template Management|Template Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=magic|title=Tricks, Tips and Performance}}{{Portal:Administrators/Tips and Tricks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=terminal|title=Extension Management}}{{Portal:Administrators/Extension Management/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-12 column&amp;quot;&amp;gt;{{section portal heading|icon=tasks|title=Administrators Documentation Projects and Open Tasks}}{{Portal:Administrators/Projects and Tasks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla! user profiles]]&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188918</id>
		<title>Translations:Portal:Administrators/14/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188918"/>
		<updated>2015-06-05T09:49:35Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do you recover or reset your admin password?]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188917</id>
		<title>Portal:Administrators/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188917"/>
		<updated>2015-06-05T09:49:17Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
As a website administrator you might be concerned about the visual appearance of a website but will pass responsibility for making changes and improvements to a web designer.  Similarly, when changes to functionality are required you will contract a web developer to do the necessary work.  As a website administrator you are responsible for the day-to-day operation and maintenance of the website.  Activities might include ensuring that the site is properly backed up; managing user access; possibly installing extensions.  You will also have responsibility for maintaining the security of the website.&lt;br /&gt;
[[File:Help-3x-system-control-panel-en.png|center|500px|Administrator Control Panel|border]]&lt;br /&gt;
&lt;br /&gt;
{{top portal heading|icon=book|size=4x|title=Joomla! Administrator&#039;s Manual}}&lt;br /&gt;
__TOC__&lt;br /&gt;
The intention is that the list of topics you see below should be &#039;&#039;&#039;&#039;&#039;task-orientated&#039;&#039;&#039;&#039;&#039; and not a &#039;&#039;&#039;&#039;&#039;&amp;quot;feature list&amp;quot;&#039;&#039;&#039;&#039;&#039; for Joomla! website administration.  These items should address real and common activities that an Administrator will need to perform.&lt;br /&gt;
&lt;br /&gt;
== Common Tasks and Questions ==&lt;br /&gt;
&lt;br /&gt;
* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=file-text|title=Article Management}}{{Portal:Article Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Article_Management|Article Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=users|title=User Management}}{{Portal:User Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:User_Management|User Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=bars|title=Menu Management}}{{Portal:Menu_Management/Reading_list/en}}&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Menu Management|Menu Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
{{section portal heading|icon=lock|title=Joomla! Security Guide}}{{:Portal:Administrators/Joomla! Security Guide/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list-alt|title=Template Management}}{{:Portal:Template Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Template Management|Template Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=magic|title=Tricks, Tips and Performance}}{{Portal:Administrators/Tips and Tricks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=terminal|title=Extension Management}}{{Portal:Administrators/Extension Management/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-12 column&amp;quot;&amp;gt;{{section portal heading|icon=tasks|title=Administrators Documentation Projects and Open Tasks}}{{Portal:Administrators/Projects and Tasks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla! user profiles]]&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188916</id>
		<title>Translations:Portal:Administrators/14/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188916"/>
		<updated>2015-06-05T09:49:17Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188915</id>
		<title>Portal:Administrators/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Portal:Administrators/zh-tw&amp;diff=188915"/>
		<updated>2015-06-05T09:47:55Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;* Logging into the control panel * S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do yo...&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;
As a website administrator you might be concerned about the visual appearance of a website but will pass responsibility for making changes and improvements to a web designer.  Similarly, when changes to functionality are required you will contract a web developer to do the necessary work.  As a website administrator you are responsible for the day-to-day operation and maintenance of the website.  Activities might include ensuring that the site is properly backed up; managing user access; possibly installing extensions.  You will also have responsibility for maintaining the security of the website.&lt;br /&gt;
[[File:Help-3x-system-control-panel-en.png|center|500px|Administrator Control Panel|border]]&lt;br /&gt;
&lt;br /&gt;
{{top portal heading|icon=book|size=4x|title=Joomla! Administrator&#039;s Manual}}&lt;br /&gt;
__TOC__&lt;br /&gt;
The intention is that the list of topics you see below should be &#039;&#039;&#039;&#039;&#039;task-orientated&#039;&#039;&#039;&#039;&#039; and not a &#039;&#039;&#039;&#039;&#039;&amp;quot;feature list&amp;quot;&#039;&#039;&#039;&#039;&#039; for Joomla! website administration.  These items should address real and common activities that an Administrator will need to perform.&lt;br /&gt;
&lt;br /&gt;
== Common Tasks and Questions ==&lt;br /&gt;
&lt;br /&gt;
* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do you recover or reset your admin password?]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=file-text|title=Article Management}}{{Portal:Article Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Article_Management|Article Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=users|title=User Management}}{{Portal:User Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:User_Management|User Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=bars|title=Menu Management}}{{Portal:Menu_Management/Reading_list/en}}&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Menu Management|Menu Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
{{-}}&lt;br /&gt;
{{section portal heading|icon=lock|title=Joomla! Security Guide}}{{:Portal:Administrators/Joomla! Security Guide/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list-alt|title=Template Management}}{{:Portal:Template Management/Reading_list/en}}&lt;br /&gt;
&#039;&#039;For more information, see &#039;&#039;&#039;[[Portal:Template Management|Template Management]]&#039;&#039;&#039; Portal page&#039;&#039;.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=magic|title=Tricks, Tips and Performance}}{{Portal:Administrators/Tips and Tricks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 column&amp;quot;&amp;gt;&lt;br /&gt;
{{section portal heading|icon=terminal|title=Extension Management}}{{Portal:Administrators/Extension Management/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-12 column&amp;quot;&amp;gt;{{section portal heading|icon=tasks|title=Administrators Documentation Projects and Open Tasks}}{{Portal:Administrators/Projects and Tasks/en}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Joomla! user profiles]]&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188914</id>
		<title>Translations:Portal:Administrators/14/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Portal:Administrators/14/zh-tw&amp;diff=188914"/>
		<updated>2015-06-05T09:47:55Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;* Logging into the control panel * S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do yo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[S:MyLanguage/Logging in or out of the Administrator back-end|Logging into the control panel]]&lt;br /&gt;
* [[S:MyLanguage/How_do_you_recover_or_reset_your_admin_password%3F|How do you recover or reset your admin password?]]&lt;br /&gt;
* [[S:MyLanguage/J3.x:Global_configuration|Detailed Information on Global Configuration Settings]]&lt;br /&gt;
* [[S:MyLanguage/Cannot save Global Configuration changes|Cannot save Global Configuration changes]]&lt;br /&gt;
* [[S:MyLanguage/Taking the website temporarily offline|Taking the website temporarily offline]]&lt;br /&gt;
* [[S:MyLanguage/How do you choose secure extensions%3F|How do you choose secure extensions?]]&lt;br /&gt;
* [[S:MyLanguage/What_is_a_vulnerable_extension%3F|What is a vulnerable extension?]]&lt;br /&gt;
* [[S:MyLanguage/Making your site Search Engine Friendly|Making your site Search Engine Friendly]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=How_do_you_recover_or_reset_your_admin_password%3F/zh-tw&amp;diff=188913</id>
		<title>How do you recover or reset your admin password?/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=How_do_you_recover_or_reset_your_admin_password%3F/zh-tw&amp;diff=188913"/>
		<updated>2015-06-05T09:47:13Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;如何復原或重設您的管理員密碼？&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;
{{version|2.5,3.x}}&lt;br /&gt;
{{tip|text=This page is only for Joomla! 2.5 and higher versions. If you are still using Joomla! 1.5&amp;amp;nbsp; [[S:MyLanguage/J1.5:How_do_you_recover_or_reset_your_admin_password%3F|instructions can be found here]].|title=Joomla! 1.5 Password Recovery}}&lt;br /&gt;
&lt;br /&gt;
Normally, you can add, edit and delete users and passwords from the back-end User Manager. To do this, you must be logged in as a member of the Super Administrator group. &lt;br /&gt;
&lt;br /&gt;
In some situations, this may not be possible. For example, your site may have been &amp;quot;hacked&amp;quot; and had the passwords or users changed. Or perhaps the person who knew the passwords is no longer available. Or maybe you have forgotten the password that was used.&lt;br /&gt;
&lt;br /&gt;
In these cases, it is still possible to alter the Joomla! database so you can log back in as a Super Administrator. These are the possible methods available to Joomla! administrators.&lt;br /&gt;
&lt;br /&gt;
== Method 1: configuration.php file ==&lt;br /&gt;
If you have access to your &amp;lt;code&amp;gt;configuration.php&amp;lt;/code&amp;gt; file for the Joomla installation on your server, then you can recover the password using the following method.&lt;br /&gt;
&lt;br /&gt;
1. Using an FTP program connect to your site. Find the configuration.php file and look at the file permissions. If the permissions are 444 or some other value, then change the permissions of the configuration.php file to 644. This will help prevent issues when uploading the changed configuration.php file later in this process.&lt;br /&gt;
&lt;br /&gt;
2. Download the configuration file.&lt;br /&gt;
&lt;br /&gt;
3. Open the configuration.php file that was downloaded in a text editor such as notepad++ and add this line&lt;br /&gt;
 &lt;br /&gt;
 public $root_user=&#039;myname&#039;;&lt;br /&gt;
&lt;br /&gt;
to the bottom of the list where myname is a username with administrator access that you know the password for. An username that is Author level or higher can also be used in place of a username with administrator access.&lt;br /&gt;
&lt;br /&gt;
4. Save the configuration.php file and upload it back to the site. You may leave the permissions on the configuration.php file at 644.&lt;br /&gt;
&lt;br /&gt;
This user will now be a temporary super administrator. &lt;br /&gt;
&lt;br /&gt;
5. Login to the back end and change the password of the administrator user you don&#039;t have the password for or create a new super admin user. &lt;br /&gt;
If you create the new user you may want to block or delete the old user depending on your circumstances.&lt;br /&gt;
&lt;br /&gt;
6. When finished, make sure to use the &amp;quot;Click here to try to do it automatically&amp;quot; link that appears in the alert box to remove the line that was added to the configuration.php file. If using the link was not successful, then go back and delete the added line from your configuration.php file using a text editor. Upload the configuration.php file back to the site.&lt;br /&gt;
&lt;br /&gt;
7. Using your FTP program verify the file permissions of the configuration.php file, they should be 444. If you manually removed the added line, then change the file permissions on the configuration.php file to 444.&lt;br /&gt;
&lt;br /&gt;
If you have no users who know their passwords and you can&#039;t utilize front end registration you may need to make a change in your database as outlined below in this document.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Method 2: Direct Editing of Database ==&lt;br /&gt;
If the methods above did not work, you have two other options, both of which require working with the MySQL database directly.&lt;br /&gt;
&lt;br /&gt;
===Change the Password in the Database===&lt;br /&gt;
If the admin user is still defined, the simplest option is to change the password in the database to a known value. This requires that you have access to the MySQL database using phpMyAdmin or another client.&lt;br /&gt;
{{warning|These instructions show how to manually change a password to the word -  &amp;quot;secret&amp;quot;|title=Make sure you change your password once you regain access}}&lt;br /&gt;
&lt;br /&gt;
# Navigate to phpMyAdmin and select the database for the Joomla! site in the left-hand drop-down list box. This will show the database tables on the left side of the screen. &lt;br /&gt;
# Find and click on the table with &amp;quot;_users&amp;quot; appended in the list of tables (note: you may have a prefix that is not jos_, simply go to the _users table for your prefix). &lt;br /&gt;
# Click on the &amp;quot;Browse&amp;quot; button in the top toolbar. This will show all of the users that are set up for this site.&lt;br /&gt;
# Find the user whose password you want to change and press the Edit icon for this row.&lt;br /&gt;
# A form will display that allows you to edit the password field. Copy the value &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;d2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199&amp;lt;/source&amp;gt; into the password field and press the &#039;&#039;Go&#039;&#039; button. phpMyAdmin should display the message &amp;quot;Affected rows: 1&amp;quot;. At this point, the password should be changed to &#039;&#039;&#039;&amp;quot;secret&amp;quot;&#039;&#039;&#039;.&lt;br /&gt;
# Log in with this user and password and change the password of this user to a secure value. Check all of the users using the User Manager to make sure they are legitimate. If you have been hacked, you may want to change all of the passwords on the site.&lt;br /&gt;
&lt;br /&gt;
===Add a New Super Administrator User===&lt;br /&gt;
If changing the password won&#039;t work, or you aren&#039;t sure which user is a member of the Super Administrator group, you can use this method to create a new user.&lt;br /&gt;
&lt;br /&gt;
# Navigate to phpMyAdmin and select the database for the Joomla! site in the left-hand drop-down list box. This will show the database tables on the left side of the screen. &lt;br /&gt;
# Press the &amp;quot;SQL&amp;quot; button in the toolbar to run an SQL query on the selected database. This will display a field called &amp;quot;Run SQL query/queries on database &amp;lt;your database&amp;gt;&amp;quot;.&lt;br /&gt;
# Delete any text in this field and copy and paste the following query below and press the &#039;&#039;Go&#039;&#039; button to execute the query and add the new Administrator user to the table.&lt;br /&gt;
# Use the SQL query below to add another administrator account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{warning|The following code uses jos31_ as the table name prefix which is only an example table prefix. The prefix when you first installed Joomla is &#039;&#039;&#039;RANDOM&#039;&#039;&#039; or what you set it specifically too. You will need to change all occurrences of &#039;&#039;&#039;jos31_&#039;&#039;&#039;(your install set prefix) found in the code below to the prefix your installation is using. |title=Make sure you match your db table prefix!}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SQL code for use with Joomla {{JVer|2.5}} {{JVer|3.1}} &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;INSERT INTO `jos31_users`&lt;br /&gt;
   (`name`, `username`, `password`, `params`)&lt;br /&gt;
VALUES (&#039;Administrator2&#039;, &#039;admin2&#039;,&lt;br /&gt;
    &#039;d2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199&#039;, &#039;&#039;);&lt;br /&gt;
INSERT INTO `jos31_user_usergroup_map` (`user_id`,`group_id`)&lt;br /&gt;
VALUES (LAST_INSERT_ID(),&#039;8&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At this point, you should be able to log into the back end of Joomla! with the username of &amp;quot;admin2&amp;quot; and password of &amp;quot;secret&amp;quot;. After logging in, go to the User Manager and change the password to a new secure value and add a valid e-mail address to the account. If there is a chance you have been &amp;quot;hacked&amp;quot;, be sure to check that all users are legitimate, especially any members of the Super Administrator group.&lt;br /&gt;
&lt;br /&gt;
{{warning|Warning: The password values shown on this page are public knowledge and are only for recovery. Your site may be hacked if you do not change the password to a secure value after logging in. Be sure you change the password to a secure value after logging in.}}&lt;br /&gt;
&lt;br /&gt;
The examples above change the password to &amp;quot;secret&amp;quot;. Two other possible values are shown below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
- password = &amp;quot;this is the MD5 and salted hashed password&amp;quot;&lt;br /&gt;
------------------------------------------------------&lt;br /&gt;
- admin  = 433903e0a9d6a712e00251e44d29bf87:UJ0b9J5fufL3FKfCc0TLsYJBh2PFULvT&lt;br /&gt;
- secret = d2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199&lt;br /&gt;
- OU812  = 5e3128b27a2c1f8eb53689f511c4ca9e:J584KAEv9d8VKwRGhb8ve7GdKoG7isMm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:FAQ]][[Category:Administration FAQ]][[Category:Getting Started FAQ]] [[Category:User Management]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:How_do_you_recover_or_reset_your_admin_password%3F/Page_display_title/zh-tw&amp;diff=188912</id>
		<title>Translations:How do you recover or reset your admin password?/Page display title/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:How_do_you_recover_or_reset_your_admin_password%3F/Page_display_title/zh-tw&amp;diff=188912"/>
		<updated>2015-06-05T09:47:12Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;如何復原或重設您的管理員密碼？&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;如何復原或重設您的管理員密碼？&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188871</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188871"/>
		<updated>2015-06-05T04:43:57Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] 或者單純用個文件記錄起來。&lt;br /&gt;
# 更新所有擴充套件至最新版本。&lt;br /&gt;
# 在你更新前，確認是否有套件同時支援 2.5 與 3.x。如果是的話，這些套件可以放心的使用一鍵更新。如果這些套件包的 2.5 與 3.x 採用不同的程式包裝，您最好遵循特定的步驟來處理這些套件，可能會有以下的情況：&lt;br /&gt;
#* 有些套件雖然採用不同包裝，但更新到 3.x 之後，它會做簡易的版本判斷來讓自己維持正常運作。最好跟開發者預先確認這件事情。&lt;br /&gt;
#* 有些套件採用不同包裝，且 2.5 與 3.x 不互通，此時必須移除舊版，等更新到 3.x 時再安裝新版。例如某些 content 外掛就可以順利移除再安裝新版。 &lt;br /&gt;
#* 參見以下文章來取得更多關於佈景主題更新的資訊： [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]]&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/17/zh-tw&amp;diff=188870</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/17/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/17/zh-tw&amp;diff=188870"/>
		<updated>2015-06-05T04:43:56Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] 或者單純用個文件記錄起來。&lt;br /&gt;
# 更新所有擴充套件至最新版本。&lt;br /&gt;
# 在你更新前，確認是否有套件同時支援 2.5 與 3.x。如果是的話，這些套件可以放心的使用一鍵更新。如果這些套件包的 2.5 與 3.x 採用不同的程式包裝，您最好遵循特定的步驟來處理這些套件，可能會有以下的情況：&lt;br /&gt;
#* 有些套件雖然採用不同包裝，但更新到 3.x 之後，它會做簡易的版本判斷來讓自己維持正常運作。最好跟開發者預先確認這件事情。&lt;br /&gt;
#* 有些套件採用不同包裝，且 2.5 與 3.x 不互通，此時必須移除舊版，等更新到 3.x 時再安裝新版。例如某些 content 外掛就可以順利移除再安裝新版。 &lt;br /&gt;
#* 參見以下文章來取得更多關於佈景主題更新的資訊： [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188869</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188869"/>
		<updated>2015-06-05T04:38:10Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] 或者單純用個文件記錄起來。&lt;br /&gt;
# 更新所有擴充套件至最新版本。&lt;br /&gt;
# 在你更新前，確認是否有套件同時支援 2.5 與 3.x。如果是的話，這些套件可以放心的使用一鍵更新。如果這些套件包的 2.5 與 3.x 採用不同的程式包裝，您最好遵循特定的步驟來處理這些套件，可能會有以下的情況：&lt;br /&gt;
#* 這些套件雖然採用不同包裝，但他會做簡易的版本判斷來讓自己正常運作。跟開發者確認這件事情。&lt;br /&gt;
#* 有些套件採用不同包裝，且 2.5 與 3.x 不互通，此時必須移除舊版，等更新到 3.x 時再安裝新版。例如某些 content 外掛就可以順利移除再安裝新版。 &lt;br /&gt;
#* 參見以下文章來取得更多關於佈景主題更新的資訊： [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]]&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/17/zh-tw&amp;diff=188868</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/17/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/17/zh-tw&amp;diff=188868"/>
		<updated>2015-06-05T04:38:10Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 替您網站上所有保留下來的擴充套件做個記錄，包含名稱、版本與相容性等等。您可以使用這個範例文件： [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] 或者單純用個文件記錄起來。&lt;br /&gt;
# 更新所有擴充套件至最新版本。&lt;br /&gt;
# 在你更新前，確認是否有套件同時支援 2.5 與 3.x。如果是的話，這些套件可以放心的使用一鍵更新。如果這些套件包的 2.5 與 3.x 採用不同的程式包裝，您最好遵循特定的步驟來處理這些套件，可能會有以下的情況：&lt;br /&gt;
#* 這些套件雖然採用不同包裝，但他會做簡易的版本判斷來讓自己正常運作。跟開發者確認這件事情。&lt;br /&gt;
#* 有些套件採用不同包裝，且 2.5 與 3.x 不互通，此時必須移除舊版，等更新到 3.x 時再安裝新版。例如某些 content 外掛就可以順利移除再安裝新版。 &lt;br /&gt;
#* 參見以下文章來取得更多關於佈景主題更新的資訊： [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188867</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188867"/>
		<updated>2015-06-05T04:36:37Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/30/zh-tw&amp;diff=188866</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/30/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/30/zh-tw&amp;diff=188866"/>
		<updated>2015-06-05T04:36:36Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188865</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188865"/>
		<updated>2015-06-05T04:36:08Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188864</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/24/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188864"/>
		<updated>2015-06-05T04:36:08Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同)&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188863</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188863"/>
		<updated>2015-06-05T04:34:50Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。 * [http://extensions.joomla.org/extensions/ac...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/36/zh-tw&amp;diff=188862</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/36/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/36/zh-tw&amp;diff=188862"/>
		<updated>2015-06-05T04:34:49Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。 * [http://extensions.joomla.org/extensions/ac...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] 方便您備份與還原。&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] 方便您快速修復權限（assets）。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188861</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188861"/>
		<updated>2015-06-05T04:34:15Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;== 建議工具 ==&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== 建議工具 ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/35/zh-tw&amp;diff=188860</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/35/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/35/zh-tw&amp;diff=188860"/>
		<updated>2015-06-05T04:34:15Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;== 建議工具 ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 建議工具 ==&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188859</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188859"/>
		<updated>2015-06-05T04:34:03Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/34/zh-tw&amp;diff=188858</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/34/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/34/zh-tw&amp;diff=188858"/>
		<updated>2015-06-05T04:34:03Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;如果你在遷移過程有一些資料的變更，你可以在 3.x 上線前手動處理這件事（確保你保留原本的 User ID），或者依靠第三方套件： [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188857</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188857"/>
		<updated>2015-06-05T04:32:17Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。 # 備份 3.x 新站，然後將它移...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。 &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/33/zh-tw&amp;diff=188856</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/33/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/33/zh-tw&amp;diff=188856"/>
		<updated>2015-06-05T04:32:16Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。 # 備份 3.x 新站，然後將它移...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 當你準備上線新的網站時，再次備份舊的 2.5 網站。如果你有需要，將它還原在一個子目錄或子網域。&lt;br /&gt;
# 備份 3.x 新站，然後將它移動到根目錄或你要的新位置。 (或者更改 Domain 指向到新主機).&lt;br /&gt;
# 再次測試。&lt;br /&gt;
# 過陣子，若不在需要 2.5 網站，可以移除它，或者修改 robots.txt 避免被 Google 索引。&lt;br /&gt;
# 移除所有處理過程的臨時網站，免得被駭客搜尋到之後遭到攻擊。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188855</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188855"/>
		<updated>2015-06-05T04:28:50Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;=== 上線你的 Joomla 3.x 網站 ===&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== 上線你的 Joomla 3.x 網站 ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/32/zh-tw&amp;diff=188854</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/32/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/32/zh-tw&amp;diff=188854"/>
		<updated>2015-06-05T04:28:50Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;=== 上線你的 Joomla 3.x 網站 ===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 上線你的 Joomla 3.x 網站 ===&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188853</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188853"/>
		<updated>2015-06-05T04:27:59Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 common errors during migration. # 備份...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/31/zh-tw&amp;diff=188852</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/31/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/31/zh-tw&amp;diff=188852"/>
		<updated>2015-06-05T04:27:59Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 common errors during migration. # 備份...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 到前台看看佈景主題是否正確顯示，如果沒有，請參見 [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# 備份網站。&lt;br /&gt;
# 此時最好可以清除一下瀏覽器快取，有些瀏覽器會保留 2.5 時期的 script 檔案，這些快取會造成後台按鈕無法運作。&lt;br /&gt;
# 前往 {{rarr|內容,文章管理,選項,編輯頁面 分頁}} 將儲存版本歷史設為「是」。&lt;br /&gt;
# 安裝你的新佈景與套件，安裝完成後，記得再備份一次。&lt;br /&gt;
# 設定它們。再備份。&lt;br /&gt;
# 測試每一件事情。再備份。&lt;br /&gt;
# 如果一切正常，關閉錯誤報告，設成「系統預設」 ({{rarr|系統,全站設定,伺服器 分頁}})，記得儲存。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188851</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188851"/>
		<updated>2015-06-05T04:23:28Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 按下清除快取按鈕。 # 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。 # 在擴充套件管理，前往「探索」頁面探索看看有沒有未...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/30/zh-tw&amp;diff=188850</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/30/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/30/zh-tw&amp;diff=188850"/>
		<updated>2015-06-05T04:23:28Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 按下清除快取按鈕。 # 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。 # 在擴充套件管理，前往「探索」頁面探索看看有沒有未...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 按下清除快取按鈕。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,資料庫}} 按下「修復」。&lt;br /&gt;
# 在擴充套件管理，前往「探索」頁面探索看看有沒有未安裝的套件。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 重新啟動「記住我」外掛&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188849</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188849"/>
		<updated>2015-06-05T04:21:14Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/28/zh-tw&amp;diff=188848</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/28/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/28/zh-tw&amp;diff=188848"/>
		<updated>2015-06-05T04:21:13Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度依賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188847</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188847"/>
		<updated>2015-06-05T04:21:04Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。 # 再次確認你關閉了「記住我」外掛...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度一賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/28/zh-tw&amp;diff=188846</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/28/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/28/zh-tw&amp;diff=188846"/>
		<updated>2015-06-05T04:21:03Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。 # 再次確認你關閉了「記住我」外掛...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 如果更新沒有出現，前往 {{rarr|擴充套件管理,更新}} 按下清除快取，現在更新應該會出現了。&lt;br /&gt;
# 再次確認你關閉了「記住我」外掛並且已經備份過。&lt;br /&gt;
# 按下更新按鈕。&lt;br /&gt;
# 看著進度提示轉阿轉，感受那焦慮的更新過程吧～～～沒啦，開個玩笑。 更新速度一賴於你的網站大小、網路速度與主機的硬體配置。&lt;br /&gt;
# 如果更新成功，你會看到一個全新的後台介面。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188845</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188845"/>
		<updated>2015-06-05T04:17:27Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 按下儲存並關閉 # 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/26/zh-tw&amp;diff=188844</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/26/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/26/zh-tw&amp;diff=188844"/>
		<updated>2015-06-05T04:17:26Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 按下儲存並關閉 # 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 按下儲存並關閉&lt;br /&gt;
# 你將會看到你當下的 Joomla 版本，可更新的Joomla版本也及更新包網址。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188843</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188843"/>
		<updated>2015-06-05T04:16:29Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188842</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/24/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188842"/>
		<updated>2015-06-05T04:16:29Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). 下方有建議的工具可以快速完成。&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同)&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188841</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188841"/>
		<updated>2015-06-05T04:15:52Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 再備份一次。 # 建議但不見得必要的項目：修復權限（assets） (Fixing the assets table). See below for a tool to...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同){{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188840</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/24/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/24/zh-tw&amp;diff=188840"/>
		<updated>2015-06-05T04:15:51Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 再備份一次。 # 建議但不見得必要的項目：修復權限（assets） (Fixing the assets table). See below for a tool to...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 再備份一次。&lt;br /&gt;
# 建議但不見得必要的項目：修復權限（assets）&lt;br /&gt;
([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# 前往 {{rarr|元件,Joomla 更新}}. (應該不會找到任何更新，如果還有更新的話，先更新它，然後備份。) 按下右上方的「選項」按鈕。&lt;br /&gt;
# 在「更新伺服器」選擇「短期更新」（Short Term Support） (目前是這樣叫沒錯，但未來可能隨著更新伺服器而有所不同)&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188839</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188839"/>
		<updated>2015-06-05T04:12:26Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我） # 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# Take another backup.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Go to {{rarr|Components,Joomla Update}}. (It should say no updates found. If it doesn’t, update Joomla to the latest version and test. Then do another backup.) Click on the Options button at the top right corner.&lt;br /&gt;
# Select Short Term Support (This is the current text - it may be different in the future) from the drop-down for Update server.{{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/22/zh-tw&amp;diff=188838</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/22/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/22/zh-tw&amp;diff=188838"/>
		<updated>2015-06-05T04:12:25Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我） # 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 前往 {{rarr|擴充套件,外掛管理}} 搜尋 Remember Me （記住我）&lt;br /&gt;
# 按下綠色按鈕關閉「記住我」外掛，變成紅色圈圈。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188837</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188837"/>
		<updated>2015-06-05T04:11:16Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# Go to {{rarr|Extensions,Plugin Manager}} and enter Remember Me into the Filter and press enter.&lt;br /&gt;
# Disable the Remember Me plugin by clicking the green check mark and making it a red circle.{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# Take another backup.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Go to {{rarr|Components,Joomla Update}}. (It should say no updates found. If it doesn’t, update Joomla to the latest version and test. Then do another backup.) Click on the Options button at the top right corner.&lt;br /&gt;
# Select Short Term Support (This is the current text - it may be different in the future) from the drop-down for Update server.{{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/20/zh-tw&amp;diff=188836</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/20/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/20/zh-tw&amp;diff=188836"/>
		<updated>2015-06-05T04:11:16Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# 前往 {{rarr|系統,全站設定,伺服器 分頁}} 將錯誤回報從「系統預設」改為「最大」，別忘了儲存。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188835</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188835"/>
		<updated>2015-06-05T04:10:21Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;=== 前往 Joomla! 3.x === 當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;br /&gt;
# Go to {{rarr|System,Global Configuration,Server tab}} and turn Error Reporting from System Default to Maximum. Make sure to Save &amp;amp; Close.{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# Go to {{rarr|Extensions,Plugin Manager}} and enter Remember Me into the Filter and press enter.&lt;br /&gt;
# Disable the Remember Me plugin by clicking the green check mark and making it a red circle.{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# Take another backup.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Go to {{rarr|Components,Joomla Update}}. (It should say no updates found. If it doesn’t, update Joomla to the latest version and test. Then do another backup.) Click on the Options button at the top right corner.&lt;br /&gt;
# Select Short Term Support (This is the current text - it may be different in the future) from the drop-down for Update server.{{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/19/zh-tw&amp;diff=188834</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/19/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/19/zh-tw&amp;diff=188834"/>
		<updated>2015-06-05T04:10:21Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;=== 前往 Joomla! 3.x === 當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 前往 Joomla! 3.x ===&lt;br /&gt;
當你完成這些第三方套件的更新，並確認皆支援 Joomla  3.x，你可以繼續跟隨接下來的步驟。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188833</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188833"/>
		<updated>2015-06-05T04:09:13Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;Note on Core Supported Extensions:&amp;#039;&amp;#039;&amp;#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已...&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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。|type=notice}}&lt;br /&gt;
=== Going to Joomla! 3.x ===&lt;br /&gt;
Once you have either updated or uninstalled your third-party extensions so that only those compatible with Joomla! 3 remain in your installation, continue with the following steps:&lt;br /&gt;
# Go to {{rarr|System,Global Configuration,Server tab}} and turn Error Reporting from System Default to Maximum. Make sure to Save &amp;amp; Close.{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# Go to {{rarr|Extensions,Plugin Manager}} and enter Remember Me into the Filter and press enter.&lt;br /&gt;
# Disable the Remember Me plugin by clicking the green check mark and making it a red circle.{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# Take another backup.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Go to {{rarr|Components,Joomla Update}}. (It should say no updates found. If it doesn’t, update Joomla to the latest version and test. Then do another backup.) Click on the Options button at the top right corner.&lt;br /&gt;
# Select Short Term Support (This is the current text - it may be different in the future) from the drop-down for Update server.{{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/18/zh-tw&amp;diff=188832</id>
		<title>Translations:Joomla 2.5 to 3.10 Step by Step Migration/18/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Joomla_2.5_to_3.10_Step_by_Step_Migration/18/zh-tw&amp;diff=188832"/>
		<updated>2015-06-05T04:09:12Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: Created page with &amp;quot;Note on Core Supported Extensions:&amp;#039;&amp;#039;&amp;#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note on Core Supported Extensions:&#039;&#039;&#039;如果你用了某些核心套件，（廣告、聯絡人、訊息、新聞、重導向、搜尋與智慧搜尋等），在 Joomla 3.4 已經被解除依賴了，Joomla 更新時會視情況是否一同更新這些套件。&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188831</id>
		<title>Joomla 2.5 to 3.10 Step by Step Migration/zh-tw</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Joomla_2.5_to_3.10_Step_by_Step_Migration/zh-tw&amp;diff=188831"/>
		<updated>2015-06-05T03:58:15Z</updated>

		<summary type="html">&lt;p&gt;Asika32764: &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;
本文將一步步的將你的 Joomla 2.5 網站遷移到 3.x。由於實際的應用情境可能有數百種，我們將給您一個最基本的流程可以遵循。大量的第三方擴充套件可能會造成較為複雜的遷移流程，建議您可以聯絡第三方套件的作者詢問相關建議來幫助您遷移這些套件至最新版本。&lt;br /&gt;
== 導覽 ==&lt;br /&gt;
&lt;br /&gt;
Joomla 2.5 至 3.x 的遷移其實很簡單，因為核心功能與套間皆能透過一鍵遷移完成。許多第三方套件也可以透過後台一鍵遷移來更新至最新版。但有一部分的套件卻不行。你必須一個一個的確認這些套件能否被遷移至 3.x 使用。如果你尚未準備好，你可以在遵循下面的流程之前，預先閱讀 [[S:MyLanguage/Migration Step by Step Self Assessment|Self Assessment]] 與 [[S:MyLanguage/Planning for Mini-Migration - Joomla 2.5 to 3.x|Planning for 2.5 to 3.x Migration]] 。&lt;br /&gt;
&lt;br /&gt;
Joomla 的核心套件&lt;br /&gt;
&lt;br /&gt;
* Categories （分類）&lt;br /&gt;
* Articles （文章）&lt;br /&gt;
* Menus （選單）&lt;br /&gt;
* Modules （模組）&lt;br /&gt;
* Banners （廣告）&lt;br /&gt;
* Contacts （聯絡人）&lt;br /&gt;
* Messaging （訊息）&lt;br /&gt;
* Newsfeeds （新聞連播）&lt;br /&gt;
* Redirect （重導向）&lt;br /&gt;
* Search （搜尋）&lt;br /&gt;
* Smart Search （智慧搜尋）&lt;br /&gt;
* Weblinks （網站連結）&lt;br /&gt;
=== 較大或較複雜的 2.5 網站遷移至 3.x 的過程 ===&lt;br /&gt;
&lt;br /&gt;
一鍵更新在多數情況下可以良好的運作，但在某些較大型，或較為複雜的網站下可能就沒那了適合。為了這樣子的複雜網站遷移，您可能需要遵循一些標準化的遷移過程，並暫時避免使用一鍵更新。您可以先參考以下文章： [[S:MyLanguage/Planning Migration - Joomla 1.5 to 3|planning 1.5 to 3.x]] 與 [[S:MyLanguage/Joomla 1.5 to 3.x Step by Step Migration|migrating from Joomla 1.5 to 3.x]]，只要將文章中的 1.5 換成 2.5 來操作即可。&lt;br /&gt;
&lt;br /&gt;
== 逐步操作過程 ==&lt;br /&gt;
&lt;br /&gt;
=== 準備工作環境 ===&lt;br /&gt;
# 備份你的 2.5 網站。你可以使用推薦的工具（見本頁最下方），或者手動做這件事。&lt;br /&gt;
#*[[S:MyLanguage/Backup_Basics_for_a_Joomla!_Web_Site|Backup Basics for a Joomla! Web Site]]&lt;br /&gt;
#*[[S:MyLanguage/What_are_the_best_practices_for_site_backups%3F|What are the best practices for site backups?]]&lt;br /&gt;
# 開始進行前，確定你的環境符合 [http://www.joomla.org/about-joomla/technical-requirements.html technical requirements for Joomla 3] 這篇文章所描述。&lt;br /&gt;
# 建立一個新的資料庫與使用者來還原你的 2.5 網站。 &lt;br /&gt;
# 建立一個新的測試用 2.5 網站來當做作業環境，還原你原本的 2.5 網站的資料。&lt;br /&gt;
#* 一個子網域。&lt;br /&gt;
#* 一個子目錄。&lt;br /&gt;
#* 本地端環境例如： [http://www.wampserver.com/en/ WAMP], [http://www.mamp.info/en/ MAMP], [http://sourceforge.net/projects/lampas/ LAMP], [http://sourceforge.net/projects/xampp/ XAMPP].&lt;br /&gt;
#* 一個新的主機帳戶在新的臨時網域（如果你打算遷移完成後放在新主機）。&lt;br /&gt;
#** 在本地端還原你的網站。請見： [[S:MyLanguage/Installing Joomla locally|Installing Joomla locally]] 與 [[S:MyLanguage/Setting up your workstation for Joomla development|Setting up your workstation for Joomla development]].&lt;br /&gt;
#** 用下方所列的工具還原你的網站。(閱讀開發者文件)&lt;br /&gt;
# 在測試空間中，先將 Joomla 2.5 更新至最新版本（目前是 2.5.28）&lt;br /&gt;
# 確保你的資料庫結構（Schema）是最新版，可以前往： &#039;&#039;&#039;擴充套件管理 → 資料庫 分頁&#039;&#039;&#039; ，如果發現資料庫不是最新版，按下 &#039;&#039;&#039;修復&#039;&#039;&#039; 按鈕。{{-}}[[File:J25-admin-extension-database-fix-en.png|border]]&lt;br /&gt;
# 測試您的網站&lt;br /&gt;
# 再次備份&lt;br /&gt;
&lt;br /&gt;
=== 逐步處理每個擴充套件 ===&lt;br /&gt;
# 接著你需要一一檢視你的擴充套件，確認這些套件個別需要更新或是移除。在 Joomla 2.5.28 中，你可以前往： {{rarr|擴充套件管理,更新 分頁}} 並按下 &#039;&#039;&#039;尋找更新&#039;&#039;&#039; ，接著會在「管理」分頁中的版本欄位出現相容性提示。 此功能只有在該擴充套件支援後台一鍵更新時才會出現。如果你安裝的套件不支援後台一鍵更新，則你需要參考下方的資訊來取的更多細節。這些套件也會有提示。你需要根據這些套件或套件包的資訊去聯絡作者以確定該如何更新至最新版。&lt;br /&gt;
# 前往 {{rarr|擴充套件管理,管理 分頁}}&lt;br /&gt;
# 選擇「類型」下拉選單&lt;br /&gt;
# 選擇「套件包」類型{{-}}[[File:J25-admin-extension-manage-package-en.png|border]]{{-}}{{note|之所以先選擇「套件包」，是因為當套件包需要被刪除時，可以一併刪除所有關連的套件。}}&lt;br /&gt;
# 移除所有不支援 Joomla 3.x 的套件包&lt;br /&gt;
# 重複這個步驟去刪除所有類型的套件，包含：元件、模組、外掛、函數庫、語言、檔案與佈景。如果作者是「Joomla Project」，則不要刪除。「智慧搜尋」的作者欄位雖然是空的，但依舊由 Joomla 官方所維護。除此之外，確保你移除了所有不支援 Joomla 3.x 的套件。{{-}}{{note|&#039;&#039;&#039;NOTE!&#039;&#039;&#039; 你無法移除任何被設為「預設」的佈景主題，因此最好先將內建佈景設為預設，例如 Beez 或 Atomic，接著再把原本的佈景刪除掉。|type=serious}}&lt;br /&gt;
# Make a note of any versions of Packages and Components currently running that you will be keeping on your site. You can use the [http://docs.joomla.org/images/5/59/Third-Party_Extension_Inventory_Worksheet.pdf Third-Party Extension Inventory Worksheet] or just copy/paste them into a document for reference.&lt;br /&gt;
# Update all extensions to the latest versions.&lt;br /&gt;
# Before and as you update, note if the extensions have both 2.5 &amp;amp; 3.x versions in the same package. If so, they will be fine to &amp;quot;one-click update.&amp;quot; If not, and 2.5 and 3.x have different packages, you need to look at them case by case. They will normally fall into one of the following scenarios:&lt;br /&gt;
#* The extension has separate packages but upon upgrading to 3.x, they automatically detect this and still work. Make sure the developer confirms this.&lt;br /&gt;
#* The extension has separate packages that need to be uninstalled in 2.5 and then installed with the Joomla 3.x version once the site is migrated. An example of this might be a content plugin. It is very simple to uninstall it in 2.5 and then install it again in 3.x.&lt;br /&gt;
#* See [[S:MyLanguage/Template_Considerations_During_Migration|Template Considerations]] for more specific information on templates.&lt;br /&gt;
{{-}}{{note|&#039;&#039;&#039;Note on Core Supported Extensions:&#039;&#039;&#039; If you are using a Core Supported Extension (Banners, Contacts, Messaging, Newsfeeds, Redirect, Search, Smart Search, or Weblinks) in Joomla! 2.5 and it has been decoupled in Joomla! 3.4+, Joomla will detect their use during the upgrade and install those Core Supported Extensions automatically.|type=notice}}&lt;br /&gt;
=== Going to Joomla! 3.x ===&lt;br /&gt;
Once you have either updated or uninstalled your third-party extensions so that only those compatible with Joomla! 3 remain in your installation, continue with the following steps:&lt;br /&gt;
# Go to {{rarr|System,Global Configuration,Server tab}} and turn Error Reporting from System Default to Maximum. Make sure to Save &amp;amp; Close.{{-}} [[File:j25-system-global-config-server-tab-en.png|border]]&lt;br /&gt;
# Go to {{rarr|Extensions,Plugin Manager}} and enter Remember Me into the Filter and press enter.&lt;br /&gt;
# Disable the Remember Me plugin by clicking the green check mark and making it a red circle.{{-}}[[File:j25-extension-plugin-remember-me-en.png|border]]&lt;br /&gt;
# Take another backup.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Go to {{rarr|Components,Joomla Update}}. (It should say no updates found. If it doesn’t, update Joomla to the latest version and test. Then do another backup.) Click on the Options button at the top right corner.&lt;br /&gt;
# Select Short Term Support (This is the current text - it may be different in the future) from the drop-down for Update server.{{-}}[[File:j25-component-joomla-update-select-support-en.png|border]]&lt;br /&gt;
# Click Save &amp;amp; Close.&lt;br /&gt;
# You will then see your Installed Joomla Version, the Latest Joomla! version and the URL for the update package.{{-}}[[File:j25-component-joomla-version-update-en.png|border]]&lt;br /&gt;
# If the update is not showing up, go to {{rarr|Extension manager,Update}} and press Purge Cache from the toolbar. Now the update to Joomla! 3 should show up.&lt;br /&gt;
# Cross your fingers, make sure you turned off Remember Me and that you have a backup from just before this point.&lt;br /&gt;
# Click the Install the Update button.&lt;br /&gt;
# Watch the spinning circle go round and round and feel the anxiety building. No, just kidding. The amount of time the wheel spins is dependent on your site, Internet connection and server speed.&lt;br /&gt;
# If all goes well, you will get to a totally new look to the backend administrator panel.{{-}}[[File:j32-administrator-overview-en.png|border]]&lt;br /&gt;
# Click the Purge Cache button.&lt;br /&gt;
# Go to {{rarr|Extensions,Extension Manager,Database}} and click Fix.&lt;br /&gt;
# In the Extension Manager, go to Discover and see if there are any extensions to install.&lt;br /&gt;
# Recommended but not required: Fix assets. ([[S:MyLanguage/Fixing_the_assets_table|Fixing the assets table]]). See below for a tool to do this in just a few clicks.&lt;br /&gt;
# Enable Remember Me from the Plugin Manager.&lt;br /&gt;
# Go to the frontend of your site and see if it shows up even if it’s not the right template. If so, continue. If not, see [[S:MyLanguage/Joomla 2.5 to 3.x Common Migration Errors|common errors during migration]].&lt;br /&gt;
# Take a backup.&lt;br /&gt;
# At this point, it would be prudent to clear your browser&#039;s cache. Some browsers, notably Firefox, will retain old version 2.5 files. That caching might prevent the operation of the Save and Save &amp;amp; Close buttons in the Administrator.&lt;br /&gt;
# Go to {{rarr|Content,Article Manager,Options button,Editing Layout tab}} and set the Save History to Yes.&lt;br /&gt;
# Install your new template or other extensions if you have them to install. Back up often.&lt;br /&gt;
# Configure them. Back up often.&lt;br /&gt;
# Test everything. Back up often.&lt;br /&gt;
# If everything works as expected, turn Error Reporting back to System Default ({{rarr|System,Global Configuration,Server tab}}). Make sure to Save &amp;amp; Close.&lt;br /&gt;
=== Going Live with your Joomla! 3.x Site ===&lt;br /&gt;
&lt;br /&gt;
# When you’re ready to go live, back up your 2.5 site for the last time. Restore it in a subdirectory or subdomain if you would like to.&lt;br /&gt;
# Back up your Joomla! 3.x site and move or restore your Joomla! 3.x site to the root (or change nameservers if you were building on a temporary domain at a new hosting account root).&lt;br /&gt;
# Test again.&lt;br /&gt;
# Remove the Joomla! 2.5 site from the server within a couple of days unless you have edited your robots.txt file to block the search engine spiders.&lt;br /&gt;
# Remove all development sites you may have been working with or keep them up-to-date if they are running a current version in order to ward off hack attempts on your server. &lt;br /&gt;
&lt;br /&gt;
If you had data change on the 2.5 site while you were migrating to 3.x, you will want to get that data moved over to the 3.x site before going live. You can do this manually (make sure you keep the same user IDs - go in order) or by using a [http://extensions.joomla.org/category/migration-a-conversion/data-import-a-export transfer tool/third-party extension].&lt;br /&gt;
&lt;br /&gt;
== Suggested Tools ==&lt;br /&gt;
&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-security/backup/1606 Akeeba Backup] for backup and restore.&lt;br /&gt;
* [http://extensions.joomla.org/extensions/access-a-security/site-access/backend-a-full-access-control/17951 ACL Manager ACL Manager] to fix asset issues in a few clicks.&lt;br /&gt;
[[Category:Migration]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Asika32764</name></author>
	</entry>
</feed>