When I go to login page i get this
Internal Server Error
The server encountered an internal error and was unable to complete your request.
Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.
More details can be found in the server log.
Technical details
Remote Address:
Request ID: g5WPrA3gvKyDcIDJ9aZR
I done research and I can't make anything of this log file. I'll just include the Request ID that is present being there is a lot of info in this .log file. Just let me know if there is something else that I could provide that might help.
File name is owncloud.log
{"reqId":"g5WPrA3gvKyDcIDJ9aZR","remoteAddr":"","app":"index","message":"Exception: {\"Exception\":\"Exception\",\"Message\":\"The requested uri() cannot be processed by the script '\\/owncloud\\/index.php')\",\"Code\":0,\"Trace\":\"#0 \\/var\\/www\\/html\\/owncloud\\/lib\\/base.php(837): OC\\AppFramework\\Http\\Request->getRawPathInfo()\n#1 \\/var\\/www\\/html\\/owncloud\\/index.php(39): OC::handleRequest()\n#2 {main}\",\"File\":\"\\/var\\/www\\/html\\/owncloud\\/lib\\/private\\/appframework\\/http\\/request.php\",\"Line\":621}","level":3,"time":"2016-07-28T01:22:41+00:00","method":"GET","url":"--","user":"--"}
***Here is Line 614 through 635 of file request.php. What ever this all means LOL?
Line 621 is -> throw new \Exception("The requested uri($requestUri) cannot be processed by the script '$scriptName')");
614 // strip off the script name's dir and file name
// FIXME: Sabre does not really belong here
list($path, $name) = \Sabre\HTTP\URLUtil::splitPath($scriptName);
if (!empty($path)) {
if($path === $pathInfo || strpos($pathInfo, $path.'/') === 0) {
$pathInfo = substr($pathInfo, strlen($path));
} else {
621 throw new \Exception("The requested uri($requestUri) cannot be processed by the script '$scriptName')");
}
}
if (strpos($pathInfo, '/'.$name) === 0) {
$pathInfo = substr($pathInfo, strlen($name) + 1);
}
if (strpos($pathInfo, $name) === 0) {
$pathInfo = substr($pathInfo, strlen($name));
}
if($pathInfo === false || $pathInfo === '/'){
return '';
} else {
return $pathInfo;
}
635 }