Hi Ryan!
I confirm the issue involves only the Admin/Plugins page ....everything
else works fine ....yeah it's really weird.
I tried to clear cookies (and everything else related to the browser cache)
and restarted apache but still gets the same error.
I attached the Apache config
file.sftp://[email protected]/etc/apache2/sites-available/trac-fcgi.conf
Il giorno mercoledì 8 marzo 2017 08:06:24 UTC+1, RjOllos ha scritto:
>
>
>
> On Tuesday, March 7, 2017 at 10:57:16 PM UTC-8, marco.jem wrote:
>>
>> Hi Ryan!
>>
>> Thanks for the quick replay :)
>>
>> The config file is writeable by the fcgid process user, I can confirm
>> this because I'm able to change other settings (namely the
>> Admin/BasicSettings) and the trac.ini file gets modified correctly.
>>
>> I also tried to give rwX permissions to everyone on the entire directory
>> tree but still the same error, so I think it is not a file permission
>> related issue ....at least not an issue concerning the trac installation
>> files.
>>
>
> I don't have many ideas, and nothing similar in the issue tracker that I
> see. Maybe if you shared your web server configuration there will be some
> hints. Also, the version information on /about can be useful.
>
> It's strange that the issue is only seen on the plugin admin page. Can you
> reproduce the issue on any other admin pages? You might try clearing
> cookies.
>
> - Ryan
>
>
--
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.
<VirtualHost *:443>
# Virtual server name
ServerName dev.befreenergy.com
# Documents root directory
DocumentRoot /opt/apps/trac/htdocs
# Static data
<DirectoryMatch /opt/apps/trac/htdocs>
Require all granted
</DirectoryMatch>
AliasMatch "^/trac/([^/]+)/chrome/common/(.*)$"
"/opt/apps/trac/htdocs/common/$2"
AliasMatch "^/trac/([^/]+)/chrome/shared/(.*)$"
"/opt/apps/trac/htdocs/shared/$2"
AliasMatch "^/trac/([^/]+)/chrome/site(.*)$"
"/opt/apps/trac/projects/$1/htdocs$2"
# FastCGI comfiguration
ScriptAlias /trac /opt/apps/trac/webapp-bin/trac.fcgi
# SuexecUserGroup trac trac
# Require authentication
<LocationMatch "^/trac.*">
AuthType Digest
AuthName "dev.befreenergy.com"
AuthDigestProvider file
AuthUserFile /opt/apps/trac/users.htdigest
Require valid-user
</LocationMatch>
# Log config
ErrorLog /var/log/apache2/dev.befreenergy.com/error.log
CustomLog /var/log/apache2/dev.befreenergy.com/access.log combined
# SSL config
Header always set Strict-Transport-Security "max-age=63072000;
includeSubdomains;"
SSLEngine on
SSLCompression off
SSLProtocol All -SSLv2 -SSLv3
SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
SSLCertificateFile /opt/apps/trac/ssl/trac_crt_dh.crt
SSLCertificateKeyFile /opt/apps/trac/ssl/trac.key
</VirtualHost>