Hello,
installed ownCloud on centos 6 without any erorr but when I go to loging page docs.mobilecenter.lt and try to login it just do nothing. Neither the login button nor the enter key is working.
Any ideas why?
Hello,
installed ownCloud on centos 6 without any erorr but when I go to loging page docs.mobilecenter.lt and try to login it just do nothing. Neither the login button nor the enter key is working.
Any ideas why?
Hello,
try restarting. If it does not help - how did you install ownCloud?
Did you read the documentation? https://doc.owncloud.com/server/9.1/admin_manual/installation/
restarted Apache but it doesnât helped. And installed it using installation wizard (uploaded files to server and run it).
Uploaded which files and run what?
Did you follow the installation path that is being documented in the documentation?
https://doc.owncloud.com/server/10.0/admin_manual/installation/
I suspect that you are lacking some modules that are needed for owncloud to work, or that you did not give your web server the permissions to your owncloud directories.
The more I know the better I can help you
Any thing additional I need to setup?
You, as far as I know, just installed the core, without any dependencies.
You need a LAMP setup, and php modules.
installed all required extensions but the result is same.
The I checked the page HTML code and found that the submit button has disabled=âdisabledâ (<input type="submit" id="submit" class="login primary icon-confirm" title="Log in" value="" disabled="disabled">
) and I deleted it. Then I could login, but now the problems is that all the links/buttons in adminâs page has no links (href=â#â).
could you make a fresh install following the documentation?
I donât know what you did exactly, in what order, and what could gone wrong.
I did the following search here: Search results for 'login button disabled' - ownCloud Central and found Owncloud login button won't work and files after login won't shows up also
Definetly this is some kind of problem with javascript but canât find what cousing it and what I should disable. Any ideas?
I still donât get how you installed your ownCloud.
With âinstallation fileâ you mean the tarball, right?
But if you just copy the tarball to your server and extract it, you still donât have all the dependencies needed for ownCloud. The database, the php modules, the Apache server.
Or did you install ownCloud from repositories? Thatâs a different kind of installation
Apache, data base, php modules and ll dependences was already installed (I use virtual server and virtualmin). So, I created new virtual server (with php, apache, data base, etc) for ownCloud and then uploaded the âownCloud Server Archive Fileâ, extracted it, opened in browser and pressed pressed FINISH instalation. No errors. The tables in data base was created. Now I am able to open the login page but the login input (button) is disable=âdisabledâ.
When I delete (using Chromeâs Inspect funccion) the disable=âdisabledâ from input I am able to log in but have blank content with all links disabled.
can you show me your config.php thats in /var/www/owncloud/config/ directory?
also does the owncloud.log say anything?
in my case the config.php is in /home/docs/public_html/config
<?php $CONFIG = array ( 'instanceid' => '---', 'passwordsalt' => '---', 'secret' => '---', 'trusted_domains' => array ( 0 => 'docs.mobilecenter.lt', ), 'datadirectory' => '/home/docs/public_html/data', 'overwrite.cli.url' => 'http://docs.mobilecenter.lt', 'dbtype' => 'mysql', 'version' => '10.0.3.3', 'dbname' => 'name', 'dbhost' => 'localhost', 'dbtableprefix' => 'oc_', 'dbuser' => 'user', 'dbpassword' => '---', 'logtimezone' => 'UTC', 'installed' => true, ); i had changed some security sensitive data (passwords, secret keys, db names and usernames) By the way, I get pleanty of this kind of errors on Chrome Inspector: Refused to execute script from 'http://docs.mobilecenter.lt/---some-script-name---.js?v=---' because its MIME type ('text/js') is not executable, and strict MIME type checking is enabled. And here is the log file owncloud-log.txt (29.3 KB)Canât figure out whatâs wrong. Your logs are flooded with the âfall backâ something error. Apart from a trusted domain error and an undefined variable I canât see any problems.
Your config.php looks fine, too.
maybe @anon21401411 can find something
any ideas how to solve it? Stuck with this problem and canât valuate the script to see if itâs right product to go Enterprise.
This is a server configuration issue. Please search the web on howto configure mimetypes in apache,
e.g. like this mime - Apache delivering CSS and JS files, but browsers don't render them - Server Fault
canât understand where is the problem. In mime file I have text/javascript and text/js enabled, but when the page loads i get these errors. But itâs stange as we have file oc.js in header Content-Type:text/javascript and this one shows no error, and lot of files that in header has Content-Type:text/js and all of them has errors, but as I mentioned before, both mime types text/javascript and text/js are listed.
Any ideas?
text/js is not allowed by the browser - just get rid of it and make sure your server transmits them as text/javascript
Canât find the way how to do that as it. I use virtualmin on Centos 6.