Debian Sarge, Confixx 3.2 und phpmyadmin Problem

Plesk, Confixx, Froxlor, SysCP, SeCoTo, IspCP, etc.
Post Reply
chr.raible
Posts: 19
Joined: 2005-11-07 21:31

Debian Sarge, Confixx 3.2 und phpmyadmin Problem

Post by chr.raible »

Hi @all,

ich hab gestern meinen Stratoserver neu installieren lassen und danach Confixx neu drauf gepackt! Was auch alles super funktioniert hat und auch geht!

Nun habe ich im nachhinein noch phpmyadmin per apt-get install phpmyadmin installiert! Weiß jetzt aber ehrlich gesagt net wo sich das hin installiert hat!

Was auch noch ein problem ist, ist dass ich phpmyadmin über Confixx aufrufen will also http://hxxxxx.serverkompetenz.net/phpmyadmin

Doch auch davon hab ich leider keinen plan :(. Ich weiß das ich vorher lesen sollte aber ich hab zu diesem Thema nichts gefunden!

Kann mir da eventuell ein helfen?

Danke schonmal im Voraus dafür!

Mfg
Christoph
der kleine tux
Posts: 97
Joined: 2005-10-29 04:12
Location: Planet Erde

Re: Debian Sarge, Confixx 3.2 und phpmyadmin Problem

Post by der kleine tux »

http://download1.swsoft.com/Confixx/Con ... _admin.pdf
7.1 Datenbank
http://www.debianhowto.de/doku.php/de:h ... phpmyadmin

Schnürsenkel gebunden
und gross klein schreibung beachten :roll: phpMyAdmin

gruss
cirox
Posts: 212
Joined: 2006-05-08 23:20
Location: Berlin

Re: Debian Sarge, Confixx 3.2 und phpmyadmin Problem

Post by cirox »

Hi,
Chr.Raible wrote: ... Nun habe ich im nachhinein noch phpmyadmin per apt-get install phpmyadmin installiert! Weiß jetzt aber ehrlich gesagt net wo sich das hin installiert hat! .....
also ich weiss ja net ;-) aber ob ein Rootserver das richtige ist ...., sorry aber kanns mir nicht verkneifen

check mal:

/etc/phpmyadmin
/var/www/phpmyadmin
/usr/share/phpmyadmin

----

naja da gibt es viele Wege die nach Rom führen .....

1. suphp benutzt ?

cd /opt/programs
wget http://belnet.dl.sourceforge.net/sou...n-2.8.2.tar.gz
tar -xvzf phpMyAdmin-2.8.2.tar.gz
cp -R /opt/programs/phpMyadmin-2.8.2 /var/www/confixx/html
rename in phpMyAdmin

---/var/www/confixx/html/phpMyAdmin/libraries/config.default.php---

####
...
$cfg['Servers'][$i]['auth_type'] = 'http';
...
####

chown -R confixx:confixx /var/www/confixx/html/phpMyAdmin

2. wenn kein suphp (oder suphp und bei confixx mhost suphp engine off manuell eingetragen):

http://faq.sw-soft.com/article_80_603_en.html

---etc/apache2/conf.d/phpmyadmin.conf----

Code: Select all

####
Alias /phpMyAdmin /usr/share/phpmyadmin

<DirectoryMatch /usr/share/phpmyadmin/>
Options +FollowSymLinks
AllowOverride None
order allow,deny
allow from all
<IfModule mod_php3.c>
php3_magic_quotes_gpc Off
php3_track_vars On
php3_include_path .
</IfModule>
<IfModule mod_php4.c>
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals On
php_value include_path .
php_admin_value open_basedir /usr/share/phpmyadmin:/etc/phpmyadmin
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# there are changes above.
</IfModule>
</DirectoryMatch>
####
etc/init.d/apache2 restart

Gruß cirox
Post Reply