Talk:Upgrading 1.6.5 to 1.7
From Joomla! Documentation
(Difference between revisions)
m (moved Talk:Upgrade 1.6.5 to 1.7 to Talk:Upgrading 1.6.5 to 1.7: Adapted page title to the continuous tense used in most tutorial titles) |
(→Linux script for removing those files: new section) |
||
| Line 6: | Line 6: | ||
If you see anything else that needs modified or changed, please do! This discussion page here can be used to work together on this! | If you see anything else that needs modified or changed, please do! This discussion page here can be used to work together on this! | ||
[[User:219jondn|219jondn]] 11:23, 12 July 2011 (CDT) | [[User:219jondn|219jondn]] 11:23, 12 July 2011 (CDT) | ||
| + | |||
| + | == Linux script for removing those files == | ||
| + | |||
| + | PLEASE! '''BACKUP''' before running this script. | ||
| + | <pre> | ||
| + | #!/bin/bash | ||
| + | # move to the joomla directory | ||
| + | cd /home/myuser/xxxx/public/ | ||
| + | # remove all files | ||
| + | rm ./templates/atomic/css/blueprint/src/blueprintcss-0-9-1-cheatsheet-3-5-3-gjms.pdf | ||
| + | rm ./administrator/manifests/packages/joomla.xml | ||
| + | rm ./administrator/templates/bluestork/css/rounded.css | ||
| + | rm ./administrator/templates/bluestork/css/norounded.css | ||
| + | rm ./administrator/templates/bluestork/images/j_corner_bl.png | ||
| + | rm ./administrator/templates/bluestork/images/j_header_right_rtl.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_br_dark.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_br_black.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tr_black.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_bl_dark.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tr_med.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_bl_light.png | ||
| + | rm ./administrator/templates/bluestork/images/j_header_right.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_br_light.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tl_black.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_bl_black.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tr_dark.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_bl_med.png | ||
| + | rm ./administrator/templates/bluestork/images/j_header_left.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tl_med.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tl_dark.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_br_med.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tl_light.png | ||
| + | rm ./administrator/templates/bluestork/images/j_crn_tr_light.png | ||
| + | rm ./administrator/templates/bluestork/images/j_corner_br.png | ||
| + | rm ./administrator/templates/bluestork/images/j_header_left_rtl.png | ||
| + | rm ./administrator/templates/hathor/html/com_modules/module/modal.php | ||
| + | rm ./administrator/templates/hathor/html/com_modules/module/edit_assignment.php | ||
| + | rm ./administrator/templates/hathor/html/com_menus/item/edit_modules.php | ||
| + | rm ./administrator/templates/hathor/html/com_menus/items/default_batch.php | ||
| + | rm ./administrator/templates/hathor/html/com_languages/language/edit.php | ||
| + | rm ./administrator/templates/hathor/html/com_content/article/edit_metadata.php | ||
| + | rm ./administrator/templates/hathor/html/com_categories/category/edit_metadata.php | ||
| + | rm ./administrator/templates/hathor/html/com_categories/categories/default_batch.php | ||
| + | rm ./administrator/components/com_menus/models/forms/item_options.xml | ||
| + | rm ./administrator/language/overrides/xx-XX.override.ini | ||
| + | rm ./administrator/help/helpsites-16.xml | ||
| + | rm ./administrator/help/en-GB/Components_Content_Categories_Edit.html | ||
| + | rm ./administrator/help/en-GB/Components_Weblinks_Categories_Edit.html | ||
| + | rm ./administrator/help/en-GB/Components_Newsfeeds_Categories_Edit.html | ||
| + | rm ./administrator/help/en-GB/Components_Banners_Categories_Edit.html | ||
| + | rm ./administrator/help/en-GB/Components_Contact_Categories_Edit.html | ||
| + | rm ./media/editors/codemirror/css/docs.css | ||
| + | rm ./media/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js | ||
| + | rm ./media/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php | ||
| + | rm ./media/editors/tinymce/jscripts/tiny_mce/plugins/media/css/content.css | ||
| + | rm ./media/mod_languages/images/ta.gif | ||
| + | rm ./libraries/joomla/config.php | ||
| + | rm ./libraries/joomla/import.php | ||
| + | rm ./libraries/joomla/version.php | ||
| + | # remove directories | ||
| + | rm -rf ./plugins/authentication/example | ||
| + | rm -rf ./plugins/user/example | ||
| + | rm -rf ./plugins/content/example | ||
| + | rm -rf ./plugins/extension/example | ||
| + | rm -rf ./administrator/templates/hathor/html/com_modules/select | ||
| + | rm -rf ./administrator/templates/hathor/html/com_media | ||
| + | rm -rf ./administrator/templates/hathor/html/mod_popular | ||
| + | rm -rf ./administrator/templates/hathor/html/mod_status | ||
| + | rm -rf ./administrator/templates/hathor/html/mod_latest | ||
| + | rm -rf ./administrator/components/com_weblinks/helpers/html | ||
| + | rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/css | ||
| + | rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img | ||
| + | rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/example | ||
| + | </pre> | ||
| + | |||
| + | [[User:Oc666|oc666]] 12:59, 30 July 2011 (CDT) | ||
Revision as of 12:59, 30 July 2011
Items Needed
Hi folks - finishing up this tutorial, and would appreciate some help with a couple items. Most of these I have done myself, but I am not sure if the method I use is the simplest method, or the best.
- What to do if there no upgrade option appears in the update manager - need clarification for the information section there
- Clarification on the last section for updating manually - what process is involved there.
- Links - there are several places where a download package is referenced, or another tutorial is references. If those links already exist they need added, if tutorials do not exist on docs.joomla.org please post a note here on the discussion page so they can get added!
If you see anything else that needs modified or changed, please do! This discussion page here can be used to work together on this! 219jondn 11:23, 12 July 2011 (CDT)
Linux script for removing those files
PLEASE! BACKUP before running this script.
#!/bin/bash # move to the joomla directory cd /home/myuser/xxxx/public/ # remove all files rm ./templates/atomic/css/blueprint/src/blueprintcss-0-9-1-cheatsheet-3-5-3-gjms.pdf rm ./administrator/manifests/packages/joomla.xml rm ./administrator/templates/bluestork/css/rounded.css rm ./administrator/templates/bluestork/css/norounded.css rm ./administrator/templates/bluestork/images/j_corner_bl.png rm ./administrator/templates/bluestork/images/j_header_right_rtl.png rm ./administrator/templates/bluestork/images/j_crn_br_dark.png rm ./administrator/templates/bluestork/images/j_crn_br_black.png rm ./administrator/templates/bluestork/images/j_crn_tr_black.png rm ./administrator/templates/bluestork/images/j_crn_bl_dark.png rm ./administrator/templates/bluestork/images/j_crn_tr_med.png rm ./administrator/templates/bluestork/images/j_crn_bl_light.png rm ./administrator/templates/bluestork/images/j_header_right.png rm ./administrator/templates/bluestork/images/j_crn_br_light.png rm ./administrator/templates/bluestork/images/j_crn_tl_black.png rm ./administrator/templates/bluestork/images/j_crn_bl_black.png rm ./administrator/templates/bluestork/images/j_crn_tr_dark.png rm ./administrator/templates/bluestork/images/j_crn_bl_med.png rm ./administrator/templates/bluestork/images/j_header_left.png rm ./administrator/templates/bluestork/images/j_crn_tl_med.png rm ./administrator/templates/bluestork/images/j_crn_tl_dark.png rm ./administrator/templates/bluestork/images/j_crn_br_med.png rm ./administrator/templates/bluestork/images/j_crn_tl_light.png rm ./administrator/templates/bluestork/images/j_crn_tr_light.png rm ./administrator/templates/bluestork/images/j_corner_br.png rm ./administrator/templates/bluestork/images/j_header_left_rtl.png rm ./administrator/templates/hathor/html/com_modules/module/modal.php rm ./administrator/templates/hathor/html/com_modules/module/edit_assignment.php rm ./administrator/templates/hathor/html/com_menus/item/edit_modules.php rm ./administrator/templates/hathor/html/com_menus/items/default_batch.php rm ./administrator/templates/hathor/html/com_languages/language/edit.php rm ./administrator/templates/hathor/html/com_content/article/edit_metadata.php rm ./administrator/templates/hathor/html/com_categories/category/edit_metadata.php rm ./administrator/templates/hathor/html/com_categories/categories/default_batch.php rm ./administrator/components/com_menus/models/forms/item_options.xml rm ./administrator/language/overrides/xx-XX.override.ini rm ./administrator/help/helpsites-16.xml rm ./administrator/help/en-GB/Components_Content_Categories_Edit.html rm ./administrator/help/en-GB/Components_Weblinks_Categories_Edit.html rm ./administrator/help/en-GB/Components_Newsfeeds_Categories_Edit.html rm ./administrator/help/en-GB/Components_Banners_Categories_Edit.html rm ./administrator/help/en-GB/Components_Contact_Categories_Edit.html rm ./media/editors/codemirror/css/docs.css rm ./media/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.js rm ./media/editors/tinymce/jscripts/tiny_mce/tiny_mce_gzip.php rm ./media/editors/tinymce/jscripts/tiny_mce/plugins/media/css/content.css rm ./media/mod_languages/images/ta.gif rm ./libraries/joomla/config.php rm ./libraries/joomla/import.php rm ./libraries/joomla/version.php # remove directories rm -rf ./plugins/authentication/example rm -rf ./plugins/user/example rm -rf ./plugins/content/example rm -rf ./plugins/extension/example rm -rf ./administrator/templates/hathor/html/com_modules/select rm -rf ./administrator/templates/hathor/html/com_media rm -rf ./administrator/templates/hathor/html/mod_popular rm -rf ./administrator/templates/hathor/html/mod_status rm -rf ./administrator/templates/hathor/html/mod_latest rm -rf ./administrator/components/com_weblinks/helpers/html rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/css rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/pagebreak/img rm -rf ./media/editors/tinymce/jscripts/tiny_mce/plugins/example
oc666 12:59, 30 July 2011 (CDT)