parent
bc8e899de1
commit
2a75c0d044
@ -1,2 +1,2 @@ |
||||
<?php
|
||||
?> |
||||
<?php |
||||
?> |
||||
|
||||
@ -0,0 +1,11 @@ |
||||
<?php
|
||||
$CONFIG_ADMINLOGIN='admin-username'; |
||||
$CONFIG_ADMINPASSWORD='password'; |
||||
$CONFIG_DATADIRECTORY='write/absolute-drectory/path/here/'; |
||||
$CONFIG_HTTPFORCESSL=false; |
||||
$CONFIG_DATEFORMAT='j M Y G:i'; |
||||
$CONFIG_DBHOST='localhost'; |
||||
$CONFIG_DBNAME='owncloud-db-name'; |
||||
$CONFIG_DBUSER='user-name'; |
||||
$CONFIG_DBPASSWORD='password'; |
||||
?> |
||||
@ -0,0 +1,8 @@ |
||||
1. I am not able to upload large files. Is that not supported by ownCloud? |
||||
Ofcourse it is supported. The problem lies with the PHP configuration. If you have access to php.ini file (which resides in /etc/php5/apache2 folder) then you can fix this issue by changing the following lines : |
||||
; Maximum allowed size for uploaded files. |
||||
upload_max_filesize = 2M |
||||
In place of 2M write the maximum size you want to be allowed. |
||||
|
||||
2. I tried to install the ownCloud in some XYZ directory but its not working. |
||||
Unfortunately ownCloud can be installed into your default Apache directory only which is /var/www/ for most of the distributions. |
||||
Loading…
Reference in new issue