Flyspray (Magyar)
Appearance
From ArchWiki
Fordítás állapota: Ez az oldal az angol Flyspray című oldal magyar nyelvre lefordított változata. Utolsó fordítás dátuma: 2026年01月17日. Amennyiben a lefordítás időpontja óta az angol nyelvű oldalon történtek újabb módosítások, akkor Ön segíthet hozzászinkronizálni az angolhoz ezt a magyar nyelvű fordítást.
További oldalak az adott témakörben
Flyspray is a bug tracking system written in PHP. FlySpray was notably used by Arch Linux itself.
Telepítés
Install the flyspray AUR package. Flyspray requires a web server such as Apache HTTP Server with PHP, and an SQL server such as MySQL or PostgreSQL.
Apache Setup
Megjegyzés You will need to have Apache HTTP Server configured to run with PHP. Check Apache HTTP Server#PHP for instructions. Make sure to uncomment
extension=mysqli in /etc/php/php.ini.You will need to create a configuration file for Apache to find your Flyspray install. Create the following file:
/etc/httpd/conf/extra/flyspray.conf
Alias /flyspray "/usr/share/webapps/flyspray" <Directory "/usr/share/webapps/flyspray"> AllowOverride All Options FollowSymlinks Require all granted php_admin_value open_basedir "/srv/http/:/tmp/:/usr/share/webapps/flyspray" </Directory>
You will then need to edit /etc/webapps/flyspray/.htaccess and change deny from all to allow from all. You should now be able to navigate to the flyspray interface (e.g. http://localhost/flyspray) and it will show a page of pre-installation checks. Any issues here should be resolved before continuing.