Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-24-2005, 08:24 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default 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();

Reply With Quote
  #2  
Old 09-25-2005, 04:21 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No one has any ideas on how to fix this?
Reply With Quote
  #3  
Old 09-25-2005, 06:09 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #4  
Old 09-25-2005, 06:14 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #5  
Old 09-27-2005, 11:16 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone else have any ideas how to fix this? It's all I need to finish up and release a RealChat vB integration hack.
Reply With Quote
  #6  
Old 09-27-2005, 12:10 PM
jugo jugo is offline
 
Join Date: Feb 2004
Location: Reading your emails.
Posts: 573
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try changing this:

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

Code:
chdir('../');
May not fix your issue but it's definitely prettier and cleaner.
Reply With Quote
  #7  
Old 09-27-2005, 12:17 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You're right, it didn't fix the problem. It is still looking for all the images in /chat/images instead of just /images.
Reply With Quote
  #8  
Old 09-27-2005, 12:22 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
  #9  
Old 09-27-2005, 12:24 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, how do I use string replace in a template?
Reply With Quote
  #10  
Old 09-27-2005, 12:30 PM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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).
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:38 PM.


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.03904 seconds
  • Memory Usage 2,265KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (3)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete