![]() |
|
|
|
|
|||||||
| Programming / Design Jobs Are you hunting for a programmer or need some programming help? Post here, and someone will get in touch with you. And, if you're looking for a programming gig, please make that request here too! |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
I installed on the local computer CMS-Joomla to build my website more easily. Now it is time to upload my website to the hosting server, but I have a problem with the permissions of the files and directories because I set them previously at 777. My question is there a way to change the permissions for all directories at 755 and files at 644?
|
|
#2
|
||||
|
||||
|
From the console go to Joomla root folder and use these command lines:
Code:
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
|
![]() |
| Tags |
| change, cmsjoomla, hosting, permissions |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|