Problem z instalacją - Wersja do druku
+- Forum Webmastera, HTML, CSS, PHP, MySQL, Hosting, Domeny - Forum dla Webmasterów (https://www.webmastertalk.pl)
+-- Dział: Technologie internetowe - tworzenie stron WWW (https://www.webmastertalk.pl/forum-technologie-internetowe-tworzenie-stron-www)
+--- Dział: Programowanie, Bazy danych (https://www.webmastertalk.pl/forum-programowanie-bazy-danych)
+--- Wątek: Problem z instalacją (/thread-problem-z-instalacja)
|
Problem z instalacją - PawelBDS - 01-12-2010
Próbuję zainstalować ELGG 1.7.5 na serwerze CBA.pl ale pojawia się
Błąd o treści:
Elgg couldn't connect to the database using the given credentials.
Zmieniłem ręcznie engine/settings.example.php na engine/settings.php
zgodnie z instrukcją: http://elgg.pl/elgg/instalacja.html
Oraz edytowałem go wpisując:
Kod: <?php
/**
* Elgg settings
*
* Elgg manages most of its configuration from the admin panel. However, we need you to
* include your database settings below.
*
* @todo Turn this into something we handle more automatically.
*/
global $CONFIG;
if (!isset($CONFIG)) {
$CONFIG = new stdClass;
}
/*
* Standard configuration
*
* You will use the same database connection for reads and writes.
* This is the easiest configuration, and will suit 99.99% of setups. However, if you're
* running a really popular site, you'll probably want to spread out your database connections
* and implement database replication. That's beyond the scope of this configuration file
* to explain, but if you know you need it, skip past this section.
*/
// Database username
$CONFIG->dbuser = '{{CONFIG_DBUSER}}';
// Database password
$CONFIG->dbpass = '{{CONFIG_DBPASS}}';
// Database name
$CONFIG->dbname = '{{CONFIG_DBNAME}}';
// Database server
// (For most configurations, you can leave this as 'localhost')
$CONFIG->dbhost = '{{CONFIG_DBHOST}}';
// Database table prefix
// If you're sharing a database with other applications, you will want to use this
// to differentiate Elgg's tables.
$CONFIG->dbprefix = '{{CONFIG_DBPREFIX}}';
/*
* Multiple database connections
*
* Here you can set up multiple connections for reads and writes. To do this, uncomment out
* the lines below.
*/
/*
// Yes! We want to split reads and writes
$CONFIG->db->split = true;
// READS
// Database username
$CONFIG->db['read']->dbuser = PawelBDS;
// Database password
$CONFIG->db['read']->dbpass = hasło;
// Database name
$CONFIG->db['read']->dbname = pawelbds_cba_pl;
// Database server
// (For most configurations, you can leave this as 'localhost')
$CONFIG->db['read']->dbhost = "localhost";
// WRITES
// Database username
$CONFIG->db['write']->dbuser = PawelBDS;
// Database password
$CONFIG->db['write']->dbpass = hasło;
// Database name
$CONFIG->db['write']->dbname = pawelbds_cba_pl;
// Database server
// (For most configurations, you can leave this as 'localhost')
$CONFIG->db['write']->dbhost = "localhost";
*/
/*
* For extra connections for both reads and writes, you can turn both
* $CONFIG->db['read'] and $CONFIG->db['write'] into an array, eg:
*
* $CONFIG->db['read'][0]->dbhost = "localhost";
*
* Note that the array keys must be numeric and consecutive, i.e., they start
* at 0, the next one must be at 1, etc.
*/
/**
* Memcache setup (optional)
* This is where you may optionally set up memcache.
*
* Requirements:
* 1) One or more memcache servers (http://www.danga.com/memcached/)
* 2) PHP memcache wrapper (http://uk.php.net/manual/en/memcache.setup.php)
*
* Note: Multiple server support is only available on server 1.2.1 or higher with PECL library > 2.0.0
*/
//$CONFIG->memcache = true;
//
//$CONFIG->memcache_servers = array (
// array('server1', 11211),
// array('server2', 11211)
//);
/**
* Some work-around flags.
*/
// Try uncommenting the below if your notification emails are not being sent
// $CONFIG->broken_mta = true;
/**
* Url - I am not sure if this will be here ?
**/
// URL
$CONFIG->url = "mysql://PawelBDS:hasł[email protected]/pawelbds_cba_pl";
. Ale instalator nadal nie działa. Może ktoś wie o co chodzi ?
RE: Problem z instalacją - Pedro84 - 02-12-2010
Gdybyś wrzucił to do Google Translatora to byś wiedział. Złe dane do połączenia z bazą danych podałeś.
RE: Problem z instalacją - PawelBDS - 02-12-2010
chodzi ci o ten fragment ?
// Database username
$CONFIG->dbuser = '{{CONFIG_DBUSER}}';
// Database password
$CONFIG->dbpass = '{{CONFIG_DBPASS}}';
// Database name
$CONFIG->dbname = '{{CONFIG_DBNAME}}';
// Database server
// (For most configurations, you can leave this as 'localhost')
$CONFIG->dbhost = '{{CONFIG_DBHOST}}';
uzupełniłem go wpisując po kolej nazwę urzytkownika bazy, hasło, nazwę bazy danych,localhost. Ale błąd nie znika.
RE: Problem z instalacją - Pedro84 - 02-12-2010
Na pewno dane poprawne? Host, etc.?
RE: Problem z instalacją - PawelBDS - 02-12-2010
Mi się zdaje że poprawne jak chcesz mogę podesłać ci na prv dane do serwera i spróbował byś sam
RE: Problem z instalacją - Pedro84 - 02-12-2010
(02-12-2010, 18:51)PawelBDS napisał(a): Mi się zdaje że poprawne jak chcesz mogę podesłać ci na prv dane do serwera i spróbował byś sam Dajesz. Bo aż ciekaw jestem
RE: Problem z instalacją - PawelBDS - 02-12-2010
Dobra żeby nie było za smutno udało mi się przeprowadzić pierwszy etap instalacji skryptu ale nadal coś jest nie tak. instalator prosi o dane oczywiście wszystko wpisuję klikam zatwierdź i wyskakuje że nie ma takiej strony mimo że plik do którego odsyła przycisk save jest na serwerze :/
|