summaryrefslogtreecommitdiffstats
path: root/user_guide/installation/upgrade_203.html
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2011-04-19 22:28:40 +0200
committerGreg Aker <greg.aker@ellislab.com>2011-04-19 22:28:40 +0200
commit4488538665d37b07a08d7fe4ce6f4156a9899211 (patch)
treef58afd1e468ad1b1de1145cbd4a8c1641c5816c1 /user_guide/installation/upgrade_203.html
parent9ce4385cfc976e309ee12c53726abfd4f066ac3f (diff)
Removed APPPATH.'third_party' from the packages autoloader to negate needless file stats if no packages exist or if the developer does not load any other packages by default.
Diffstat (limited to 'user_guide/installation/upgrade_203.html')
-rw-r--r--user_guide/installation/upgrade_203.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/user_guide/installation/upgrade_203.html b/user_guide/installation/upgrade_203.html
index 4937cf257..38cfb72c9 100644
--- a/user_guide/installation/upgrade_203.html
+++ b/user_guide/installation/upgrade_203.html
@@ -83,6 +83,18 @@ Upgrading from 2.0.2 to 2.0.3
<h2>Step 5: Change references of the EXT constant to ".php"</h2>
<p class="important"><strong>Note:</strong> The EXT Constant has been marked as deprecated, but has not been removed from the application. You are encouraged to make the changes sooner rather than later.</p>
+<h2>Step 6: Remove APPPATH.'third_party' from autoload.php</h2>
+
+<p>Open application/autoload.php, and look for the following:</p>
+
+<code>$autoload['packages'] = array(APPPATH.'third_party');</code>
+
+<p>If you have not chosen to load any additional packages, that line can be changed to:</p>
+<code>$autoload['packages'] = array();</code>
+
+<p>Which should provide for nominal performance gains if not autoloading packages.</p>
+
+
</div>
<!-- END CONTENT -->