settings.php

Přeji pěkný den

Zkusil jsem zopírovat stránky na server i s databází. Bohužel se objevilo toto:

Site off-line

The site is currently not available due to technical problems. Please try again later. Thank you for your understanding.


If you are the maintainer of this site, please check your database settings in the settings.php file and ensure that your hosting provider's database server is running. For more help, see the handbook, or contact your hosting provider.

The mysql error was: Access denied for user 'ic_newjevci'@'ic02.ic.cz' (using password: YES).

Zkoušel jsem různá nastavení v settings php, ale nic. to za zavináčem se občas mění ic02, ic05.

Můj settings.php je zde:

<!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Consolas; panose-1:2 11 6 9 2 2 4 3 2 4; mso-font-charset:238; mso-generic-font-family:modern; mso-font-pitch:fixed; mso-font-signature:-1610611985 1073750091 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin-top:6.0pt; margin-right:0cm; margin-bottom:6.0pt; margin-left:0cm; text-align:justify; mso-pagination:widow-orphan; font-size:12.0pt; mso-bidi-font-size:10.0pt; font-family:"Times New Roman","serif"; mso-fareast-font-family:"Times New Roman"; mso-ansi-language:EN-US;} p.MsoPlainText, li.MsoPlainText, div.MsoPlainText {mso-style-unhide:no; mso-style-link:"Prostý text Char"; margin:0cm; margin-bottom:.0001pt; text-align:justify; mso-pagination:widow-orphan; font-size:10.5pt; font-family:Consolas; mso-fareast-font-family:"Times New Roman"; mso-bidi-font-family:"Times New Roman"; mso-ansi-language:EN-US;} span.ProsttextChar {mso-style-name:"Prostý text Char"; mso-style-unhide:no; mso-style-locked:yes; mso-style-link:"Prostý text"; mso-ansi-font-size:10.5pt; mso-bidi-font-size:10.5pt; font-family:Consolas; mso-ascii-font-family:Consolas; mso-hansi-font-family:Consolas; mso-ansi-language:EN-US;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page WordSection1 {size:595.3pt 841.9pt; margin:70.85pt 66.75pt 70.85pt 66.7pt; mso-header-margin:35.4pt; mso-footer-margin:35.4pt; mso-paper-source:0;} div.WordSection1 {page:WordSection1;} -->

$Id: default.settings.php,v 1.8.2.4 2009/09/14 12:59:18 goba Exp $

 

/**

 * @file

 * Drupal site-specific configuration file.

 *

 * IMPORTANT NOTE:

 * This file may have been set to read-only by the Drupal installation

 * program. If you make changes to this file, be sure to protect it again

 * after making your modifications. Failure to remove write permissions

 * to this file is a security risk.

 *

 * The configuration file to be loaded is based upon the rules below.

 *

 * The configuration directory will be discovered by stripping the

 * website's hostname from left to right and pathname from right to

 * left. The first configuration file found will be used and any

 * others will be ignored. If no other configuration file is found

 * then the default configuration file at 'sites/default' will be used.

 *

 * For example, for a fictitious site installed at

 * http://www.drupal.org/mysite/test/, the 'settings.php'

 * is searched in the following directories:

 *

 *  1. sites/www.drupal.org.mysite.test

 *  2. sites/drupal.org.mysite.test

 *  3. sites/org.mysite.test

 *

 *  4. sites/www.drupal.org.mysite

 *  5. sites/drupal.org.mysite

 *  6. sites/org.mysite

 *

 *  7. sites/www.drupal.org

 *  8. sites/drupal.org

 *  9. sites/org

 *

 * 10. sites/default

 *

 * If you are installing on a non-standard port number, prefix the

 * hostname with that number. For example,

 * http://www.drupal.org:8080/mysite/test/ could be loaded from

 * sites/8080.www.drupal.org.mysite.test/.

 */

 

/**

 * Database settings:

 *

 * Note that the $db_url variable gets parsed using PHP's built-in

 * URL parser (i.e. using the "parse_url()" function) so make sure

 * not to confuse the parser. If your username, password

 * or database name contain characters used to delineate

 * $db_url parts, you can escape them via URI hex encodings:

 *

 *   : = %3a   / = %2f   @ = %40

 *   + = %2b   ( = %28   ) = %29

 *   ? = %3f   = = %3d   & = %26

 *

 * To specify multiple connections to be used in your site (i.e. for

 * complex custom modules) you can also specify an associative array

 * of $db_url variables with the 'default' element used until otherwise

 * requested.

 *

 * You can optionally set prefixes for some or all database table names

 * by using the $db_prefix setting. If a prefix is specified, the table

 * name will be prepended with its value. Be sure to use valid database

 * characters only, usually alphanumeric and underscore. If no prefixes

 * are desired, leave it as an empty string ''.

 *

 * To have all database names prefixed, set $db_prefix as a string:

 *

 *   $db_prefix = 'main_';

 *

 * To provide prefixes for specific tables, set $db_prefix as an array.

 * The array's keys are the table names and the values are the prefixes.

 * The 'default' element holds the prefix for any tables not specified

 * elsewhere in the array. Example:

 *

 *   $db_prefix = array(

 *     'default'   => 'main_',

 *     'users'     => 'shared_',

 *     'sessions'  => 'shared_',

 *     'role'      => 'shared_',

 *     'authmap'   => 'shared_',

 *   );

 *

 * Database URL format:

 *   $db_url = 'mysql://username:password@localhost/databasename';

 *   $db_url = 'mysqli://username:password@localhost/databasename';

 *   $db_url = 'pgsql://username:password@localhost/databasename';

 */

$db_url = 'mysqli://ic_newjevci:root@mysql.ic.cz/ic_newjezevci';

$db_prefix = '';

 

/**

 * Access control for update.php script

 *

 * If you are updating your Drupal installation using the update.php script

 * being not logged in as administrator, you will need to modify the access

 * check statement below. Change the FALSE to a TRUE to disable the access

 * check. After finishing the upgrade, be sure to open this file again

 * and change the TRUE back to a FALSE!

 */

$update_free_access = FALSE;

 

/**

 * Base URL (optional).

 *

 * If you are experiencing issues with different site domains,

 * uncomment the Base URL statement below (remove the leading hash sign)

 * and fill in the absolute URL to your Drupal installation.

 *

 * You might also want to force users to use a given domain.

 * See the .htaccess file for more information.

 *

 * Examples:

 *   $base_url = 'http://www.example.com';

 *   $base_url = 'http://www.example.com:8888';

 *   $base_url = 'http://www.example.com/drupal';

 *   $base_url = 'https://www.example.com:8888/drupal';

 *

 * It is not allowed to have a trailing slash; Drupal will add it

 * for you.

 */

# $base_url = 'http://www.example.com';  // NO trailing slash!

 

/**

 * PHP settings:

 *

 * To see what PHP settings are possible, including whether they can

 * be set at runtime (ie., when ini_set() occurs), read the PHP

 * documentation at http://www.php.net/manual/en/ini.php#ini.list

 * and take a look at the .htaccess file to see which non-runtime

 * settings are used there. Settings defined here should not be

 * duplicated there so as to avoid conflict issues.

 */

ini_set('arg_separator.output',     '&amp;');

ini_set('magic_quotes_runtime',     0);

ini_set('magic_quotes_sybase',      0);

ini_set('session.cache_expire',     200000);

ini_set('session.cache_limiter',    'none');

ini_set('session.cookie_lifetime',  2000000);

ini_set('session.gc_maxlifetime',   200000);

ini_set('session.save_handler',     'user');

ini_set('session.use_cookies',      1);

ini_set('session.use_only_cookies', 1);

ini_set('session.use_trans_sid',    0);

ini_set('url_rewriter.tags',        '');

 

/**

 * If you encounter a situation where users post a large amount of text, and

 * the result is stripped out upon viewing but can still be edited, Drupal's

 * output filter may not have sufficient memory to process it. If you

 * experience this issue, you may wish to uncomment the following two lines

 * and increase the limits of these variables. For more information, see

 * http://php.net/manual/en/pcre.configuration.php.

 */

# ini_set('pcre.backtrack_limit', 200000);

# ini_set('pcre.recursion_limit', 200000);

 

/**

 * Drupal automatically generates a unique session cookie name for each site

 * based on on its full domain name. If you have multiple domains pointing at

 * the same Drupal site, you can either redirect them all to a single domain

 * (see comment in .htaccess), or uncomment the line below and specify their

 * shared base domain. Doing so assures that users remain logged in as they

 * cross between your various domains.

 */

# $cookie_domain = 'example.com';

 

/**

 * Variable overrides:

 *

 * To override specific entries in the 'variable' table for this site,

 * set them here. You usually don't need to use this feature. This is

 * useful in a configuration file for a vhost or directory, rather than

 * the default settings.php. Any configuration setting from the 'variable'

 * table can be given a new value. Note that any values you provide in

 * these variable overrides will not be modifiable from the Drupal

 * administration interface.

 *

 * Remove the leading hash signs to enable.

 */

# $conf = array(

#   'site_name' => 'My Drupal site',

#   'theme_default' => 'minnelli',

#   'anonymous' => 'Visitor',

/**

 * A custom theme can be set for the off-line page. This applies when the site

 * is explicitly set to off-line mode through the administration page or when

 * the database is inactive due to an error. It can be set through the

 * 'maintenance_theme' key. The template file should also be copied into the

 * theme. It is located inside 'modules/system/maintenance-page.tpl.php'.

 * Note: This setting does not apply to installation and update pages.

 */

#   'maintenance_theme' => 'minnelli',

/**

 * reverse_proxy accepts a boolean value.

 *

 * Enable this setting to determine the correct IP address of the remote

 * client by examining information stored in the X-Forwarded-For headers.

 * X-Forwarded-For headers are a standard mechanism for identifying client

 * systems connecting through a reverse proxy server, such as Squid or

 * Pound. Reverse proxy servers are often used to enhance the performance

 * of heavily visited sites and may also provide other site caching,

 * security or encryption benefits. If this Drupal installation operates

 * behind a reverse proxy, this setting should be enabled so that correct

 * IP address information is captured in Drupal's session management,

 * logging, statistics and access management systems; if you are unsure

 * about this setting, do not have a reverse proxy, or Drupal operates in

 * a shared hosting environment, this setting should be set to disabled.

 */

#   'reverse_proxy' => TRUE,

/**

 * reverse_proxy accepts an array of IP addresses.

 *

 * Each element of this array is the IP address of any of your reverse

 * proxies. Filling this array Drupal will trust the information stored

 * in the X-Forwarded-For headers only if Remote IP address is one of

 * these, that is the request reaches the web server from one of your

 * reverse proxies. Otherwise, the client could directly connect to

 * your web server spoofing the X-Forwarded-For headers.

 */

#   'reverse_proxy_addresses' => array('a.b.c.d', ...),

# );

 

/**

 * String overrides:

 *

 * To override specific strings on your site with or without enabling locale

 * module, add an entry to this list. This functionality allows you to change

 * a small number of your site's default English language interface strings.

 *

 * Remove the leading hash signs to enable.

 */

# $conf['locale_custom_strings_en'] = array(

#   'forum'      => 'Discussion board',

#   '@count min' => '@count minutes',

# );

 děkuji za pomoc

 

návštěvník
Omlouvám se za předchozí přispěvek už jsem to trochu vylepšil, měl jsem chybu v názvu uživatele.
teď mi to píše toto:
  • warning: fopen() [function.fopen]: SAFE MODE Restriction in effect. The script whose uid is 1564744 is not allowed to access /tmp/fileEFPhey owned by uid 33 in /home/free/ic.cz/n/newjezevci/root/www/includes/file.inc on line 773.
  • warning: fopen(/tmp/fileEFPhey) [function.fopen]: failed to open stream: Success in /home/free/ic.cz/n/newjezevci/root/www/includes/file.inc on line 773.
  • Soubor nelze vytvořit.
  • warning: fopen() [function.fopen]: SAFE MODE Restriction in effect. The script whose uid is 1564744 is not allowed to access /tmp/filePrWyR0 owned by uid 33 in /home/free/ic.cz/n/newjezevci/root/www/includes/file.inc on line 773.
  • warning: fopen(/tmp/filePrWyR0) [function.fopen]: failed to open stream: Success in /home/free/ic.cz/n/newjezevci/root/www/includes/file.inc on line 773.
  • Soubor nelze vytvořit.
návštěvník

Drobnými krůčky vpřed

0:/sites/default/files/ zde chyběl adresář tmp s právy zápisu vytvořen práva nastaveny

0:/sites/default/files/ .htaccess přejmenován aby neškodil

Po té jsem měl chybu že soubor

0:/sites/default/files/languages/cs_212be125b34b88632a34700d1c2cae3a.js není nastaven on tam nebyl vůbec,tak sem ten soubor co tam byl a jmenoval se jinak zkopíroval do PC přejmenoval a zkopíroval zpět.

pak se mi oběvila úvodní stránka drupalu, přesto že jsem databázi i celé stránky kopíroval.

Drupal hlásí jednu chybu:

Váš systém nebo síťové nastavení neumožňuje Drupalu přístup k webovým stránkám, výsledkem jsou omezené funkce. To může být způsobeno nastavením webového serveru nebo nastavením PHP. Omezení se projeví v informacích o dostupných aktualizacích, agregátoru, přihlašování přes OpenID nebo použití služeb závislých na síti.

Nevím proč.

 

návštěvník

Chyba

SQL-dotaz:

--
-- Databáze: `new-jezevci`
--
CREATE DATABASE `new-jezevci` DEFAULT CHARACTER SET utf8 COLLATE utf8_czech_ci;

MySQL hlásí:

#1044 - Access denied for user 'ic_jezevci'@'88.86.10%' to database 'new-jezevci'

databázi jsme asi nezkopíroval celou toto mi to psalo vždy, tak se mi asi nějak povedlo nebo spíš nepovedlo zkopírovat část nebo nic z databáze

Profile picture for user Jan Polzer

Ta chyba hlásí, že nemáte přístup k databázi. Takže jste tam buď špatně zadal přístupové údaje, nebo název databáze.

návštěvník

Dobrý den, mám úplně ten samý problém. Vím, že musím změnit nastevení v settings.php jmeno, heslo apod., ale vím přesně jak. Mohl by jste mi prosím poradit? Děkuji

návštěvník

Tedy NEVÍM, přesně jak...

návštěvník

* Database URL format:
 *   $db_url = 'mysql://username:password@localhost/databasename';
 *   $db_url = 'mysqli://username:password@localhost/databasename';
 *   $db_url = 'pgsql://username:password@localhost/databasename';
 */
$db_url = 'mysqli://root:vertrigo@localhost/new-jezevci';
$db_prefix = '';

 

Takto to je u mě v PC na serveru to bude mysqli://jménouživatele:heslo@jménoserverukdehostujete/jménodatabáze';

Najde se to v settings.php

Problém, ktrerý jsem tu řešil byl na streně serveru. Nakonec mi zazálohovalo databázi, smazali a znova nahráliz té zálohy a vše začlo fungovat.

návštěvník

Ano presne tak. Problem bude s pristupom. A dovolim si este poznamku bolo by lepsie davat taketo chybove hlasenia do fora v podobe odkazu na "screenshots"; napr. s vyuzitim sluzby http://www.jingproject.com/. Pripadne vo forme prilohy k prispevku. Takto je prispevok zbytocne dlhy a neprehladny.

Odpovědět

Obsah tohoto pole je soukromý a nebude veřejně zobrazen.

Odesláním komentáře souhlasíte s podmínkami Ochrany osobních údajů

reklama
Moje kniha o CMS Drupal

 

Kniha 333 tipů a triků pro Drupal 9


Více na KnihyPolzer.cz

Sledujte Maxiorla na Facebooku

Maxiorel na Facebooku

Poslední komentáře
Hosting pro Drupal a WordPress

Hledáte český webhosting vhodný nejenom pro redakční systém Drupal? Tak vyzkoušejte Webhosting C4 za 1200 Kč na rok s doménou v ceně, 20 GB prostoru a automatické navyšováním o 2 GB každý rok. Podrobnosti zde.

@maxiorel na Twitteru

Maxiorel na Twitteru