Installation failed

Same failure as reported earlier, but PHP modules installed. Was not able to locate .htaccess.

run(); } catch (\Exception $e) { $viewRenderer = $application->getServiceManager()->get(‘ViewRenderer’); $model = new ViewModel; $model->setTemplate(‘error/index’); $model->setVariable(‘exception’, $e); $content = $viewRenderer->render($model); $parentModel = $application->getMvcEvent()->getViewModel(); if (!$parentModel) { $parentModel = new ViewModel; } $parentModel->setTemplate(‘layout/layout’); $parentModel->setVariable(‘content’, $content); http_response_code(500); error_log($e); echo $viewRenderer->render($parentModel); } } catch (\Exception $e) { http_response_code(500); error_log($e); include OMEKA_PATH . ‘/application/view/error/fallback.phtml’; }

I’ve made sure the files/directories are owned by (this is Ubuntu) www-data.
I’ve made sure my Apache2 is set to AllowOverride All.

php -m:
bcmath
calendar
Core
ctype
curl
date
dom
exif
FFI
fileinfo
filter
ftp
gd
gettext
hash
iconv
intl
json
libxml
mbstring
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
Phar
posix
random
readline
Reflection
session
shmop
SimpleXML
sockets
sodium
SPL
standard
sysvmsg
sysvsem
sysvshm
tokenizer
xml
xmlreader
xmlwriter
xsl
Zend OPcache
zip
zlib

1 Like

After reinstalling de software the failure disappeared. Presumably because the access rights on the files subdirectory were set in another way.