Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I followed this and it worked out fine until I logged into the admin and found out the admin account cannot write into the configuration file, cannot install extension, etc. This is probably due to file ownership and permission with in CentOS. Please help me/us how to set proper ownership and permission in order for the particular joomla database user to have full control over the directories and files. Thanks.
I found a solution posted here: http://www.centos.org/modules/newbb/viewtopic.php?viewmode=thread&topic_id=32510&forum=55&post_id=139312
The gist of the solution is to change the owner/group/permissions to apache that is able to access the web directories. I did a “sudo su -” to change to root and then executed the command shown in the post.
for i in $(find /var/www/html -type d); do chmod 770 $i; chgrp apache $i; done for i in $(find /var/www/html -type f); do chmod 660 $i; chgrp apache $i; done
I then did a “service httpd restart” and now Joomla show the correct permissions and seems to work great!
I am using nginx.
So, let me know the necessary changes to be made in the above steps for installing joomla in nginx.
Thanks in advance.
@sathishvista: Take a look at <a href=“http://wiki.nginx.org/Joomla”>http://wiki.nginx.org/Joomla</a>
I followed step by step in this tutorial, in the final step when I enter http://my-ip or http://my-domain and get : No configuration file found and no installation code available. Exiting…
Even I tried with the lastest joomla verson ! somebody can help me? thanks
My Joomla installation works fine but when I try to use Joomla Update I get file permission errors.
When I tried to update Joomla from 3.2.3 to3.2.4 with Joomla Update and Installation method “Write files directly” I get ERROR: Could not open /home/myuser/public_html/joomla root directory/LICENSE.txt for writing. When I do sudo chgrp -R www-data /home/myuser/public_html/joomla root directory/LICENSE.txt and change permissions to 666 on LICENSE.txt it obviously works for that file. But to make the whole update work I guess I need to run sudo chgrp -R www-data /home/myuser/public_html/joomla root directory/ and maybe change file permissions on all files?
Is that the correct way?
I don’t have any FTP server (and I don’t want to have) so I can only use the direct method.
I use nginx php-fpm Ubuntu 12.04 LEMP
@Asterix: Joomla’s root directory needs to be writable by www-data in order to upgrade. If you change the file permissions to 666, change them back after the upgrade is done as that allows all users to write to the files. The suggested permissions are 755 for directories and 644 for files.
I’ve followed the instruction and Joomla installed correctly on CentOs 6, but I cant change global configuration!
When I access the website from its domain name, I get this error: “No configuration file found and no installation code available. Exiting…”
What is wrong?