Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 26
Search took 0.00 seconds.
Search: Posts Made By: pianoman993
Forum: vB3 Programming Discussions 02-04-2009, 07:08 PM
Replies: 1
Views: 713
Posted By pianoman993
What is happening to the password when the user clicks submit?

When a user enters their password in the password field, what is happening to the password (specifically) to create the unique password alphanumeric combination in the user table? I know the password...
Forum: vB3 Programming Discussions 01-16-2009, 02:17 PM
Replies: 1
Views: 739
Posted By pianoman993
Detecting if logged in with external page?

I'm going to move my forums to a separate forums folder so users go to www.mysite.com/forums now. I would like to have a main page (mysite.com/index.php) be able to detect whether or not the user is...
Forum: vB3 Programming Discussions 01-12-2009, 01:07 AM
Replies: 4
Views: 668
Posted By pianoman993
Genius!!! Thank you so much!!

Genius!!! Thank you so much!!
Forum: vB3 Programming Discussions 01-11-2009, 11:54 PM
Replies: 4
Views: 668
Posted By pianoman993
If you tack on anything to then end of a URL...

If you tack on anything to then end of a URL anybody can change that value. It's just more of a hassle than anything.

Are you saying that transferring information through the URL is the only way...
Forum: vB3 Programming Discussions 01-11-2009, 09:35 PM
Replies: 4
Views: 668
Posted By pianoman993
Sending information to php page through plugin

Is it possible to send information to an external php through a plugin? I know that you can send information through the URL but that is not secure at all. Are there any other methods?! This is the...
Forum: vB3 Programming Discussions 01-04-2009, 04:40 AM
Replies: 5
Views: 853
Posted By pianoman993
Great thank you! I'll try that out and get back...

Great thank you! I'll try that out and get back to you :)
Forum: vB3 Programming Discussions 01-03-2009, 11:51 PM
Replies: 5
Views: 853
Posted By pianoman993
I did that but then it would not let anybody...

I did that but then it would not let anybody register.

It just keeps saying



To everything, spaces or no spaces. Any ideas why?
Forum: vB3 Programming Discussions 01-03-2009, 10:56 PM
Replies: 5
Views: 853
Posted By pianoman993
Disallow spaces in Username on registration?

Is it possible to disallow spaces in the username during registration? If so how?

All help is greatly appreciated!

- Pianoman993
Forum: vB3 Programming Discussions 01-03-2009, 04:00 AM
Replies: 3
Views: 839
Posted By pianoman993
<if on this page> then... ?

Is it possible to create an <if we are on this page> then... condition?

I hope this is a simple question :)
Forum: vB3 Programming Discussions 01-03-2009, 03:43 AM
Replies: 9
Views: 1,694
Posted By pianoman993
Ah, I wasn't aware of that! Now we have two...

Ah, I wasn't aware of that! Now we have two methods.
Forum: vB3 Programming Discussions 01-03-2009, 03:32 AM
Replies: 9
Views: 1,694
Posted By pianoman993
Ahhh! I believe we have an answer. I prepped the...

Ahhh! I believe we have an answer. I prepped the plugin variable with a $_GET['category'] variable. Vbulletin was now aware of that and parsed the value. Woot!

Thank you for all your help :-D
Forum: vB3 Programming Discussions 01-03-2009, 03:01 AM
Replies: 9
Views: 1,694
Posted By pianoman993
Alrighty, so here are the two pages I'm having...

Alrighty, so here are the two pages I'm having trouble with.

Here is the original PHP page that has this code:


<?php
echo $_GET['category'];
?>

Sorry, the search page is currently under...
Forum: vB3 Programming Discussions 01-03-2009, 02:41 AM
Replies: 9
Views: 1,694
Posted By pianoman993
I'm not putting the php code directly in a...

I'm not putting the php code directly in a template file. I am using a plugin to include the php file externally.
Forum: vB3 Programming Discussions 01-03-2009, 01:52 AM
Replies: 9
Views: 1,694
Posted By pianoman993
$_GET and $_POST variables are not recognized?!

