vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Get username outside forum folder (https://vborg.vbsupport.ru/showthread.php?t=230173)

Taringa! CS 12-14-2009 11:25 AM

Get username outside forum folder
 
Hi!

I've got my vb installed in a folder called /foros/ and i'm trying to get vb logged in username for an irc chat located in /chat/ (outside forum folder)

I'm using this piece of code i found to get a clean username

PHP Code:

<?php
$vwd 
'/var/www/myweb.com/public_html/foros';
$cwd getcwd();

chdir($vwd);
require_once(
$vwd '/global.php');

$lcnick strtolower($vbulletin->userinfo['username']);
$lcnick ucfirst($lcnick);
$cleanchr ereg_replace("[^0-9a-zA-Z]"""$lcnick);
$cleannum ereg_replace("^[0-9]*[0-9]"""$cleanchr);

$nick ereg_replace(" ""_"$cleannum);

chdir($cwd);

But when i do an echo of $nick i only get "Unregistered"

If that piece of code it's located inside forum folder, it works fine and my username it's echo when running that script.

Any ideas of how i can fix this?

Thanks in advance


All times are GMT. The time now is 04:43 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.01662 seconds
  • Memory Usage 1,713KB
  • 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
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (1)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