Установка SMF 2.0

Автор DarkIsador, 08 декабря 2009, 14:20:47

« назад - далее »

0 Пользователи и 2 гостей просматривают эту тему.

DarkIsador

Здравствуйте уважаемые специалисты!
В первый раз пробую поставить форум,и решил брать не phpBB, а SMF .

на 3тьем шаге выскакивает ошибка
Цитировать
Cannot connect to the database server with the supplied data.

If you are not sure about what to type in, please contact your host.
Access denied for user 'root'@'localhost' (using password: YES)

Использую denwer , в настройках форума прописал логин и пас root

Что делать?

Bugo

В денвере по умолчанию нет пароля, так что используйте просто логин root

DarkIsador

Цитата: Bugo от 08 декабря 2009, 14:35:18
В денвере по умолчанию нет пароля, так что используйте просто логин root
Пробывал,он тоже самое пишет :(



Вы скажите,я любые конфиги скину,какие надо .

Bugo

А Вы базу данных-то создали по адресу http://localhost/Tools/phpMyAdmin/ ? Нужно создать и указать её правильное название на третьем шаге.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 14:39:24
А Вы базу данных-то создали по адресу http://localhost/Tools/phpMyAdmin/ ? Нужно создать и указать её правильное название на третьем шаге.
Он не заходит,пишет ошибку
Цитировать
#1045 - Access denied for user 'root'@'localhost' (using password: YES)
ЦитироватьПроверьте имя хоста, пользователя и пароль в config.inc.php.
вроде проверил

$cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port']          = '3306';          // 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']  = 'tcp';       // 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']     = 'config';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = 'root';      // MySQL user
$cfg['Servers'][$i]['password']      = 'root';          // 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
                                                    //     DEFAULT: 'phpmyadmin'


Bugo

В строчке $cfg['Servers'][$i]['password']      = 'root'; уберите пароль, чтоб стало так:
$cfg['Servers'][$i]['password']      = '';

Затем попробуйте зайти в браузере по адресе http://localhost/Tools/phpMyAdmin/ и создать новую бд

DarkIsador

Цитата: Bugo от 08 декабря 2009, 14:49:21
В строчке $cfg['Servers'][$i]['password']      = 'root'; уберите пароль, чтоб стало так:
$cfg['Servers'][$i]['password']      = '';

