vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Error on page (https://vborg.vbsupport.ru/showthread.php?t=207769)

Jaime82 03-09-2009 02:30 AM

Error on page
 
Can anyone tell me why I get an error on a php page when I move it out of the bbs directory and into a chat directory and add the chdir line of code? I get the error:
Line 43
Char 1
Object Expected

I will paste the code below.

Thanks

Jaime

PHP Code:


<?php 

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS'1); 
define('THIS_SCRIPT''Chat'); // change this depending on your filename 

// ################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array( 

); 

// get special data templates from the datastore 
$specialtemplates = array( 
     
); 

// pre-cache templates used by all actions 
$globaltemplates = array( 
    
'Chat'
); 

// pre-cache templates used by specific actions 
$actiontemplates = array( 

); 

// ######################### REQUIRE BACK-END ############################

chdir('/path/to/bbs/directory');  
require_once(
'/path/to/bbs/directory/global.php');

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// ####################################################################### 

$navbits = array(); 
$navbits[$parent] = 'Chat Page'

$navbits construct_navbits($navbits); 
eval(
'print_output("' fetch_template('Chat') . '");');

?>


TigerC10 03-09-2009 03:05 AM

Your problem is how you're setting the navbits. $parent isn't defined... You should do this instead...

Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'Chat'); // change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array(

);

// get special data templates from the datastore
$specialtemplates = array(
   
);

// pre-cache templates used by all actions
$globaltemplates = array(
    'Chat',
);

// pre-cache templates used by specific actions
$actiontemplates = array(

);

// ######################### REQUIRE BACK-END ############################

chdir('/path/to/bbs/directory'); 
require_once('/path/to/bbs/directory/global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################

$navbits = array();
$navbits["chat.php"] = 'Chat Page';

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

?>

I guess you could also define a $parent variable yourself, if you want - but it's not like you have to.

Jaime82 03-09-2009 11:45 PM

I put chat.php where you said and still get an error, but on line 47 now. I only have 45 lines of code in that file, could the error be in my template? I don't understand this, all the code works fine when I have this file in the bbs directory, but I get an error when I move it out of the bbs directory into my chat directory. Will post my code below.

PHP Code:


<?php 

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS'1); 
define('THIS_SCRIPT''Chat'); // change this depending on your filename 

// ################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array( 

); 

// get special data templates from the datastore 
$specialtemplates = array( 
     
); 

// pre-cache templates used by all actions 
$globaltemplates = array( 
    
'Chat'
); 

// pre-cache templates used by specific actions 
$actiontemplates = array( 

); 

// ######################### REQUIRE BACK-END ############################

chdir('/path/to/bbs/directory');  
require_once(
'/path/to/bbs/directory/global.php');

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// ####################################################################### 

$navbits = array(); 
$navbits["chat.php"] = 'Chat Page'

$navbits construct_navbits($navbits); 
eval(
'print_output("' fetch_template('Chat') . '");');
?>


TigerC10 03-10-2009 12:02 AM

What's your new error message?

Jaime82 03-10-2009 12:57 AM

I was editing my template tonight and now the line of the error has changed. The error is now this:

Line 22
Char 1
Object Expected

Could the error be in my template? Could there be something wrong with the way I'm changing directories in my php file? I'm wondering that cause everything works fine when the php file is in my bbs directory where my global.php file is.

Thanks

Jaime

TigerC10 03-10-2009 01:36 AM

Well, changing the working directory generally only messes up other includes... I don't see anything in your code that would cause that problem. If you think it's a problem, you can try this:

Code:

<?php 

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS', 1); 
define('THIS_SCRIPT', 'Chat'); // change this depending on your filename 

// ################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array( 

); 

// get special data templates from the datastore 
$specialtemplates = array( 
     
); 

// pre-cache templates used by all actions 
$globaltemplates = array( 
    'Chat', 
); 

// pre-cache templates used by specific actions 
$actiontemplates = array( 

); 

// ######################### REQUIRE BACK-END ############################
$curr_dir = getcwd();
chdir('/path/to/bbs/directory'); 
require_once('/path/to/bbs/directory/global.php');
chdir( $curr_dir );

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// ####################################################################### 

$navbits = array(); 
$navbits["chat.php"] = 'Chat Page'; 

$navbits = construct_navbits($navbits); 
eval('print_output("' . fetch_template('Chat') . '");');
?>

Although I have a question... Why are you defining NO_REGISTER_GLOBALS to true? Doesn't that stop you from accessing the global variables? What happens if you define it to false instead?

Jaime82 03-10-2009 02:43 AM

I changed NO_REGISTER_GLOBALS to false and that didn't change anything. I also added the code in red that you added to my code and I still get the same error message.

Any other suggestions?

Thanks

Jaime

TigerC10 03-10-2009 03:37 AM

Can you post your Chat template?

BSMedia 03-10-2009 04:14 AM

Thats a template error and not an error from the php file.

Its usually from using coding thats not up to standards. Try to run the template through a validator.

Dismounted 03-10-2009 05:09 AM

Templates cannot be placed directly into the W3C validator - as it contains vBulletin's custom tags.


All times are GMT. The time now is 08:15 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.01301 seconds
  • Memory Usage 1,756KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete