How do you adjust Joomla 1.5 defines?
From Joomla! Documentation
(Difference between revisions)
(New page: Edit your /includes/defines.php file. Below is the relevant code. define( 'JPATH_ROOT' , implode( DS, $parts ) ); define( 'JPATH_SITE' , JPATH_ROOT ); define( 'JPATH_CONFIGURATION', JP...) |
m (clean up categories with <noinclude> tags) |
||
| Line 8: | Line 8: | ||
define( 'JPATH_INSTALLATION' , JPATH_ROOT . DS . 'installation' ); | define( 'JPATH_INSTALLATION' , JPATH_ROOT . DS . 'installation' ); | ||
| − | [[Category:FAQ]] | + | <noinclude>[[Category:FAQ]] |
[[Category:Installation FAQ]] | [[Category:Installation FAQ]] | ||
[[Category:Upgrading and Migrating FAQ]] | [[Category:Upgrading and Migrating FAQ]] | ||
| − | [[Category:Version 1.5 FAQ]] | + | [[Category:Version 1.5 FAQ]]</noinclude> |
Latest revision as of 15:33, 1 September 2012
Edit your /includes/defines.php file. Below is the relevant code.
define( 'JPATH_ROOT' , implode( DS, $parts ) ); define( 'JPATH_SITE' , JPATH_ROOT ); define( 'JPATH_CONFIGURATION', JPATH_ROOT ); define( 'JPATH_ADMINISTRATOR', JPATH_ROOT . DS . 'administrator' ); define( 'JPATH_LIBRARIES' , JPATH_ROOT . DS . 'libraries' ); define( 'JPATH_INSTALLATION' , JPATH_ROOT . DS . 'installation' );