bugzilla installation mit xampp in windows 8

2387
revathi

Bugzilla muss auf meinem Windows XP-Computer mithilfe von XAMPP mit Perl installiert werden. Was ist die Prozedur?

Ich habe PHP-basierte Anwendungen in XAMPP installiert, wie Joomla, WordPress usw., aber Bugzilla scheint auf Perl zu basieren. Die Installationsanleitung besagt, dass ich ActivePerl installieren muss. Muss ich dies tun, da XAMPP mit Perl-Addon geliefert wird?

Soll ich die Quelldateien in htdocs selbst behalten oder gibt es einen anderen Ordner für Perl-Anwendungen?

Ich bin völlig neu in Perl und habe ehrlich keine Ahnung davon. Jede Hilfe wird geschätzt.

0

1 Antwort auf die Frage

0
Jon O'Shea

Folgen Sie der Installationsanleitung bis zum Buchstaben https://wiki.mozilla.org/Bugzilla:Win32Install, bis Sie aufgefordert werden, DocumentRoot in Ihrer Apache-Konfigurationsdatei zu ändern. Ändern Sie es NICHT in C: / Bugzilla. Fügen Sie stattdessen Folgendes hinzu:

Alias /bugzilla C:/Bugzilla <Directory C:/Bugzilla> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs-2.0/mod/core.html#options # for more information. # Options Indexes FollowSymLinks ExecCGI  # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride All  # # Controls who can get stuff from this server. # Order allow,deny Allow from all  # # Tell Apache to use Perl to execute .cgi # ScriptInterpreterSource Registry-Strict </Directory> 

Suchen Sie dann im Bugzilla-Installationsordner die Datei 'params', öffnen Sie sie in einem anständigen Texteditor und ändern Sie die URL-Basis in die IP-Adresse (oder den Namen) Ihres Servers, den Schrägstrich "Bugzilla". Beispiel:

http: // 192.168.7.7/bugzilla/ (ohne Leerzeichen zwischen doppeltem Schrägstrich und IP-Adresse)

Stellen Sie sicher, dass Sie Apache neu starten (mit xampp), und führen Sie das Script checksetup.pl erneut aus, falls Sie dies noch nicht getan haben.

Wenn Sie die Installationsschritte ausgeführt haben, besuchen Sie die URL, die Sie oben als "URL-Basis" verwendet haben.