• This forum has a zero tolerance policy regarding spam. If you register here to publish advertising, your user account will be deleted without further questions.

[S] 2 How To's ....

D

dereine

Guest
Moin


.... Einmal für phpmyadmin,
und für apache, aber nicht auf apache 2 sondern die aktuellste 1'ser version.

Mein system ist Debian Woody :)

Schon mal Danke im Vorraus.
MFG
Dennis
 
Hm?
Ist das hier eine "Bestell-Liste"?
Glaubst doch jetzt nicht im Ernst, dass dir hier jetzt jemand eine phpmyadmin-Docu schreibt?
Stell deine Frage bitte nochmals genauer, dass man überhaupt weiß, was du genau suchst.
Ich habe es irgendwie nicht ganz verstehen können.
 
Es soll niemand ne Doku schreiben,
ich suche ein How to, wie ich phpmyadmin auf die aktuellste version bringen kann. genau so ist es mit Apache auch,
ich habe zwar gestern die ganze zeit gegooglet und bei http://www.debianhowto.de/ geschaut aber nix gefunden.
Daher fragte ich ob jemand ein Howto kennt.
 
Code:
apt-get update && apt-get upgrade
Ist zwar nicht die aktuellst mögliche Version aber stabil und nutzbar. Solange du kein neues Feature brauchst reicht das aus.
Wenn du doch umbedingt was neueres brauchst deinstalliere die Apache und phpmysql Debian Packete und halte dich einfach an die mitgelieferten Installationsanweisungen.
 
:) ich habe irgendwie auch das gleich Problem, ich blick bei den Einstellung von phpmyadmin nicht so durch.


debianhowto.de

Code:
obelix:~# vi /etc/phpmyadmin/config.inc.php   $cfgPmaAbsoluteUri = "https://ssl.deinedomain.tld/phpmyadmin/"
   $cfgServers[1]['auth_type'] = 'http';
   $cfgServers[1]['user'] = '';

( so habe ich es bei suse mit confix gemacht )


Meine Config Datei



Code:
 * Debian local configuration file
 *
 * This file overrides global configuration file
 */


/**
 * Server(s) configuration
 */
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1].  Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;

// Uncomment to override the default configuration
//$cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname or IP address
//$cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port
//$cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket
//$cfg['Servers'][$i]['connect_type']  = 'socket';    // How to connect to MySQL server ('tcp' or 'socket')
//$cfg['Servers'][$i]['extension']     = 'mysql';     // The php MySQL extension to use ('mysql' or 'mysqli')
//$cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
//                                                    // (requires PHP >= 4.3.0)
//$cfg['Servers'][$i]['controluser']   = '';          // MySQL control user settings
//                                                    // (this user must have read-only
//$cfg['Servers'][$i]['controlpass']   = '';          // access to the "mysql/user"
//                                                    // and "mysql/db" tables).
//                                                    // The controluser is also
//                                                    // used for all relational
//                                                    // features (pmadb)
//$cfg['Servers'][$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?
//$cfg['Servers'][$i]['user']          = 'root';      // MySQL user
//$cfg['Servers'][$i]['password']      = '';          // MySQL password (only needed
//                                                    // with 'config' auth_type)
//$cfg['Servers'][$i]['only_db']       = '';          // If set to a db-name, only
//                                                    // this db is displayed in left frame
//                                                    // It may also be an array of db-names, where sorting order is relevant.
//$cfg['Servers'][$i]['verbose']       = '';          // Verbose name for this host - leave blank to show the hostname
//
//$cfg['Servers'][$i]['pmadb']         = 'phpmyadmin';// Database used for Relation, Bookmark and PDF Features
//                                                    // (see scripts/create_tables.sql)
//                                                    //   - leave blank for no support
 
@HornOx

gesagt getan und nu ??
jetze geht nix mehr :-(

dpohle:/# /etc/init.d/apache restart
Reloading apache modulesstart-stop-daemon: warning: failed to kill 18787: No such process
No process in pidfile `/var/run/apache.pid' found running; none killed.
[Sat May 21 14:32:16 2005] [warn] module php4_module is already loaded, skipping
fopen: No such file or directory
apache: could not open document config file /etc/apache/conf.d/*.conf
failed
 
Schau mal was per
px aux
rauskommt und kill entsprechende Prozesse.
Dann versuche einfach nochmals den Apachen zu starten.

P.S.:
Ich weiß ja nicht, wie ihr das mit PMA machen wollt, aber ich denke fast es ist immer am einfachsten sich einfach die Sourcen zu holen, schnell zu entzippen und dann die 3 Einstellungen im config-file zu machen. Ist ja fast jede Zeile dokumentiert. Wenn es dann noch z.B. in /usr/share oder so sein soll, so müsst ihr es ja entweder nur dahin entpacken oder einfach schnell rüberkopieren.
Viel mit installieren hat phpmyadmin ja nicht zu tun, dass sind ja auch nur arme PHP-Scripte ;)
 
Last edited by a moderator:
Back
Top