Installing ownCloud 9.0.1
-
Did you put the owncloud web site in Apache's Document root? (/var/www/html if you are using a Ubuntu / Debian distro)
-
@dafyre said in Installing ownCloud 9.0.1:
Did you put the owncloud web site in Apache's Document root? (/var/www/html if you are using a Ubuntu / Debian distro)
you don't do anything. owncloud installs itself.
-
@JaredBusch said in Installing ownCloud 9.0.1:
@dafyre said in Installing ownCloud 9.0.1:
Did you put the owncloud web site in Apache's Document root? (/var/www/html if you are using a Ubuntu / Debian distro)
you don't do anything. owncloud installs itself.
Then check the apache configs and see if the owncloud site has been enabled?
-
What OS are you on?
-
@scottalanmiller Tried it on CentOS 7 and Ubuntu Server 16. I can get to Apache test page on both but not OC.
-
@alex.olynyk said in Installing ownCloud 9.0.1:
@scottalanmiller Tried it on CentOS 7 and Ubuntu Server 16. I can get to Apache test page on both but not OC.
Did you follow my guide for CentOS 7? Not that there is any real trick to it, but I ran through it and it worked and my steps are there.
-
@scottalanmiller can you post the link to your guide?
-
@alex.olynyk said in Installing ownCloud 9.0.1:
@scottalanmiller can you post the link to your guide?
http://mangolassi.it/topic/8399/installing-owncloud-9-on-centos-7/
One of only three things tagged under ownCloud 9 so very easy to find.
-
I ran the commands one at a time but have the same issue. I even pasted into a script and ran the script with the same issue. I can see the Apache page but when I go to http://IPADDRESS/owncloud I get:
The requested URL /owncloud was not found on this server. Where should I look next? -
@alex.olynyk said in Installing ownCloud 9.0.1:
I ran the commands one at a time but have the same issue. I even pasted into a script and ran the script with the same issue. I can see the Apache page but when I go to http://IPADDRESS/owncloud I get:
The requested URL /owncloud was not found on this server. Where should I look next?I actually ran @JaredBusch 's guide and then upgraded to the latest version. Check the tags for owncloud. I think his is 8.x on CentOS 7. Everything worked immediately.
-
@wirestyle22 said in Installing ownCloud 9.0.1:
@alex.olynyk said in Installing ownCloud 9.0.1:
I ran the commands one at a time but have the same issue. I even pasted into a script and ran the script with the same issue. I can see the Apache page but when I go to http://IPADDRESS/owncloud I get:
The requested URL /owncloud was not found on this server. Where should I look next?I actually ran @JaredBusch 's guide and then upgraded to the latest version. Check the tags for owncloud. I think his is 8.x on CentOS 7. Everything worked immediately.
Yes, my guide was for 8.X But should work perfectly with 9. I will work on a new guide.
-
@JaredBusch said in Installing ownCloud 9.0.1:
@wirestyle22 said in Installing ownCloud 9.0.1:
@alex.olynyk said in Installing ownCloud 9.0.1:
I ran the commands one at a time but have the same issue. I even pasted into a script and ran the script with the same issue. I can see the Apache page but when I go to http://IPADDRESS/owncloud I get:
The requested URL /owncloud was not found on this server. Where should I look next?I actually ran @JaredBusch 's guide and then upgraded to the latest version. Check the tags for owncloud. I think his is 8.x on CentOS 7. Everything worked immediately.
Yes, my guide was for 8.X But should work perfectly with 9. I will work on a new guide.
Yup. I was just giving him info if he was having issues using the tags because he requested a link to scott's guide
-
Jareds guide works perfectly for 8. I upgraded to 9 from 8 and it hosed my VM.
I clean installed 9 using the guide on OC website first and then I tried Scott's guide with the same issue. I thought it was the OS so I installed 9 on Ubuntu Server 16 with the same issue.
Strange because I can install 8 just fine
-
@alex.olynyk Yeah, I'm having issues with 9.0.1.1 as well. Something's gone wrong in a setting file somewhere, hope I can work it out soon.
-
Thank goodness its not just me
-
Why not do a fresh install of 9.0.0 and then do the updates?
-- or does the Repo take you straight to 9.0.1?
-
the repos on owncloud.org are only for 9.0.1
-
whats weird is there used to be a config.php file in /var/www/html/owncloud/config
but its not there now -
@alex.olynyk said in Installing ownCloud 9.0.1:
whats weird is there used to be a config.php file in /var/www/html/owncloud/config
but its not there nowAlso, check the paths in /etc/httpd/conf.d/owncloud.conf
-
Alias /owncloud "/var/www/html/owncloud/owncloud/"
<Directory "/var/www/html/owncloud/owncloud">
Options +FollowSymLinks
AllowOverride All<IfModule mod_dav.c>
Dav off
</IfModule>SetEnv HOME /var/www/html/owncloud/owncloud
SetEnv HTTP_HOME /var/www/html/owncloud/owncloud
</Directory><Directory "/var/www/html/owncloud/owncloud/data/">
just in case if .htaccess gets disabled
Require all denied
</Directory>