vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   CHDIR question (https://vborg.vbsupport.ru/showthread.php?t=96817)

Boofo 09-24-2005 08:24 AM

CHDIR question
 
I have this piece of code in my chat.php file which is in the forums/chat directory. When a guest tries to view the chat they get a no permission error like it is supposed to do. But for some reason, the header takes up half the page and it doesn't show the header image. It is looking for the header in the chat/images directory which doesn't exist. How can I avoid that when they get a no permission error?

PHP Code:

 // ######################### REQUIRE BACK-END ############################
chdir('./../');
require_once(
'./global.php');
// ######################## START MAIN SCRIPT ############################
// Guests cannot access RealChat Rooms
if ($vbulletin->userinfo['userid'] == '0')
{
 
print_no_permission();



Boofo 09-25-2005 04:21 AM

No one has any ideas on how to fix this? :(

Zachery 09-25-2005 06:09 AM

Quote:

Originally Posted by Boofo
I have this piece of code in my chat.php file which is in the forums/chat directory. When a guest tries to view the chat they get a no permission error like it is supposed to do. But for some reason, the header takes up half the page and it doesn't show the header image. It is looking for the header in the chat/images directory which doesn't exist. How can I avoid that when they get a no permission error?

PHP Code:

 // ######################### REQUIRE BACK-END ############################
chdir('./../');
require_once(
'./global.php');
// ######################## START MAIN SCRIPT ############################
// Guests cannot access RealChat Rooms
if ($vbulletin->userinfo['userid'] == '0')
{
 
print_no_permission();



You can fix this one of two ways bob, either use full and complete paths in the HTML (not the php ;))

Or

use some nifty replaces in your html to replace links in the header and footer template

vBa CMPS/ Gallery / Links does the latter.

Boofo 09-25-2005 06:14 AM

Quote:

Originally Posted by Zachery
You can fix this one of two ways bob, either use full and complete paths in the HTML (not the php ;))

Or

use some nifty replaces in your html to replace links in the header and footer template

vBa CMPS/ Gallery / Links does the latter.

I'm only using templates for this. Sorry, I don't understand what I should change or where. :(

Boofo 09-27-2005 11:16 AM

Anyone else have any ideas how to fix this? It's all I need to finish up and release a RealChat vB integration hack.

jugo 09-27-2005 12:10 PM

try changing this:

Code:

chdir('./../');
to this

Code:

chdir('../');
May not fix your issue but it's definitely prettier and cleaner.

Boofo 09-27-2005 12:17 PM

You're right, it didn't fix the problem. It is still looking for all the images in /chat/images instead of just /images. :(

Zachery 09-27-2005 12:22 PM

Quote:

Originally Posted by Boofo
You're right, it didn't fix the problem. It is still looking for all the images in /chat/images instead of just /images. :(

Bob you need to supply full image paths in your header / footer templates along with full urls to the actual files

OR

use php to string replace on said templates like vBa CMPS / Gallery / Links Directory does

Boofo 09-27-2005 12:24 PM

Ok, how do I use string replace in a template?

sabret00the 09-27-2005 12:30 PM

PHP Code:

                    $template_name str_replace(
                        array(
                            
'/chat/images'
                        
),
                        array(
                            
'/images'
                        
),
                        
$template_name); 

put that after the template eval but before the final template eval of the page (the print_output one).


All times are GMT. The time now is 05:52 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.01117 seconds
  • Memory Usage 1,746KB
  • 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
  • (3)bbcode_php_printable
  • (3)bbcode_quote_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