Hello there Vbulletin experts I have a bit of a problem. I have a page that has $_GET variables in the URL. The problem is that Vbulletin is not recognizing that there are variables there so for...
Forum: vB3 Programming Discussions 12-28-2008, 04:56 AM
Replies: 15
Views: 1,737
Posted By pianoman993
Gotcha, that'll work. Thanks!

Gotcha, that'll work. Thanks!
Forum: vB3 Programming Discussions 12-27-2008, 05:43 PM
Replies: 0
Views: 744
Posted By pianoman993
Can't Get PHP variable into CGI file

Alright, I had a thread concerning this, but the content inside became irrelevant.

Basically the problem is I have a PHP and a CGI file and I want my php variables to be recognized in the CGI...
Forum: vB3 Programming Discussions 12-27-2008, 04:31 PM
Replies: 15
Views: 1,737
Posted By pianoman993
Alright so here is my new plugin code: ...

Alright so here is my new plugin code:


ob_start();

print $vbulletin->userinfo['username'];
global $username;
$username = ob_get_contents();

ob_end_clean();
Forum: vB3 Programming Discussions 12-27-2008, 03:37 PM
Replies: 15
Views: 1,737
Posted By pianoman993
Thanks for your post. So your saying that...

Thanks for your post.

So your saying that this: (below) is unnecessary? Would I create a simple variable in the page that calls the CGI script, or would I do it in the vbulletin plugin? Also, what...
Forum: vB3 Programming Discussions 12-27-2008, 03:18 PM
Replies: 15
Views: 1,737
Posted By pianoman993
:( Sorry. My fault. The included script IS on the...

:( Sorry. My fault. The included script IS on the server. There you are. I have to use the full filename to include it or else it does not work.

In essence, I am trying to integrate with...
Forum: vB3 Programming Discussions 12-27-2008, 03:13 PM
Replies: 15
Views: 1,737
Posted By pianoman993
Thanks so far for all your useful information. ...

Thanks so far for all your useful information.

Marco, would it be possible for you to show me a code example of how to pass information such as the username ($vbulletin->userinfo['username'])...
Forum: vB3 Programming Discussions 12-27-2008, 02:17 PM
Replies: 15
Views: 1,737
Posted By pianoman993
That could easily be hacked. I was originally...

That could easily be hacked. I was originally trying to deala with session variable since they were the most secure.
Forum: vB3 Programming Discussions 12-27-2008, 03:41 AM
Replies: 15
Views: 1,737
Posted By pianoman993
I'm trying to get variables into a CGI script via...

I'm trying to get variables into a CGI script via putenv().

However, I may try to just use $_ENV

Thanks for all the help!

--------------- Added 1230357708 at 1230357708 ---------------
...
Forum: vB3 Programming Discussions 12-26-2008, 11:25 PM
Replies: 1
Views: 577
Posted By pianoman993
Sending bbuserinfo into a session?

Is it possible to put the username $bbuserinfo[usersname] into a session?
Forum: vB3 Programming Discussions 12-26-2008, 09:23 PM
Replies: 15
Views: 1,737
Posted By pianoman993
Can't get plugin code to work

Hey everyone, I need some help on a short bit of code I want to put in a plugin. The code looks like this:


putenv("PHP_ENC_USERNAME=$bbuserinfo[username]"); # where $username is your PHP user...
Forum: vB3 Programming Discussions 10-31-2008, 11:22 PM
Replies: 4
Views: 799
Posted By pianoman993
Thank you for your input. Are there any tutorials...

Thank you for your input. Are there any tutorials available where I can begin to understand how to create a plugin in order to display variables?

- Mark
Showing results 1 to 25 of 26

 
Forum Jump

All times are GMT. The time now is 01:23 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.01786 seconds
  • Memory Usage 2,035KB
  • 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)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (16)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.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_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete