URGENT PHP HELP !!!!!!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
newdesign
Forum Newbie
Posts: 1
Joined: Sat Jan 06, 2007 1:35 pm

URGENT PHP HELP !!!!!!!

Post by newdesign »

feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


Hello all,

I need help with these error messages below.

Code: Select all

Warning: require_once(adodb/adodb.inc.php) [function.require-once]: failed to open stream: No such file or directory in /home/microfix/conf/conf.main.php on line 12

Fatal error: require_once() [function.require]: Failed opening required 'adodb/adodb.inc.php' (include_path='.:/usr/lib/php') in /home/microfix/conf/conf.main.php on line 12
I have uploaded ADODB files onto the web server, but I still get the error. Should I put them into the public_html folder. Below is my index.php code and my conf.main.php code.

index.php

Code: Select all

<?php
/**
 * This file serves as the home page for the public website 
 * 
 * @package Web 
 * @subpackage Public
 */

ob_start();
session_start();

/* Include configuration file */
require_once('../conf/conf.main.php');

/* Force browser out of SSL for non-secure pages */
assertSSL(false); 

$page_tpl = new XiTemplate($CONFIG['paths']['templates'].'/index.tpl');
configureTemplate($page_tpl, $CONFIG);

require_once($CONFIG['paths']['classes'].'/class.WebPage.php');
$page = new WebPage($db, $page_tpl);
$page->setUrlText(getUrlText());
$page->load(WebPage::URL_TEXT);

if (!$page->isHome() && file_exists($CONFIG['paths']['templates'].'/inner.tpl'))
 $page_tpl->setTemplate($CONFIG['paths']['templates'].'/inner.tpl');

$content_tpl = new XiTemplate($CONFIG['paths']['templates'].'/content.tpl');
$content_tpl->multiAssign($page->getPropertiesAsArray());
$content_tpl->parse('main');
$page_tpl->assign('content', $content_tpl->text('main'));

$page_tpl->multiAssign($page->getPropertiesAsArray());

parseMenu($page_tpl, $db, 'Main Menu');
$page_tpl->assign('submenu', Html::stripAttribute($submenu, 'id'));

$page_tpl->parse('main.head');

//require_once($CONFIG['paths']['templates'].'/template_common.php');
//$page_tpl->assign('header_graphic', 'images/homepagegraphic.jpg');
//$page_tpl->parse('main.header_graphic');

$news = $db->execute('SELECT body_text FROM WebPages WHERE page_id = 18');
$page_tpl->assign('news_text', $news->fields['body_text']);

/* Send the output */
$page_tpl->parse('main');
$page_tpl->out('main');

$dbReadOnly->close();
$db->close();
ob_end_flush();
?>
conf.main.php

Code: Select all

<?php /**
 * This is the main website configuration file
 *
 * @package System
 * @subpackage Config
 */

define('DB_USER', 'turningm');
define('DB_PASS', 'mgninrut');

require_once(dirname(__FILE__).'/../include/functions/site.php');
require_once('adodb/adodb.inc.php');

$dbReadOnly = masterConnect();
$db = connect();

$CONFIG = loadConfig($db);

if (strstr($_SERVER['REQUEST_URI'], '~'))
 define('URL_MODIFIER', 1);
else 
 define('URL_MODIFIER', 0);

define('URL_TARGET', 1);

ini_set('include_path', ini_get('include_path').':'.$CONFIG['paths']['base']);

require_once($CONFIG['paths']['classes'].'/class.System.php');
require_once($CONFIG['paths']['classes'].'/class.XiTemplate.php');
require_once($CONFIG['paths']['classes'].'/class.String.php');
require_once($CONFIG['paths']['classes'].'/class.User.php');
require_once($CONFIG['paths']['classes'].'/class.Form.php');
require_once($CONFIG['paths']['classes'].'/class.Pagination.php');
require_once($CONFIG['paths']['classes'].'/class.Html.php');
require_once($CONFIG['paths']['classes'].'/class.EnhancedMailer.php');
?>
:(


feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

URGENT?! PHP HELP?! WOW. :|
[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1 wrote:2. Use descriptive subjects when you start a new thread. Vague titles such as "Help!", "Why?" are misleading and keep you from receiving an answer to your question.


The ADOdb include couldn't be found. How is that really urgent? Not that we care, I just hope you get the point that your problem isn't any more important than anyone elses.
Z3RO21
Forum Contributor
Posts: 130
Joined: Thu Aug 17, 2006 8:59 am

Post by Z3RO21 »

Check your paths. More specificaly

Code: Select all

require_once(dirname(__FILE__).'/../include/functions/site.php');
require_once('adodb/adodb.inc.php');
Post Reply