You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
Hello,
this is likely a bug in Silex: I have built and installed our master from 3ad4f03 and have it configured on one of my VirtualHosts using an "Alias" directive, here Alias /gitlist-dev/ /var/www/gitlist-dev/. I did the same with the original version klaussilveira/gitlist but have it instead under Alias /gitlist/ /var/www/gitlist/. Both work in principle, but from our version I see a lot of such GET requests that must of course fail:
IP - [DATETIME] "GET /themes/default/css/style.css HTTP/1.1" 404
IP - [DATETIME] "GET /themes/default/css/gitgraph.css HTTP/1.1" 404
The original version (of course) works fine:
IP - [DATETIME] "GET /gitlist/themes/default/css/style.css HTTP/1.1" 300
IP - [DATETIME] "GET /gitlist/themes/default/css/gitgraph.css HTTP/1.1" 300
We see that obviously the URL for the themes is constructed in a wrong manner in our master.
Both VirtualHosts have the identical configuration, except for the location of their directory.
Anyone has hints?
The text was updated successfully, but these errors were encountered:
I can't find any places, where our application would create the failing requests to /themes/, so I assume this is a bug in Silex or Symfony. Any other opinions?
Someone else had a similar issue with phpmyadmin while using Symfony: symfony/symfony#23236
Seems there was a problem in the generation of the request URLs inside the application.
A BC break with upgrading to Silex 2.x was overlooked. This has been applied in #36
The initial commit was based on my previous commit which included additional unit testing.
Removed the branch (bug-28) and recreated it from the current HEAD.
Hello,
this is likely a bug in Silex: I have built and installed our master from 3ad4f03 and have it configured on one of my VirtualHosts using an "Alias" directive, here
Alias /gitlist-dev/ /var/www/gitlist-dev/
. I did the same with the original version klaussilveira/gitlist but have it instead underAlias /gitlist/ /var/www/gitlist/
. Both work in principle, but from our version I see a lot of such GET requests that must of course fail:The original version (of course) works fine:
We see that obviously the URL for the themes is constructed in a wrong manner in our master.
Both VirtualHosts have the identical configuration, except for the location of their directory.
Anyone has hints?
The text was updated successfully, but these errors were encountered: