Trace: » keywords » admin_themes » constants » overview_of_helpers » create_a_user » create_a_page » breadcrumb » hascontent » translation_adoptees » renaming_admin_folder
Translations of this page?:
General
Getting Support
Administration
Design
Wolf Reference
Plugin Development
Core Development
- Design documents
- Working guidelines
- References
Press, Graphics and Translations
Wolf CMS books section
Renaming "admin" folder
The default path to the administration backend for Wolf CMS is http://www.example.com/admin/, and that can be changed with a minor adjustments. (Note: these instructions do not apply to v. 0.6.0 or earlier.)
For the purpose of this tutorial we will change our folder from ”admin” to ”system”.
Edit config.php
- Temporarily chmod your config.php file to make it writable and open it.
- Around lines 26 and 27 you have this code:
// The virtual directory name for your Wolf CMS administration section. define('ADMIN_DIR', 'admin');
- Now change the value 'admin' to 'system'.
define('ADMIN_DIR', 'system');
- Save the changes.
- Chmod your config.php file to remove the write permissions again.
Now you should have a custom name for the administration backend which will be http://www.example.com/system/
Note: Do not change folder /wolf/admin to new name, it shall stay as is. ADMIN_DIR is url (virtual) path.
Except where otherwise noted, content on this wiki is licensed under the following license:GNU Free Documentation License 1.2
