https://bugs.contribs.org/show_bug.cgi?id=10592
--- Comment #11 from John Crisp <[email protected]> ---
You need to do a bit of detective work yourself here really.
I have installed Pydio years back but almost forgotten it is there and I do not
maintain it so I have to do what you can do yourself.
First thing is you have a warning.
Last line in this conf file : Last line in this conf file :
/opt/remi/php56/root/etc/php-fpm.d/www.conf
; Pydio is disabled
Look at the file.
cat /opt/remi/php56/root/etc/php-fpm.d/www.conf
First thing you can see:
;------------------------------------------------------------
; !!DO NOT MODIFY THIS FILE!!
;
; Manual changes will be lost when this file is regenerated.
So it is built from templates.
Mine has this section
[php56-pydio]
Blah
Yours says disabled, so why.
cd /etc/e-smith/templates
grep -rn pydio *
Ahh...
.....
etc/php-fpm.d/www.conf/25Pydio:5: my $max_upload_size =
$pydio{MaxUploadSize} || '4096';
etc/php-fpm.d/www.conf/25Pydio:7: my $id = 'pydio';
etc/php-fpm.d/www.conf/25Pydio:8: my $homedir = $pydio{'HomeDir'} || 'none';
....
Looks like the file.
So...
cat etc/php-fpm.d/www.conf/25Pydio
{
if ($PHP_VERSION eq '56'){
....
}
else{
$OUT .= '; Pydio is disabled';
}
A miracle - if $PHP_VERSION is not equal to 56 you will not get a template.
Suggest you start your search from there.
Try grep -rn PHP_VERSION *
I don't know the specific answer, but that is the core of your problem.
Get a copy of the rpm and have a look inside it.
It seems that the PHP version for pydio is probably set in the your html.conf
and /opt/remi/php56/root/etc/php-fpm.d/www.conf
One of those is probably incorrect.
--
You are receiving this mail because:
You are the QA Contact for the bug._______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/