Затем попробуйте зайти в браузере по адресе http://localhost/Tools/phpMyAdmin/ и создать новую бд
Таже самая ошибка,денвер рестартил :(

Bugo

Файл config.inc.php выложите

DarkIsador

Цитата: Bugo от 08 декабря 2009, 14:55:51
Файл config.inc.php выложите
<?php
// Разрешаем использование не-UTF-8 кодировок (для совместимости с MySQL3).
define('PMA_REMOVED_NON_UTF_8'1);

/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
 * phpMyAdmin Configuration File
 *
 * All directives are explained in Documentation.html
 */


/**
 * Sets the php error reporting - Please do not change this line!
 */
if (!isset($old_error_reporting)) {
    
error_reporting(E_ALL);
    @
ini_set('display_errors''1');
}


/**
 * Your phpMyAdmin url
 *
 * Complete the variable below with the full url ie
 *    http://www.your_web.net/path_to_your_phpMyAdmin_directory/
 *
 * It must contain characters that are valid for a URL, and the path is
 * case sensitive on some Web servers, for example Unix-based servers.
 *
 * In most cases you can leave this variable empty, as the correct value
 * will be detected automatically. However, we recommend that you do
 * test to see that the auto-detection code works in your system. A good
 * test is to browse a table, then edit a row and save it.  There will be
 * an error message if phpMyAdmin cannot auto-detect the correct value.
 *
 * If the auto-detection code does work properly, you can set to TRUE the
 * $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
 */
$cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' 'http') . '://'
  
$_SERVER['HTTP_HOST']
  . 
substr($_SERVER['PHP_SELF'], 0strrpos($_SERVER['PHP_SELF'], '/')+1);


/**
 * Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
 * You should use this if and ONLY if the PmaAbsoluteUri auto-detection
 * works perfectly.
 */
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;

/**
 * Disable the default warning that is displayed on the DB Details Structure page if
 * any of the required Tables for the relationfeatures could not be found
 */
$cfg['PmaNoRelation_DisableWarning']  = FALSE;

/**
 * The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
 * at least one server configuration uses 'cookie' auth_type, enter here a
 * passphrase that will be used by blowfish.
 */
$cfg['blowfish_secret'] = '';

/**
 * 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++;
$cfg['Servers'][$i]['host']          = 'localhost'// MySQL hostname or IP address
$cfg['Servers'][$i]['port']          = '3306';          // 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']  = 'tcp';       // 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']     = 'config';    // 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
                                                    //     DEFAULT: 'phpmyadmin'
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';          // Bookmark table
                                                    //   - leave blank for no bookmark support
                                                    //     DEFAULT: 'pma_bookmark'
$cfg['Servers'][$i]['relation']      = 'pma_relation';          // table to describe the relation between links (see doc)
                                                    //   - leave blank for no relation-links support
                                                    //     DEFAULT: 'pma_relation'
$cfg['Servers'][$i]['table_info']    = 'pma_table_info';          // table to describe the display fields
                                                    //   - leave blank for no display fields support
                                                    //     DEFAULT: 'pma_table_info'
$cfg['Servers'][$i]['table_coords']  = 'pma_table_coords';          // table to describe the tables position for the PDF schema
                                                    //   - leave blank for no PDF schema support
                                                    //     DEFAULT: 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']     = 'pma_pdf_pages';          // table to describe pages of relationpdf
                                                    //   - leave blank if you don't want to use this
                                                    //     DEFAULT: 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']   = 'pma_column_info';          // table to store column information
                                                    //   - leave blank for no column comments/mime types
                                                    //     DEFAULT: 'pma_column_info'
$cfg['Servers'][$i]['history']       = 'pma_history';          // table to store SQL history
                                                    //   - leave blank for no SQL query history
                                                    //     DEFAULT: 'pma_history'
$cfg['Servers'][$i]['verbose_check'] = TRUE;        // set to FALSE if you know that your pma_* tables
                                                    // are up to date. This prevents compatibility
                                                    // checks and thereby increases performance.
$cfg['Servers'][$i]['AllowRoot']     = TRUE;        // whether to allow root login
$cfg['Servers'][$i]['AllowDeny']['order']           // Host authentication order, leave blank to not use
                                     
'';
$cfg['Servers'][$i]['AllowDeny']['rules']           // Host authentication rules, leave blank for defaults
                                     
= array();


$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''// 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''// 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''// 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''// 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''// 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''// 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''// 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''// 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowRoot']       = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
                                       = 
'';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

$i++;
$cfg['Servers'][$i]['host']            = '';
$cfg['Servers'][$i]['port']            = '';
$cfg['Servers'][$i]['socket']          = '';
$cfg['Servers'][$i]['connect_type']    = 'tcp';
$cfg['Servers'][$i]['extension']       = 'mysql';
$cfg['Servers'][$i]['compress']        = FALSE;
$cfg['Servers'][$i]['controluser']     = '';
$cfg['Servers'][$i]['controlpass']     = '';
$cfg['Servers'][$i]['auth_type']       = 'config';
$cfg['Servers'][$i]['user']            = 'root';
$cfg['Servers'][$i]['password']        = '';
$cfg['Servers'][$i]['only_db']         = '';
$cfg['Servers'][$i]['verbose']         = '';
$cfg['Servers'][$i]['pmadb']           = ''// 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable']   = ''// 'pma_bookmark'
$cfg['Servers'][$i]['relation']        = ''// 'pma_relation'
$cfg['Servers'][$i]['table_info']      = ''// 'pma_table_info'
$cfg['Servers'][$i]['table_coords']    = ''// 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages']       = ''// 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info']     = ''// 'pma_column_info'
$cfg['Servers'][$i]['history']         = ''// 'pma_history'
$cfg['Servers'][$i]['verbose_check']   = TRUE;
$cfg['Servers'][$i]['AllowRoot']       = TRUE;

$cfg['Servers'][$i]['AllowDeny']['order']
                                       = 
'';
$cfg['Servers'][$i]['AllowDeny']['rules']
                                       = array();

// If you have more than one server configured, you can set $cfg['ServerDefault']
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfg['ServerDefault'] *MUST* be
// set to that server.
$cfg['ServerDefault'] = 1;              // Default server (0 = no default server)
$cfg['Server']        = '';
unset(
$cfg['Servers'][0]);


/**
 * Other core phpMyAdmin settings
 */
$cfg['OBGzip']                  = 'auto'// use GZIP output buffering if possible (TRUE|FALSE|'auto')
$cfg['PersistentConnections']   = FALSE;  // use persistent connections to MySQL database
$cfg['ExecTimeLimit']           = 300;    // maximum execution time in seconds (0 for no limit)
$cfg['SkipLockedTables']        = FALSE;  // mark used tables, make possible to show
                                          // locked tables (since MySQL 3.23.30)
$cfg['ShowSQL']                 = TRUE;   // show SQL queries as run
$cfg['AllowUserDropDatabase']   = FALSE;  // show a 'Drop database' link to normal users
$cfg['Confirm']                 = TRUE;   // confirm 'DROP TABLE' & 'DROP DATABASE'
$cfg['LoginCookieRecall']       = TRUE;   // recall previous login in cookie auth. mode or not
$cfg['LoginCookieValidity']     = 1800;   // validity of cookie login (in seconds)
$cfg['UseDbSearch']             = TRUE;   // whether to enable the "database search" feature
                                          // or not
$cfg['IgnoreMultiSubmitErrors'] = FALSE;  // if set to true, PMA continues computing multiple-statement queries
                                          // even if one of the queries failed
$cfg['VerboseMultiSubmit']      = TRUE;   // if set to true, PMA will show the affected rows of EACH statement on
                                          // multiple-statement queries. See the read_dump.php file for hardcoded
                                          // defaults on how many queries a statement may contain!
$cfg['AllowArbitraryServer']    = FALSE;  // allow login to any user entered server in cookie based auth

// Left frame setup
$cfg['LeftFrameLight']        = TRUE;    // use a select-based menu and display only the
                                         // current tables in the left frame.
$cfg['LeftFrameTableSeparator']= '__';   // Which string will be used to generate table prefixes
                                         // to split/nest tables into multiple categories
$cfg['LeftFrameTableLevel']   = '1';     // How many sublevels should be displayed when splitting
                                         // up tables by the above Separator
$cfg['ShowTooltip']           = TRUE;    // display table comment as tooltip in left frame
$cfg['ShowTooltipAliasDB']    = FALSE;   // if ShowToolTip is enabled, this defines that table/db comments
$cfg['ShowTooltipAliasTB']    = FALSE;   // are shown (in the left menu and db_details_structure) instead of
                                         // table/db names. Setting ShowTooltipAliasTB to 'nested' will only
                                         // use the Aliases for nested descriptors, not the table itself.

$cfg['LeftDisplayLogo']       = TRUE;   // display logo at top of left frame
$cfg['LeftDisplayServers']    = FALSE;  // display server choice at top of left frame
$cfg['DisplayServersList']    = FALSE;  // server choice as links

// In the main frame, at startup...
$cfg['ShowStats']             = TRUE;   // allow to display statistics and space usage in
                                        // the pages about database details and table
                                        // properties
$cfg['ShowMysqlInfo']         = FALSE;  // whether to display the "MySQL runtime
$cfg['ShowMysqlVars']         = FALSE;  // information", "MySQL system variables", "PHP
$cfg['ShowPhpInfo']           = FALSE;  // information" and "change password" links for
$cfg['ShowChgPassword']       = FALSE;  // simple users or not
$cfg['SuggestDBName']         = TRUE;   // suggest a new DB name if possible (false = keep empty)

// In browse mode...
$cfg['ShowBlob']              = FALSE;  // display blob field contents
$cfg['NavigationBarIconic']   = TRUE;   // do not display text inside navigation bar buttons
$cfg['ShowAll']               = FALSE;  // allows to display all the rows
$cfg['MaxRows']               = 30;     // maximum number of rows to display
$cfg['Order']                 = 'ASC';  // default for 'ORDER BY' clause (valid
                                        // values are 'ASC', 'DESC' or 'SMART' -ie
                                        // descending order for fields of type
                                        // TIME, DATE, DATETIME & TIMESTAMP,
                                        // ascending order else-)

// In edit mode...
$cfg['ProtectBinary']         = 'blob'// disallow editing of binary fields
                                        // valid values are:
                                        //   FALSE  allow editing
                                        //   'blob' allow editing except for BLOB fields
                                        //   'all'  disallow editing
$cfg['ShowFunctionFields']    = TRUE;   // Display the function fields in edit/insert mode
$cfg['CharEditing']           = 'input';
                                        
// Which editor should be used for CHAR/VARCHAR fields:
                                        //  input - allows limiting of input length
                                        //  textarea - allows newlines in fields
$cfg['InsertRows']            = 2;      // How many rows can be inserted at one time

// For the export features...
$cfg['ZipDump']               = TRUE;   // Allow the use of zip/gzip/bzip
$cfg['GZipDump']              = TRUE;   // compression for
$cfg['BZipDump']              = TRUE;   // dump files
$cfg['CompressOnFly']         = TRUE;   // Will compress gzip/bzip2 exports on
                                        // fly without need for much memory.
                                        // If you encounter problems with
                                        // created gzip/bzip2 files disable
                                        // this feature.

// Tabs display settings
$cfg['LightTabs']             = FALSE;  // use graphically less intense menu tabs
$cfg['PropertiesIconic']      = TRUE;   // Use icons instead of text for the table display of a database (TRUE|FALSE|'both')
$cfg['PropertiesNumColumns']  = 1;      // How many columns should be used for table display of a database?
                                        // (a value larger than 1 results in some information being hidden)

$cfg['DefaultTabServer']      = 'main.php';
                                   
// Possible values:
                                   // 'main.php' = the welcome page
                                   // (recommended for multiuser setups)
                                   // 'server_databases.php' = list of databases
                                   // 'server_status.php' = runtime information
                                   // 'server_variables.php' = MySQL server variables
                                   // 'server_privileges.php' = user management
                                   // 'server_processlist.php' = process list
$cfg['DefaultTabDatabase']    = 'db_details_structure.php';
                                   
// Possible values:
                                   // 'db_details_structure.php' = tables list
                                   // 'db_details.php' = sql form
                                   // 'db_search.php' = search query
                                   // 'db_operations.php' = operations on database
$cfg['DefaultTabTable']       = 'tbl_properties_structure.php';
                                   
// Possible values:
                                   // 'tbl_properties_structure.php' = fields list
                                   // 'tbl_properties.php' = sql form
                                   // 'tbl_select.php = select page
                                   // 'tbl_change.php = insert row page

/**
 * Export defaults
 */

$cfg['Export']['format']                    = 'sql';  // sql/latex/excel/csv/xml/xls
$cfg['Export']['compression']               = 'none'// none/zip/gzip/bzip2

$cfg['Export']['asfile']                    = FALSE;
$cfg['Export']['onserver']                  = FALSE;
$cfg['Export']['onserver_overwrite']        = FALSE;
$cfg['Export']['remember_file_template']    = TRUE;

$cfg['Export']['xls_columns']               = FALSE;
$cfg['Export']['xls_null']                  = 'NULL';

$cfg['Export']['csv_columns']               = FALSE;
$cfg['Export']['csv_null']                  = 'NULL';
$cfg['Export']['csv_separator']             = ';';
$cfg['Export']['csv_enclosed']              = '&quot;';
$cfg['Export']['csv_escaped']               = '\\';
$cfg['Export']['csv_terminated']            = 'AUTO';
$cfg['Export']['excel_columns']             = FALSE;
$cfg['Export']['excel_null']                = 'NULL';
$cfg['Export']['excel_edition']             = 'win'// win/mac

$cfg['Export']['latex_structure']           = TRUE;
$cfg['Export']['latex_data']                = TRUE;
$cfg['Export']['latex_columns']             = TRUE;
$cfg['Export']['latex_relation']            = TRUE;
$cfg['Export']['latex_comments']            = TRUE;
$cfg['Export']['latex_mime']                = TRUE;
$cfg['Export']['latex_null']                = '\textit{NULL}';
$cfg['Export']['latex_caption']             = TRUE;
$cfg['Export']['latex_data_label']          = 'tab:__TABLE__-data';
$cfg['Export']['latex_structure_label']     = 'tab:__TABLE__-structure';

$cfg['Export']['sql_structure']             = TRUE;
$cfg['Export']['sql_data']                  = TRUE;
$cfg['Export']['sql_compat']                = 'NONE';
$cfg['Export']['sql_disable_fk']            = FALSE;
$cfg['Export']['sql_use_transaction']       = FALSE;
$cfg['Export']['sql_drop_database']         = FALSE;
$cfg['Export']['sql_drop_table']            = FALSE;
$cfg['Export']['sql_if_not_exists']         = FALSE;
$cfg['Export']['sql_auto_increment']        = TRUE;
$cfg['Export']['sql_backquotes']            = TRUE;
$cfg['Export']['sql_dates']                 = FALSE;
$cfg['Export']['sql_relation']              = FALSE;
$cfg['Export']['sql_columns']               = FALSE;
$cfg['Export']['sql_delayed']               = FALSE;
$cfg['Export']['sql_ignore']                = FALSE;
$cfg['Export']['sql_hex_for_binary']        = TRUE;
$cfg['Export']['sql_type']                  = 'insert'// insert/update/replace
$cfg['Export']['sql_extended']              = FALSE;
$cfg['Export']['sql_comments']              = FALSE;
$cfg['Export']['sql_mime']                  = FALSE;
$cfg['Export']['sql_header_comment']        = ''// \n is replaced by new line

/**
 * Link to the official MySQL documentation.
 * Be sure to include no trailing slash on the path.
 * See http://dev.mysql.com/doc/ for more information
 * about MySQL manuals and their types.
 */
$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/mysql/en';

/**
 * Type of MySQL documentation:
 *   old        - old style used in phpMyAdmin 2.3.0 and sooner
 *   searchable - "Searchable, with user comments"
 *   chapters   - "HTML, one page per chapter"
 *   big        - "HTML, all on one page"
 *   none       - do not show documentation links
 */
$cfg['MySQLManualType'] = 'searchable';


/**
 * PDF options
 */
$cfg['PDFPageSizes']        = array('A3''A4''A5''letter''legal');
$cfg['PDFDefaultPageSize']  = 'A4';


/**
 * Language and charset conversion settings
 */
// Default language to use, if not browser-defined or user-defined
$cfg['DefaultLang'] = 'en-iso-8859-1';

// Force: always use this language - must be defined in
//        libraries/select_lang.lib.php
// $cfg['Lang']     = 'en-iso-8859-1';

// Default charset to use for recoding of MySQL queries, does not take
// any effect when charsets recoding is switched off by
// $cfg['AllowAnywhereRecoding'] or in language file
// (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
$cfg['DefaultCharset'] = 'iso-8859-1';

// Allow charset recoding of MySQL queries, must be also enabled in language
// file to make harder using other language files than unicode.
// Default value is FALSE to avoid problems on servers without the iconv
// extension and where dl() is not supported
$cfg['AllowAnywhereRecoding'] = function_exists("iconv");

// You can select here which functions will be used for charset conversion.
// Possible values are:
//      auto   - automatically use available one (first is tested iconv, then
//               recode)
//      iconv  - use iconv or libiconv functions
//      recode - use recode_string function
$cfg['RecodingEngine'] = 'auto';

// Specify some parameters for iconv used in charset conversion. See iconv
// documentation for details:
// http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html
$cfg['IconvExtraParams'] = '';

// Available charsets for MySQL conversion. currently contains all which could
// be found in lang/* files and few more.
// Charsets will be shown in same order as here listed, so if you frequently
// use some of these move them to the top.
$cfg['AvailableCharsets'] = array(
    
'iso-8859-1',
    
'iso-8859-2',
    
'iso-8859-3',
    
'iso-8859-4',
    
'iso-8859-5',
    
'iso-8859-6',
    
'iso-8859-7',
    
'iso-8859-8',
    
'iso-8859-9',
    
'iso-8859-10',
    
'iso-8859-11',
    
'iso-8859-12',
    
'iso-8859-13',
    
'iso-8859-14',
    
'iso-8859-15',
    
'windows-1250',
    
'windows-1251',
    
'windows-1252',
    
'windows-1256',
    
'windows-1257',
    
'koi8-r',
    
'big5',
    
'gb2312',
    
'utf-8',
    
'utf-7',
    
'x-user-defined',
    
'euc-jp',
    
'ks_c_5601-1987',
    
'tis-620',
    
'SHIFT_JIS'
);

/**
 * Customization & design
 *
 * The graphical settings are now located in themes/themename/layout.inc.php
 */

$cfg['LeftPointerEnable']   = TRUE;         // enable the left panel pointer
                                            // (used when LeftFrameLight is FALSE)
                                            // see also LeftPointerColor
                                            // in layout.inc.php

$cfg['BrowsePointerEnable'] = TRUE;        // enable the browse pointer
                                            // see also BrowsePointerColor
                                            // in layout.inc.php

$cfg['BrowseMarkerEnable'] = TRUE;         // enable the browse marker
                                            // see also BrowseMarkerColor
                                            // in layout.inc.php

$cfg['TextareaCols']        = 40;           // textarea size (columns) in edit mode
                                            // (this value will be emphasized (*2) for sql
                                            // query textareas and (*1.25) for query window)
$cfg['TextareaRows']        = 7;            // textarea size (rows) in edit mode
$cfg['LongtextDoubleTextarea'] = TRUE;      // double size of textarea size for longtext fields
$cfg['TextareaAutoSelect']  = TRUE;         // autoselect when clicking in the textarea of the querybox
$cfg['CharTextareaCols']    = 40;           // textarea size (columns) for CHAR/VARCHAR
$cfg['CharTextareaRows']    = 2;            // textarea size (rows) for CHAR/VARCHAR
$cfg['CtrlArrowsMoving']    = TRUE;         // Enable Ctrl+Arrows moving between fields when editing?
$cfg['LimitChars']          = 50;           // Max field data length in browse mode for all non-numeric fields
$cfg['ModifyDeleteAtLeft']  = TRUE;         // show edit/delete links on left side of browse
                                            // (or at the top with vertical browse)
$cfg['ModifyDeleteAtRight'] = FALSE;        // show edit/delete links on right side of browse
                                            // (or at the bottom with vertical browse)
$cfg['DefaultDisplay']      = 'horizontal'// default display direction
                                            // (horizontal|vertical|horizontalflipped)
$cfg['DefaultPropDisplay']  = 'horizontal'// default display direction for altering/
                                            // creating columns (tbl_properties)
                                            // (horizontal|vertical)

$cfg['HeaderFlipType']      = 'css';        // table-header rotation via faking or css? (css|fake)
                                            // NOTE: CSS only works in IE browsers!
$cfg['ShowBrowseComments']  = TRUE;         // shows stored relation-comments in 'browse' mode.
$cfg['ShowPropertyComments']= TRUE;         // shows stored relation-comments in 'table property' mode.
$cfg['RepeatCells']         = 100;          // repeat header names every X cells? (0 = deactivate)

$cfg['QueryFrame']          = TRUE;         // displays a link or icon in the left frame to open the querybox, and activates the querybox when clicking on [Edit] on the results page.
$cfg['QueryFrameJS']        = TRUE;         // whether to use JavaScript functions for opening a new window for SQL commands.
                                            // if set to 'false', the target of the querybox is always the right frame.
$cfg['QueryWindowWidth']    = 550;          // Width of Query window
$cfg['QueryWindowHeight']   = 310;          // Height of Query window
$cfg['QueryHistoryDB']      = FALSE;         // Set to TRUE if you want DB-based query history.
                                            // If FALSE, this utilizes JS-routines to display
                                            // query history (lost by window close)
$cfg['QueryWindowDefTab']   = 'sql';        // which tab to display in the querywindow on startup
                                            // (sql|files|history|full)
$cfg['QueryHistoryMax']     = 25;           // When using DB-based query history, how many entries
                                            // should be kept?
$cfg['BrowseMIME']          = TRUE;         // Use MIME-Types (stored in column comments table) for
$cfg['MaxExactCount']       = 20000;        // When approximate count < this, PMA will get exact count for
                                            // table rows.
$cfg['WYSIWYG-PDF']         = TRUE;         // Utilize DHTML/JS capabilities to allow WYSIWYG editing of
                                            // the PDF page editor. Requires an IE6/Mozilla based browser.

$cfg['NaturalOrder']        = TRUE;         // Sort table and database in natural order


//-----------------------------------------------------------------------------
// custom-setup by mkkeck: 2004-05-04
//    some specials for new icons and scrollings
// FIXME:
// 2004-05-08 rabus: We need to rearrange these variables.

$cfg['ShowHttpHostTitle']   = TRUE;            // show HttpHost in browsers window title (true|false)?
$cfg['SetHttpHostTitle']    = '';              // if ShowHttpHostTitle=true, please set your host (server)
                                             // or an other string, wich should be shown in browsers window title.
                                             // If not set (or empty), the PMA will get your real Host-Adress.

$cfg['ErrorIconic']          = TRUE;    // show some icons for warning, error and information messages (true|false)?
$cfg['MainPageIconic']       = TRUE;    // show icons in list on main page, on right panel top menu (server db table)  and on menu tabs (true|false)?
$cfg['ReplaceHelpImg']       = TRUE;    // show help button instead of strDocumentation (true|false)?

// theme manager
$cfg['ThemePath']           = './themes';    // using themes manager please set up here the path to 'themes'
                                             // else leave empty
$cfg['ThemeManager']        = TRUE;          // if you want to use selectable themes and if ThemesPath not empty
                                             // set it to true, else set it to false (default is false);
$cfg['ThemeDefault']        = 'original';         // set up default theme, if ThemePath not empty
                                             // you can set up here an valid path to themes or 'original' for
                                             // the original pma-theme

//-----------------------------------------------------------------------------


/**
 * Default queries
 * %d will be replaced by the database name.
 * %t will be replaced by the table name.
 * %f will be replaced by a list of field names.
 * (%t and %f only applies to DefaultQueryTable)
 */
$cfg['DefaultQueryTable']    = 'SELECT * FROM %t WHERE 1';
$cfg['DefaultQueryDatabase'] = '';

/**
 * SQL Query box settings
 * These are the links display in all of the SQL Query boxes
 */
$cfg['SQLQuery']['Edit']      = TRUE;       // Edit link to change a query
$cfg['SQLQuery']['Explain']   = TRUE;       // EXPLAIN on SELECT queries
$cfg['SQLQuery']['ShowAsPHP'] = TRUE;       // Wrap a query in PHP
$cfg['SQLQuery']['Validate']  = FALSE;      // Validate a query (see $cfg['SQLValidator'] as well)
$cfg['SQLQuery']['Refresh']   = TRUE;       // Refresh the results page


/**
 * Webserver upload/save/import directories
 */
$cfg['UploadDir']             = '';         // Directory for uploaded files that can be executed by
                                            // phpMyAdmin. For example './upload'. Leave empty for
                                            // no upload directory support
$cfg['SaveDir']               = '';         // Directory where phpMyAdmin can save exported data on
                                            // server. For example './save'. Leave empty for no save
                                            // directory support.
$cfg['docSQLDir']             = '';         // Directory for docSQL imports, phpMyAdmin can import
                                            // docSQL files from that directory. For example
                                            // './docSQL'. Leave empty for no docSQL import support.
$cfg['TempDir']               = '';         // Directory where phpMyAdmin can save temporary files.
                                            // This is needed for MS Excel export, see documentation
                                            // how to enable that.


/**
 * Misc. settings
 */
$cfg['GD2Available']          = 'auto';     // Is GD >= 2 available? Set to yes/no/auto. 'auto'
                                            // does autodetection, which is a bit expensive for
                                            // php < 4.3.0, but it is the only safe vay how to
                                            // determine GD version.
/**
 * SQL Parser Settings
 */
$cfg['SQP']['fmtType']      = 'html';       // Pretty-printing style to use on queries (html, text, none)
$cfg['SQP']['fmtInd']       = '1';          // Amount to indent each level (floats ok)
$cfg['SQP']['fmtIndUnit']   = 'em';         // Units for indenting each level (CSS Types - {em,px,pt})
// The graphical settings are now located in themes/themename/layout.inc.php

/**
 * If you wish to use the SQL Validator service, you should be
 * aware of the following:
 * All SQL statements are stored anonymously for statistical purposes.
 * Mimer SQL Validator, Copyright 2002 Upright Database Technology.
 * All rights reserved.
 */
$cfg['SQLValidator']['use']      = FALSE;   // Make the SQL Validator available
$cfg['SQLValidator']['username'] = '';      // If you have a custom username, specify it here (defaults to anonymous)
$cfg['SQLValidator']['password'] = '';      // Password for username

/**
 * Developers ONLY!
 * To use the following, please install the DBG extension from http://dd.cron.ru/dbg/
 */
$cfg['DBG']['enable'] = FALSE;              // Make the DBG stuff available
$cfg['DBG']['profile']['enable'] = FALSE;   // Produce profiling results of PHP
$cfg['DBG']['profile']['threshold'] = 0.5;  // Threshold of long running code to display
                                            // Anything below the threshold is not displayed


/**
 * MySQL settings
 */
// Column types;
// varchar, tinyint, text and date are listed first, based on estimated popularity
$cfg['ColumnTypes'] = array(
   
'VARCHAR',
   
'TINYINT',
   
'TEXT',
   
'DATE',
   
'SMALLINT',
   
'MEDIUMINT',
   
'INT',
   
'BIGINT',
   
'FLOAT',
   
'DOUBLE',
   
'DECIMAL',
   
'DATETIME',
   
'TIMESTAMP',
   
'TIME',
   
'YEAR',
   
'CHAR',
   
'TINYBLOB',
   
'TINYTEXT',
   
'BLOB',
   
'MEDIUMBLOB',
   
'MEDIUMTEXT',
   
'LONGBLOB',
   
'LONGTEXT',
   
'ENUM',
   
'SET'
);

// Attributes
$cfg['AttributeTypes'] = array(
   
'',
   
'BINARY',
   
'UNSIGNED',
   
'UNSIGNED ZEROFILL'
);

// Available functions
if ($cfg['ShowFunctionFields']) {
    
$cfg['Functions'] = array(
       
'ASCII',
       
'CHAR',
       
'SOUNDEX',
       
'LCASE',
       
'UCASE',
       
'NOW',
       
'PASSWORD',
       
'MD5',
       
'SHA1',
       
'ENCRYPT',
       
'RAND',
       
'LAST_INSERT_ID',
       
'COUNT',
       
'AVG',
       
'SUM',
       
'CURDATE',
       
'CURTIME',
       
'FROM_DAYS',
       
'FROM_UNIXTIME',
       
'PERIOD_ADD',
       
'PERIOD_DIFF',
       
'TO_DAYS',
       
'UNIX_TIMESTAMP',
       
'USER',
       
'WEEKDAY',
       
'CONCAT'
    
);

    
// Which column types will be mapped to which Group?
    
$cfg['RestrictColumnTypes'] = array(
       
'VARCHAR'      => 'FUNC_CHAR',
       
'TINYINT'      => 'FUNC_NUMBER',
       
'TEXT'         => 'FUNC_CHAR',
       
'DATE'         => 'FUNC_DATE',
       
'SMALLINT'     => 'FUNC_NUMBER',
       
'MEDIUMINT'    => 'FUNC_NUMBER',
       
'INT'          => 'FUNC_NUMBER',
       
'BIGINT'       => 'FUNC_NUMBER',
       
'FLOAT'        => 'FUNC_NUMBER',
       
'DOUBLE'       => 'FUNC_NUMBER',
       
'DECIMAL'      => 'FUNC_NUMBER',
       
'DATETIME'     => 'FUNC_DATE',
       
'TIMESTAMP'    => 'FUNC_DATE',
       
'TIME'         => 'FUNC_DATE',
       
'YEAR'         => 'FUNC_DATE',
       
'CHAR'         => 'FUNC_CHAR',
       
'TINYBLOB'     => 'FUNC_CHAR',
       
'TINYTEXT'     => 'FUNC_CHAR',
       
'BLOB'         => 'FUNC_CHAR',
       
'MEDIUMBLOB'   => 'FUNC_CHAR',
       
'MEDIUMTEXT'   => 'FUNC_CHAR',
       
'LONGBLOB'     => 'FUNC_CHAR',
       
'LONGTEXT'     => 'FUNC_CHAR',
       
'ENUM'         => '',
       
'SET'          => ''
    
);

    
// Map above defined groups to any function
    
$cfg['RestrictFunctions'] = array(
        
'FUNC_CHAR'   => array(
            
'ASCII',
            
'CHAR',
            
'SOUNDEX',
            
'LCASE',
            
'UCASE',
            
'PASSWORD',
            
'MD5',
            
'SHA1',
            
'ENCRYPT',
            
'LAST_INSERT_ID',
            
'USER',
            
'CONCAT'
        
),

        
'FUNC_DATE'   => array(
            
'NOW',
            
'CURDATE',
            
'CURTIME',
            
'FROM_DAYS',
            
'FROM_UNIXTIME',
            
'PERIOD_ADD',
            
'PERIOD_DIFF',
            
'TO_DAYS',
            
'UNIX_TIMESTAMP',
            
'WEEKDAY'
        
),

        
'FUNC_NUMBER' => array(
            
'ASCII',
            
'CHAR',
            
'MD5',
            
'SHA1',
            
'ENCRYPT',
            
'RAND',
            
'LAST_INSERT_ID',
            
'UNIX_TIMESTAMP',
            
'COUNT',
            
'AVG',
            
'SUM'
        
)
    );

    
// Default functions for above defined groups
    
$cfg['DefaultFunctions'] = array(
        
'FUNC_CHAR'         => '',
        
'FUNC_DATE'         => '',
        
'FUNC_NUMBER'       => '',
        
'first_timestamp'   => 'NOW'
    
);


// end if

// Search operators
$cfg['NumOperators'] = array(
   
'=',
   
'>',
   
'>=',
   
'<',
   
'<=',
   
'!=',
   
'LIKE',
   
'NOT LIKE'
);

$cfg['TextOperators'] = array(
   
'LIKE',
   
'LIKE %...%',
   
'NOT LIKE',
   
'=',
   
'!=',
   
'REGEXP',
   
'NOT REGEXP'
);

$cfg['EnumOperators'] = array(
   
'=',
   
'!='
);

$cfg['NullOperators'] = array(
   
'IS NULL',
   
'IS NOT NULL'
);

$cfg['UnaryOperators'] = array(
   
'IS NULL'     => 1,
   
'IS NOT NULL' => 1
);

/**
 * Unset magic_quotes_runtime - do not change!
 */
set_magic_quotes_runtime(0);

/**
 * File Revision - do not change either!
 */
$cfg['FileRevision'] = '$Revision$';
?>



И ещё,у меня пма стоит в локалхост/ввв/туллс/пма
а сам форум в тест1/ввв/

Bugo

Попробуйте в этой строчке убрать номер порта $cfg['Servers'][$i]['port']          = '3306';

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:04:59
Попробуйте в этой строчке убрать номер порта $cfg['Servers'][$i]['port']          = '3306';
Тоже не помогло :(

Может надо мне установить форум в локалхост,а не в тест1 ?

Bugo

В папке, куда Вы установили денвер, должна быть папка home. В этой папке надо создать любую другую, например primer. В ней создать подпапку www. И уже в эту подпапку распаковать файлы из архива с SMF.

А база данных-то создаётся?

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:18:09
В папке, куда Вы установили денвер, должна быть папка home. В этой папке надо создать любую другую, например primer. В ней создать подпапку www. И уже в эту подпапку распаковать файлы из архива с SMF.

А база данных-то создаётся?
Ну значит файлы форума правильно запихал.


Как проверить создается база или нет?ну по всей видимости нет,так как я в пма зайти не могу и создать её.

Bugo

По адресу http://localhost/Tools/phpMyAdmin/ по прежнему та же ошибка?

И укажите версию пакета денвера, который установлен.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:24:20
По адресу http://localhost/Tools/phpMyAdmin/ по прежнему та же ошибка?
Да,может быть попробовать переставить денвер?

Денвер 3

Bugo

Укажите содержимое каталога home\localhost\www\Tools

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:29:46
Укажите содержимое каталога home\localhost\www\Tools
Только phpmyadmin и readme.txt в котором написано.что в данном каталоге храняться сторонние утилиты

Bugo

А что указано в строчке session.save_path
в файле usr\local\php5\php.ini ?

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:35:52
А что указано в строчке session.save_path
в файле usr\local\php5\php.ini ?
session.save_path = "Z:\tmp"

Z- виртуальный диск,который денвер создает

Bugo

Попробуйте в браузере набрать http://путь к форуму/install.php

и воспроизвести то же, что на картинке во вложении

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:51:41
Попробуйте в браузере набрать http://путь к форуму/install.php

и воспроизвести то же, что на картинке во вложении
опять этаже ошибка. :(

А не могли бы вы мне создать у себя форум(настроть имеется ввиду)и чтобы я потом заменил свой вашим-и все работало? так нельзя?

Bugo

Боюсь, не получится. У меня настройки специфические.

Попробуйте переустановить денвер.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 15:55:42
Боюсь, не получится. У меня настройки специфические.

Попробуйте переустановить денвер.
пробовал,непомогло :(

Bugo

Может, выложите скриншоты каждого шага, который делаете? Хочется разобраться уже :)

Например, какой пакет с SMF Вы скачали (точное название файла) и куда именно его распаковали?

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:02:42
Может, выложите скриншоты каждого шага, который делаете? Хочется разобраться уже :)

Например, какой пакет с SMF Вы скачали (точное название файла) и куда именно его распаковали?
1. Скачал с офф сайта  SMF 2.0 RC2 Full install
2. Скачал с офф сайта Денвер 3 , установил в папку с:\WebServer  + создаля виртуальный диск Z ,на котором таже самая информация , что и на с\вебсервер
3. Разорхивировал СМФ в папку Z:\home\test1.ru\www\
4. прописал в php.ini session.save_path на "z:\tmp"
5. Захожу в браузере на test1.ru ,выхожит установка форума,жму континиун и сразу перескакивает на step3 , без step2 .
6. и дальше в степ3 проблема.

А как полностью удалить денвер? ccleaner его не видит :|

И ещё,думаю ,что это не критично,но у меня все это настраивается на виртуалке хп х32.

Bugo

Удаляется просто вся папка WebServer и всё. А файлы обычно распаковывают не в Z:\home... а прямо в C:\WebServer\home... На виртуальном диске они сами появятся, после рестарта денвера.
Вы случаем не задавали пароля в MySQL?

И попробуйте опять сделать предлагаемые изменения в файле config.inс.php, но не на виртуальном диске, а на локальном.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:10:43
Удаляется просто вся папка WebServer и всё. А файлы обычно распаковывают не в Z:\home... а прямо в C:\WebServer\home... На виртуальном диске они сами появятся, после рестарта денвера.
Вы случаем не задавали пароля в MySQL?

И попробуйте опять сделать предлагаемые изменения в файле config.inс.php, но не на виртуальном диске, а на локальном.
в php.ini вводить с:\WebServer\tmp   ? или на виртульник?
в конфиг.инк.пхп   какие именно изменения ставить?

Bugo

На виртуальнике всё само обновится. Меняйте всё на локальном диске.

$cfg['Servers'][$i]['port']          = '';  // Порт по умолчанию
$cfg['Servers'][$i]['password']      = ''; // Пароль пустой

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:22:24
На виртуальнике всё само обновится. Меняйте всё на локальном диске.

$cfg['Servers'][$i]['port']          = '';  // Порт по умолчанию
$cfg['Servers'][$i]['password']      = ''; // Пароль пустой
Извините пожалуйсто за мою тупость. я забыл , что я давным давно mysql ставил и пас там поставил,я думал денвер переустановил мускул...

Занял только ваше время,простите :(


теперь на 5 шаге ошибка

Notice: Undefined index: is_admin in L:\home\test1.ru\www\Sources\Security.php on line 825

[Денвер: показать возможную причину ошибки]

Notice: Undefined index: permissions in L:\home\test1.ru\www\Sources\Security.php on line 832

Warning: in_array() [function.in-array]: Wrong datatype for second argument in L:\home\test1.ru\www\Sources\Security.php on line 832

Notice: Undefined index: is_admin in L:\home\test1.ru\www\Sources\Security.php on line 825

Notice: Undefined index: permissions in L:\home\test1.ru\www\Sources\Security.php on line 832

Warning: in_array() [function.in-array]: Wrong datatype for second argument in L:\home\test1.ru\www\Sources\Security.php on line 832

Notice: Undefined index: is_admin in L:\home\test1.ru\www\Sources\Security.php on line 825

Notice: Undefined index: permissions in L:\home\test1.ru\www\Sources\Security.php on line 832

Warning: in_array() [function.in-array]: Wrong datatype for second argument in L:\home\test1.ru\www\Sources\Security.php on line 832

Notice: Undefined index: is_admin in L:\home\test1.ru\www\Sources\Security.php on line 825

Notice: Undefined index: permissions in L:\home\test1.ru\www\Sources\Security.php on line 832

Warning: in_array() [function.in-array]: Wrong datatype for second argument in L:\home\test1.ru\www\Sources\Security.php on line 832

Notice: Undefined index: is_guest in L:\home\test1.ru\www\Sources\Load.php on line 1522

Notice: Undefined index: permissions in L:\home\test1.ru\www\Sources\Security.php on line 832

Warning: in_array() [function.in-array]: Wrong datatype for second argument in L:\home\test1.ru\www\Sources\Security.php on line 832

Notice: Undefined index: mod_cache in L:\home\test1.ru\www\Sources\Load.php on line 1527

Notice: Undefined index: username in L:\home\test1.ru\www\Sources\Load.php on line 1528

Notice: Undefined index: language in L:\home\test1.ru\www\Sources\Load.php on line 1529

Notice: Undefined index: email in L:\home\test1.ru\www\Sources\Load.php on line 1530

Notice: Undefined index: ignoreusers in L:\home\test1.ru\www\Sources\Load.php on line 1531

Notice: Undefined index: name in L:\home\test1.ru\www\Sources\Load.php on line 1534

Notice: Undefined index: smiley_set in L:\home\test1.ru\www\Sources\Load.php on line 1539

Notice: Undefined index: smiley_set in L:\home\test1.ru\www\Sources\Load.php on line 1539

Notice: Undefined index: session_var in L:\home\test1.ru\www\Sources\Load.php on line 1547

Notice: Undefined index: session_value in L:\home\test1.ru\www\Sources\Load.php on line 1548

Notice: Undefined index: htmlspecialchars in L:\home\test1.ru\www\Sources\Load.php on line 1550

Fatal error: Function name must be a string in L:\home\test1.ru\www\Sources\Load.php on line 1550

Bugo

На 4-ом шаге Forum URL не меняли?
Галочки какие-нибудь меняли?

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:32:30
Так после указания правильного пароля установка работает?
Да,но на 5 шаге вот та ошибка выходит.которую я с верху написал.

DarkIsador


Bugo

Попробуйте снести и денвер и MySQL (если ставили его отдельно) и опять всё переустановить.
http://www.simplemachines.ru/index.php?topic=6581.msg42591#msg42591

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:47:30
Попробуйте снести и денвер и MySQL (если ставили его отдельно) и опять всё переустановить.
http://www.simplemachines.ru/index.php?topic=6581.msg42591#msg42591
А мускул в денвере есть?или опять самому ставить надо будет?

Bugo

Есть.

Можете самый свежий пакет скачать => http://www.denwer.ru/dis/Base/latest?from=site

DarkIsador

Цитата: Bugo от 08 декабря 2009, 16:51:02
Есть.

Можете самый свежий пакет скачать => http://www.denwer.ru/dis/Base/latest?from=site
Всё,всё работает....

Теперь вопрос ещё про руссификацию,мне надо с поддержкой утф-8 брать или без?при установке форума,галку напротив утф8 не ставил

Bugo

Выбор используемой кодировки пусть остаётся за Вами :)

Хотя посоветовал бы всё-таки UTF8 (тогда придется опять всё сначала делать и ставить там галочку).

DarkIsador

Цитата: Bugo от 08 декабря 2009, 17:03:48
Выбор используемой кодировки пусть остаётся за Вами :)

Хотя посоветовал бы всё-таки UTF8 (тогда придется опять всё сначала делать и ставить там галочку).
А вы не подскажите,как сделать так . чтобы мой форум был виден в интернете??у меня постоянный ип адрес,и хотелось бы,пока домена нету,чтобы можно было через ип заходить...

Bugo

ЦитироватьНапомним еще раз, что Денвер — это не законченный и надежный Web-сервер, это — всего лишь инструмент, позволяющий отлаживать (тестировать) сайты, «не выходя из дома». Любая попытка использовать его в других целях может быть небезопасна.

http://www.denwer.ru/faq/shared.html

DarkIsador

Цитата: Bugo от 08 декабря 2009, 17:27:43
denwer.ru/faq/shared.html]Доступ к Денверу из локальной сети или Интернета[/url]
Но не советую. По соображениям безопасности.
А теоретически можно через него в интернете?? просто я сам 4 дня промучился со связко php 5 + apache 2 + mysql 5 + phpmyadmin , и ничего не вышло,вот и поставил денвер...

именно не смог phpmyadmin разобраться...

Bugo

Прочитайте статью. Там все подробности.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 17:30:56
Прочитайте статью. Там все подробности.
попробовал оба способа,ни один не работает...

1. Пробовал просто переименовать папку, место тест1 ввел ип , не работает
2. Создал файл и в него вписал ип - неработает.

Мб это изза того что у меня на виртуалке стоит сайт и денвер?

Badman

смотрите настройку виртуальных хостов, не имел дело с денвером но в двух словах в конфиге должно быть указано что
test1.ru имеет IP к примеру 10.10.01.01 и живет в /пусть/к файлам/на диске/

по сути т.к. домена у вас нет там просто должен быть ип и путь к файлам, ну и как вариант при установки денвера если там есть такое указывать не локалхост а ИП.

Badman

кстати в http://www.denwer.ru/faq/shared.html что дал Bugo расписаны варианты именно для денвера, поэтому мой предыдущий пост по сути пустая болтовня.

DarkIsador

Цитата: Badman от 08 декабря 2009, 18:12:55
кстати в denwer.ru/faq/shared.html]ссылке[/url] что дал Bugo расписаны варианты именно дл денвера, поэтому мой предыдущий пост по сути пустая болтовня.
То я все попробовал , не помогло...

