vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Global Error Issue, Can I get some help? (https://vborg.vbsupport.ru/showthread.php?t=76663)

Uniphix 02-20-2005 12:31 AM

Global Error Issue, Can I get some help?
 
Okay I seem to get an issue here and there are some things I am trying to do right now and that is... trying to get my other php files to link to the global.php..

I have this error


Quote:

Warning: main(): Unable to access ./global.php in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 32

Warning: main(./global.php): failed to open stream: No such file or directory in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 32

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/share/pear') in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 32
And this is what I have...

PHP Code:

<?php
error_reporting
(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS'1);
define('THIS_SCRIPT''adv_index');
define('VBA_PORTAL'true);

//chdir('/forums');

$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();

require_once(
'./global.php');

$navbits = array(); 
$navbits[$parent] = 'Races'

$navbits construct_navbits($navbits); 
eval(
'$navbar = "' fetch_template('navbar') . '";');

eval(
'print_output("' fetch_template('races') . '");');
?>


Zachery 02-20-2005 12:37 AM

is this file in the same directory as global.php

Uniphix 02-20-2005 12:58 AM

Nope

This is what I plan on having...

ROOT/forums/etc.etc.

ROOT/portal/races/all race stuff here...
ROOT/portal/classes/all class stuff here...

I have a index.php in my ROOT folder that is my main homepage...

While I have my forums in my forums..

Zachery 02-20-2005 01:15 AM

then uncomment this line

//chdir('/forums');

;)

chdir('./forums');

if that doesn't work try

chdir('../forums');

Uniphix 02-20-2005 02:00 AM

Quote:

Warning: chdir(): SAFE MODE Restriction in effect. The script whose uid is 10482 is not allowed to access /home/httpd/vhosts/paragonix.org/httpdocs/portal owned by uid 0 in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 7

Warning: main(): Unable to access ./global.php in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 14

Warning: main(./global.php): failed to open stream: No such file or directory in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 14

Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/share/pear') in /home/httpd/vhosts/paragonix.org/httpdocs/portal/races/index.php on line 14
This is what I edited...


PHP Code:

<?php
error_reporting
(E_ALL & ~E_NOTICE);
define('NO_REGISTER_GLOBALS'1);
define('THIS_SCRIPT''adv_index');
define('VBA_PORTAL'true);

chdir('../forums');

$phrasegroups = array();
$globaltemplates = array();
$actiontemplates = array();
$specialtemplates = array();

require_once(
'./global.php');

$navbits = array(); 
$navbits[$parent] = 'Races'

$navbits construct_navbits($navbits); 
eval(
'$navbar = "' fetch_template('navbar') . '";');

eval(
'print_output("' fetch_template('races') . '");');
?>

OKay I aM still having issues with both tries...

Uniphix 02-23-2005 10:19 PM

Okay Still need help I seem to not be able to figure this out :surprised:

sabret00the 02-23-2005 10:26 PM

PHP Code:

chdir('../forums'); 

should read
PHP Code:

chdir('/home/httpd/vhosts/paragonix.org/httpdocs/forums/'); 


Uniphix 02-23-2005 10:39 PM

I'll give it a try

Works great thanks

and I need a / before home to get it right hehe


All times are GMT. The time now is 03:18 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01017 seconds
  • Memory Usage 1,742KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete