Jump to content
Froxlor Forum
  • 0

[gel?st] PHPmyadmin will nicht mit fcgid


lindi200000

Question

Hallo,

ich habe eine neues Froxlor System aufgesetzt (0.9.15). Das ganze mit Apache2 und PHP.

Dann bin ich laut Handbuch gegangen und habe mod_fcgid und suexec installiert.

Doch leider klappt PHPmyAdmin jetzt nicht mehr.

Ich versuche es unter folgender URL zu erreichen: http://ip/phpmyadmin

Und als folge kommt eine Download Fenster, der die PHP Datei herunterladen will.

 

Ich weis das es in einen anderen Teil vom Forum das selbe Problem schonmal gab, aber leider bin ich in Englisch nicht sooo gut.

 

Ich hoffe mir kann da wer weiterhelfen.

 

Gru? Lindi

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

Es l?uft unter dem Standard VHost von PHPmyadmin.

Alias /phpmyadmin /usr/share/phpmyadmin

<Directory /usr/share/phpmyadmin>
       Options Indexes FollowSymLinks
       DirectoryIndex index.php
       # Authorize for setup
       <Files setup.php>
           # For Apache 1.3 and 2.0
           <IfModule mod_auth.c>
               AuthType Basic
               AuthName "phpMyAdmin Setup"
               AuthUserFile /etc/phpmyadmin/htpasswd.setup
           </IfModule>
           # For Apache 2.2
           <IfModule mod_authn_file.c>
               AuthType Basic
               AuthName "phpMyAdmin Setup"
               AuthUserFile /etc/phpmyadmin/htpasswd.setup
           </IfModule>
           Require valid-user
       </Files>
       <IfModule mod_php4.c>
               AddType application/x-httpd-php .php

               php_flag magic_quotes_gpc Off
               php_flag track_vars On
               php_flag register_globals Off
               php_value include_path .
       </IfModule>
       <IfModule mod_php5.c>
               AddType application/x-httpd-php .php

               php_flag magic_quotes_gpc Off
               php_flag track_vars On
               php_flag register_globals Off
               php_value include_path .
       </IfModule>
</Directory>

 

wo muss ich da genau das +ExecCGI einf?gen?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.



×
×
  • Create New...