vhost тоже не помогло :( они после рестарта денвера опять на локалхост сбрасываются...

# Host /home/test1.ru/www (11):
#Listen 127.0.0.1:80
#NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
  DocumentRoot "M:/home/test1.ru/www" 
  ServerName "test1.ru"
  ServerAlias "test1.ru" "www.test1.ru"
  ScriptAlias /cgi/ "/home/test1.ru/cgi/"
  ScriptAlias /cgi-bin/ "/home/test1.ru/cgi-bin/"
</VirtualHost>

# Host /home/test1.ru/www (12):
#Listen 127.0.0.1:443
#NameVirtualHost 127.0.0.1:443
<VirtualHost 127.0.0.1:443>
  SSLEngine on
  DocumentRoot "M:/home/test1.ru/www" 
  ServerName "test1.ru"
  ServerAlias "test1.ru" "www.test1.ru"
  ScriptAlias /cgi/ "/home/test1.ru/cgi/"
  ScriptAlias /cgi-bin/ "/home/test1.ru/cgi-bin/"
</VirtualHost>

Badman

а если дописать ниже (IP свой естественно):
# Host /home/inet/www (11):
#Listen 10.0.0.1:80
#NameVirtualHost 10.0.0.1:80
<VirtualHost 10.0.0.1:80>
  DocumentRoot "M:/home/inet/www"
  ServerName "inet.ru"
  ServerAlias "inet.ru" "www.inet.ru"
  ScriptAlias /cgi/ "/home/inet/cgi/"
  ScriptAlias /cgi-bin/ "/home/inet/cgi-bin/"
</VirtualHost>

Bugo

Проверил создание доступа по локалке — всё работает.
1) Запускаем командную строку, вводим ipconfig. Там выводится 2 столбца (друг под другом). В первом данные по текущему подключению к интернету, во втором — к локальной сети. Смотрим строчку IPv4-адрес во втором столбце. Там указан адрес что-то вроде 192.*.*.* Копируем его.
2) Заходим в папку с форумом, создаём там файл .htaccess (это имя, без расширения!) и вставляем в него строчку:
# dnwr_ip 192.*.*.*

Естественно, вместо звёздочек Ваши цифры, указанные в ipconfig.

3) Рестарт денвера и проверяем доступ, набрав в браузере http://192.*.*.*

XameleoH

Помогите,у меня вообще на третем шаге ошибка в самом коде
Notice: Undefined index: db_settings_database_info_note in /home/*****/public_html/install.php on line 2324

Bugo

Цитата: Хамелеон от 08 декабря 2009, 18:42:21
Помогите,у меня вообще на третем шаге ошибка в самом коде
Notice: Undefined index: db_settings_database_info_note in /home/*****/public_html/install.php on line 2324
Попробуйте создать базу данных заранее, вручную. А во время установки указать её название.

DarkIsador

Цитата: Bugo от 08 декабря 2009, 18:48:59
помощь
Спасибо большое за вашу помощь. Сейчас на 7рку поставил,сразу в инете расшарил по ип)))