Пишу: http://localhost/WebDex_.023/index.php
Получаю!
Warning: main(config.inc.php): failed to open stream: No such file or directory in q:homelocalhostwwwwebdex_.023index.php on line 7
Fatal error: main(): Failed opening required 'config.inc.php' (include_path='.;/usr/local/php/PEAR') in q:homelocalhostwwwwebdex_.023index.php on line 7
Моя ася:306923742
Спустя 2 минуты, 30 секунд (14.11.2006 - 20:41) vasa_c написал(а):
Что непонятно в сообщении об ошибке?
Спустя 3 минуты, 28 секунд (14.11.2006 - 20:45) serzh-php написал(а):
Неа!
Спустя 2 минуты, 2 секунды (14.11.2006 - 20:47) vasa_c написал(а):
Пардон?
Спустя 5 минут, 10 секунд (14.11.2006 - 20:52) serzh-php написал(а):
Блин! С файлом разобрался! Пишет теперь вот че:
Warning: main(PEAR.php): failed to open stream: No such file or directory in q:homelocalhostwwwwebdex_.023php_inclib.inc.php on line 5
А файл то там есть! Что делать?
Warning: main(PEAR.php): failed to open stream: No such file or directory in q:homelocalhostwwwwebdex_.023php_inclib.inc.php on line 5
А файл то там есть! Что делать?
Спустя 1 минута, 48 секунд (14.11.2006 - 20:54) vasa_c написал(а):
где там? в каталоге из которого запускается сценарий? Тогда проверь регистр символов в имени.
Спустя 5 минут, 1 секунда (14.11.2006 - 20:59) serzh-php написал(а):
Проверил! То же самое!
Спустя 14 минут, 44 секунды (14.11.2006 - 21:13) serzh-php написал(а):
регистр символов в имени проверил и то же самое! Файл в нужной директории!
Warning: main(PEAR.php): failed to open stream: No such file or directory in q:homelocalhostwwwwebdex_.023php_inclib.inc.php on line 5
Это мой index.php
/*
+--------------------------+
| include the needed files |
+--------------------------+
*/
require_once('config.inc.php');
require_once('php_inc/lib.inc.php');
require_once('PEAR.php');
require_once('classess/pageMaker_class.php');
/*
+------------------+
| Notes/Misc. info |
+------------------+
*/
/*
+-----------------------------------------------------------------------+
| A series of variables need to be defined to output a complete page. |
| $pageTitle = the string to use as the html |
| $pageHead = The page header |
| $pageSubMenu = a sub-menu/navigation system |
| $pageSubHead = The page subhead |
| $response_message = Text Error/Message or $PEAR::Error |
| $pageBodyContent = the html to use in the body portion of the page |
| |
| A Standard footer for putting together and displaying a page is |
| included at the bottom of this file. Just define the variables. |
| Any Response Messages or Errors that are to be displayed to the user |
| should be set in $response_message to maintain a standard flow. |
+-----------------------------------------------------------------------+
*/
/*
+------------------------+
| Set require user login |
+------------------------+
*/
// Start or Resume User Session, and switch the id
// to prevent session highjacking
session_start();
$sessionBackup = $_SESSION;
$_SESSION = array();
session_destroy();
session_start();
$_SESSION = $sessionBackup;
// make sure the user is logged in before getting anything in this script
$login = isLoggedin();
if (PEAR::isError($login)) {
header("Location: ".$GLOBALS[base_url]."login.php");
exit;
}
/*
+-------------------------------------------------+
| Define page content defaults. |
| These can be appended to or over written in the |
| data processing/preperation area below. |
+-------------------------------------------------+
*/
$pageTitle = 'WebDex - A Simple Contact Management System - Extended Search';
$pageHead = '';
$pageSubMenu = '';
$pageSubHead = '';
$pageBodyContent = '';
/*
+----------------------------------------+
| Start data processing/preperation area |
+----------------------------------------+
*/
// for extended searches
if ($_GET[action] == 'extendedSearch' || $_GET[action] == '') {
// save the search options if user wants to
if ($_GET[remember_query] == 1) {
saveExtSrchOpts($_GET[srch]);
}
$pageHead = 'Extended Search';
if ($_GET[Submit] == 'Search') {
// build the query withopu limits
$queryNoLimit = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow], 0);
// create the search summary statement
$summary = getSrchSummary($queryNoLimit, $_GET[srch][startingRow], $_GET[srch][results_per_page]);
// build the query with limits
$query = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow]);
// get the results of the query
$results = getSrchResultsTbl($query, $_GET[action], $_GET[srch], $summary);
if (PEAR::isError($results)) {
$response_message = $results;
$pageBodyContent = getExtSearchForm($_SERVER[PHP_SELF], 'GET');;
} else {
$pageBodyContent = $results;
}
} else {
$form = getExtSearchForm($_SERVER[PHP_SELF], 'GET');
if (PEAR::isError($form)) {
$response_message = $form;
} else {
$pageBodyContent = $form;
}
}
}
// for quick searches
if ($_GET[action] == 'quickSearch') {
$pageHead = 'Quick Search';
// save options for next time
saveQuickSrchOpts($_GET[query_string], $_GET[query_field]);
// build the query withopu limits
$queryNoLimit = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow], 0);
// create the search summary statement
$summary = getSrchSummary($queryNoLimit, $_GET[startingRow], $GLOBALS[qckSrchRowsPerPg]);
// build the query
$query = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow]);
// get the results of the query
$results = getSrchResultsTbl($query, $_GET[action], $_GET, $summary);
if (PEAR::isError($results)) {
$response_message = $results;
if ($results->getMessage() == 'No Rows Found.') {
$pageBodyContent = '<input name="Previous" type="submit" class="bodySubmitButtons" value="<< Previous '.$limit.' Rows" onClick="history.go(-1)" >';
}
} else {
$pageBodyContent = $results;
}
}
// for exports
if ($_GET[action] == 'exportResults') {
$pageHead = 'Export Result Set Options';
if ($_GET[Submit] == 'Export') {
// grab the full resultset with no limits
if ($_GET[exportFrom] == 'extendedSearch') {
$query = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow], 0);
} elseif ($_GET[exportFrom] == 'quickSearch') {
$query = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow], 0);
} elseif ($_GET[exportFrom] == 'editList') {
$query = getListQuery($_GET
}
}
} else {
// present the user with export options form
$pageBodyContent = getExportForm($_SERVER[PHP_SELF], 'GET', 'Export', $_GET);
}
}
// for view/editing a list
if ($_GET[action] == 'editList') {
$pageHead = 'List Management';
// get all contact records that belong to this list
$query = getListQuery($_GET
Warning: main(PEAR.php): failed to open stream: No such file or directory in q:homelocalhostwwwwebdex_.023php_inclib.inc.php on line 5
Это мой index.php
/*
+--------------------------+
| include the needed files |
+--------------------------+
*/
require_once('config.inc.php');
require_once('php_inc/lib.inc.php');
require_once('PEAR.php');
require_once('classess/pageMaker_class.php');
/*
+------------------+
| Notes/Misc. info |
+------------------+
*/
/*
+-----------------------------------------------------------------------+
| A series of variables need to be defined to output a complete page. |
| $pageTitle = the string to use as the html
| $pageHead = The page header |
| $pageSubMenu = a sub-menu/navigation system |
| $pageSubHead = The page subhead |
| $response_message = Text Error/Message or $PEAR::Error |
| $pageBodyContent = the html to use in the body portion of the page |
| |
| A Standard footer for putting together and displaying a page is |
| included at the bottom of this file. Just define the variables. |
| Any Response Messages or Errors that are to be displayed to the user |
| should be set in $response_message to maintain a standard flow. |
+-----------------------------------------------------------------------+
*/
/*
+------------------------+
| Set require user login |
+------------------------+
*/
// Start or Resume User Session, and switch the id
// to prevent session highjacking
session_start();
$sessionBackup = $_SESSION;
$_SESSION = array();
session_destroy();
session_start();
$_SESSION = $sessionBackup;
// make sure the user is logged in before getting anything in this script
$login = isLoggedin();
if (PEAR::isError($login)) {
header("Location: ".$GLOBALS[base_url]."login.php");
exit;
}
/*
+-------------------------------------------------+
| Define page content defaults. |
| These can be appended to or over written in the |
| data processing/preperation area below. |
+-------------------------------------------------+
*/
$pageTitle = 'WebDex - A Simple Contact Management System - Extended Search';
$pageHead = '';
$pageSubMenu = '';
$pageSubHead = '';
$pageBodyContent = '';
/*
+----------------------------------------+
| Start data processing/preperation area |
+----------------------------------------+
*/
// for extended searches
if ($_GET[action] == 'extendedSearch' || $_GET[action] == '') {
// save the search options if user wants to
if ($_GET[remember_query] == 1) {
saveExtSrchOpts($_GET[srch]);
}
$pageHead = 'Extended Search';
if ($_GET[Submit] == 'Search') {
// build the query withopu limits
$queryNoLimit = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow], 0);
// create the search summary statement
$summary = getSrchSummary($queryNoLimit, $_GET[srch][startingRow], $_GET[srch][results_per_page]);
// build the query with limits
$query = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow]);
// get the results of the query
$results = getSrchResultsTbl($query, $_GET[action], $_GET[srch], $summary);
if (PEAR::isError($results)) {
$response_message = $results;
$pageBodyContent = getExtSearchForm($_SERVER[PHP_SELF], 'GET');;
} else {
$pageBodyContent = $results;
}
} else {
$form = getExtSearchForm($_SERVER[PHP_SELF], 'GET');
if (PEAR::isError($form)) {
$response_message = $form;
} else {
$pageBodyContent = $form;
}
}
}
// for quick searches
if ($_GET[action] == 'quickSearch') {
$pageHead = 'Quick Search';
// save options for next time
saveQuickSrchOpts($_GET[query_string], $_GET[query_field]);
// build the query withopu limits
$queryNoLimit = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow], 0);
// create the search summary statement
$summary = getSrchSummary($queryNoLimit, $_GET[startingRow], $GLOBALS[qckSrchRowsPerPg]);
// build the query
$query = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow]);
// get the results of the query
$results = getSrchResultsTbl($query, $_GET[action], $_GET, $summary);
if (PEAR::isError($results)) {
$response_message = $results;
if ($results->getMessage() == 'No Rows Found.') {
$pageBodyContent = '<input name="Previous" type="submit" class="bodySubmitButtons" value="<< Previous '.$limit.' Rows" onClick="history.go(-1)" >';
}
} else {
$pageBodyContent = $results;
}
}
// for exports
if ($_GET[action] == 'exportResults') {
$pageHead = 'Export Result Set Options';
if ($_GET[Submit] == 'Export') {
// grab the full resultset with no limits
if ($_GET[exportFrom] == 'extendedSearch') {
$query = getExtQuery($_GET[srch], $_GET[srch][results_per_page], $_GET[srch][startingRow], 0);
} elseif ($_GET[exportFrom] == 'quickSearch') {
$query = getQuickQuery($_GET, $GLOBALS[qckSrchRowsPerPg], $_GET[startingRow], 0);
} elseif ($_GET[exportFrom] == 'editList') {
$query = getListQuery($_GET
- , 0, 0);
}
// generate and output data according to user settings
$dump = exportResults($query, $_GET);
if (PEAR::isError($dump)) {
$response_message = $dump;
} else {
if ($_GET[save_to_file] == 1) { // decide how to send output to user
if ($_GET['export_format'] == 'xls') {
header("Content-type: application/vnd.ms-excel");
} else {
header("Content-type: application/octet-stream");
}
header("Content-Disposition: attachment; filename=WebDex_export.".$_GET['export_format']."");
header("Pragma: no-cache");
header("Expires: 0");
echo $dump;
exit;
} else {
$pageBodyContent = '
'.$dump.'';
}
}
} else {
// present the user with export options form
$pageBodyContent = getExportForm($_SERVER[PHP_SELF], 'GET', 'Export', $_GET);
}
}
// for view/editing a list
if ($_GET[action] == 'editList') {
$pageHead = 'List Management';
// get all contact records that belong to this list
$query = getListQuery($_GET
- );
if (PEAR::isError($query)) {
$response_message = $query;
} else {
$form = getListMgmtForm($_SERVER[PHP_SELF], 'GET', $query, $_GET);
if (PEAR::isError($form)) {
$response_message = $form;
} else {
$pageBodyContent = $form;
}
}
}
/*
+--------------------------------------+
| End data processing/preperation area |
+--------------------------------------+
*/
/*
+--------------------------------------------+
| Start output/display the page |
| Should not be any need to edit below here. |
+--------------------------------------------+
*/
// build and output the page using pageMaker_class.php
$page = new pageMaker();
$page->setTemplateFile($GLOBALS[html_template]);
$page->getTemplate();
if (PEAR::isError($page)) {
echo $page->getMessage();
exit;
}
$page->setPgKey('{TITLE}', $pageTitle);
$page->setPgKey('{EXTRAHTML}', getExtraHTML());
$page->setPgKey('{LEFTNAV}', getLeftNav());
$page->setPgKey('{TOPMENU}', getTopMenu());
$page->setPgKey('{LOGINSTATUS}', getLoginStatus());
$page->setPgKey('{HEADER}', $pageHead);
$page->setPgKey('{SUBHEAD}', $pageSubHead);
$page->setPgKey('{SUBMENU}', $pageSubMenu);
$page->setPgKey('{RESPONSEMSG}', parseResponse($response_message));
$page->setPgKey('{BODYCONTENT}', $pageBodyContent);
if (PEAR::isError($page)) {
echo $page->getMessage();
exit;
}
$page->showPage();
?>
Что делать не знаю!
Спустя 2 минуты, 4 секунды (14.11.2006 - 21:15) serzh-php написал(а):
Кто может помочь стукните мне в асю! Я плохо знаю мускул и пхп! Моя ася:306923742
Спустя 11 минут, 23 секунды (14.11.2006 - 21:27) vasa_c написал(а):
Я могу помочь, если ты будешь слушать, а не кричать про свою асю.
В какой папке лежит PEAR.php?
В какой папке лежит PEAR.php?
Спустя 51 минута, 33 секунды (14.11.2006 - 22:18) serzh-php написал(а):
А по ходу дела его вообще нет! И где его взять?
Спустя 1 час, 41 минута, 14 секунд (14.11.2006 - 23:59) serzh-php написал(а):
Скачал еще одну доску по адресу http://www.flashscripts.org/src/flashadverts_1.0.rar
Запускаю в денвере и получаю!
Warning: mysql_connect(): Access denied for user 'db_user'@'localhost' (using password: YES) in q:homelocalhostwww1\_app.php on line 3
Не удалось установить соединение с MySQL!
Помогите разобраться!
Запускаю в денвере и получаю!
Warning: mysql_connect(): Access denied for user 'db_user'@'localhost' (using password: YES) in q:homelocalhostwww1\_app.php on line 3
Не удалось установить соединение с MySQL!
Помогите разобраться!
Спустя 33 минуты, 10 секунд (15.11.2006 - 00:33) serzh-php написал(а):
Все разобрался! Извините! Вот скрипт доски бы нормальной найти, было бы неплохо!
Спустя 2 дня, 16 часов, 57 минут (17.11.2006 - 17:30) max_ru написал(а):
serzh-php, и доску ты будешь наверное у себя дома использовать - сам с собой общаться? ;)
А если серьезно, то Denwer не предназначен для создания сервера в интернете, либо локальной сети.
А если серьезно, то Denwer не предназначен для создания сервера в интернете, либо локальной сети.
Спустя 17 часов, 53 минуты, 37 секунд (18.11.2006 - 11:23) serzh-php написал(а):
max_ru, ты прав! Но все компоненты по отдельности как ставить не знаю! Сейчас скрипт доски ищу! Здесь туму на форуме оставил!
_____________