[opensuse] Problems with phpMyAdmin
Hello Mates, i'm trying to setup phpMyAdmin by using this documentation http://www.phpmyadmin.net/documentation/Documentation.html#setup_script .. I've done: cd phpMyAdmin mkdir config # create directory for saving chmod o+rw config # give it world writable permissions And to edit an existing configuration, copy it over first: cp config.inc.php config/ # copy current configuration for editing chmod o+w config/config.inc.php # give it world writable permissions Next, open setup/ in your browser But in my Package an setup Folder doesnt exists If i go in the Browser: http://localhost/phpMyAdmin/setup he says "Object not found". If i go to http://localhost/phpMyAdmin/sonfig he says: "Access denied". Does anyone know what is to do? -- Sincerely yours Sascha Manns openSUSE Member openSUSE Ambassador openSUSE Marketing Team openSUSE Build Service Web: http://saschamanns.gulli.to Blog: http://saigkill.wordpress.com ClaimID: http://claimid.com/saigkill -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
On Friday 13 November 2009 02:28:44 pm Sascha 'saigkill' Manns wrote:
Hello Mates,
i'm trying to setup phpMyAdmin by using this documentation http://www.phpmyadmin.net/documentation/Documentation.html#setup_script .. I've done: cd phpMyAdmin mkdir config # create directory for saving chmod o+rw config # give it world writable permissions
And to edit an existing configuration, copy it over first:
cp config.inc.php config/ # copy current configuration for editing chmod o+w config/config.inc.php # give it world writable permissions Next, open setup/ in your browser But in my Package an setup Folder doesnt exists
If i go in the Browser: http://localhost/phpMyAdmin/setup he says "Object not found".
If i go to http://localhost/phpMyAdmin/sonfig he says: "Access denied".
Does anyone know what is to do?
Hi Sacha, Did you install phpMyAdmin by using a *.rpm file? The way I did install phpMyAdmin is: Open the following link in FireFox: http://software.opensuse.org/search Select the openSUSE version you use, search for phpMyAdmin Download the file named: phpMyAdmin-3.2.3-1.1.noarch.rpm from the repository server:php:applications/openSUSE_11.2 Open console, switch to root user, change to Download directory Use zypper in phpMyAdmin-3.2.3-1.1.noarch.rpm Change directory to /srv/www/htdocs/phpMyAdmin Edit the following lines in config.sample.inc.php: $cfg['blowfish_secret'] = ' '; (put a string of random characters in here) $cfg['Servers'][$i]['extension'] = 'mysql'; (change to 'mysqli') Save config.sample.inc.php and rename it to config.inc.php That's it, open the following link in Firefox: http://localhost/phpMyAdmin/ -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Am Freitag 13 November 2009 16:27:34 wrote Koen Koster:
On Friday 13 November 2009 02:28:44 pm Sascha 'saigkill' Manns wrote:
Hello Mates,
i'm trying to setup phpMyAdmin by using this documentation http://www.phpmyadmin.net/documentation/Documentation.html#setup_sc ript .. I've done: cd phpMyAdmin mkdir config # create directory for saving chmod o+rw config # give it world writable permissions
And to edit an existing configuration, copy it over first:
cp config.inc.php config/ # copy current configuration for editing chmod o+w config/config.inc.php # give it world writable permissions Next, open setup/ in your browser But in my Package an setup Folder doesnt exists
If i go in the Browser: http://localhost/phpMyAdmin/setup he says "Object not found".
If i go to http://localhost/phpMyAdmin/sonfig he says: "Access denied".
Does anyone know what is to do?
Hi Sacha,
Did you install phpMyAdmin by using a *.rpm file?
The way I did install phpMyAdmin is:
Open the following link in FireFox: http://software.opensuse.org/search
Select the openSUSE version you use, search for phpMyAdmin
Download the file named: phpMyAdmin-3.2.3-1.1.noarch.rpm from the repository server:php:applications/openSUSE_11.2
Open console, switch to root user, change to Download directory
Use zypper in phpMyAdmin-3.2.3-1.1.noarch.rpm
Change directory to /srv/www/htdocs/phpMyAdmin
Edit the following lines in config.sample.inc.php:
$cfg['blowfish_secret'] = ' '; (put a string of random characters in here) Do you know how i can create an blowfish-password?
-- Sincerely yours Sascha Manns openSUSE Member openSUSE Ambassador openSUSE Marketing Team openSUSE Build Service Web: http://saschamanns.gulli.to Blog: http://saigkill.wordpress.com ClaimID: http://claimid.com/saigkill -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
Sascha 'saigkill' Manns said the following on 11/13/2009 06:45 PM:
Edit the following lines in config.sample.inc.php:
$cfg['blowfish_secret'] = ' '; (put a string of random characters in here)
Do you know how i can create an blowfish-password?
cat /dev/urandom |dd bs=10240 count=256 2>/dev/null | sha1sum Or other numbers for block size and count, or use md5sum or one of the other shaXXXsum. It doesn't matter how strong, broken or not, you are just generating a shared secret. KISS. -- Skill without imagination is craftsmanship and gives us many useful objects such as wickerwork picnic baskets. Imagination without skill gives us modern art. -- Tom Stoppard -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org
participants (3)
-
Anton Aylward
-
Koen Koster
-
Sascha 'saigkill' Manns