vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Quick Registration Form on a non-vB page (https://vborg.vbsupport.ru/showthread.php?t=53070)

Gary King 06-02-2003 07:05 PM

Quote:

Yesterday at 10:19 PM Nebby said this in Post #8
EDIT: NM, i tested it, it just goes back to quickreg.php
Where would you want it to go?

WEForums 06-02-2003 11:20 PM

Quote:

Yesterday at 09:04 PM Gary W said this in Post #10
Yes, it is. Some minor modifications would have to be made to the file, though. For example, the config.php variables would not be accessible, so you would have to add those manually.
To be clear, PHP files would be necessary for this hack to work? Or could it be done via HTML only? The website uses .shtml extensions is why I ask, and there isn't any PHP files on it. Don't really want to add any. ;)

Gary King 06-02-2003 11:29 PM

The PHP file that processes the registration could be located somewhere else, just as long as the HTML file has access to it.

WEForums 06-02-2003 11:36 PM

Could you give me an example? Sorry to bug you but I don't exactly have the greatest of knowledge of this stuff, and it seems you know a LOT about this. (Been viewing a lot of your posts/threads.) ;)

Gary King 06-02-2003 11:41 PM

Maybe the PHP file is accessible via FTP, or on the same server.

P.S.
Why not simply place the PHP file that processes the script, in the same directory as the HTML file, if you don't want to use a PHP file for the quick registration page?

WEForums 06-02-2003 11:50 PM

Quote:

Today at 01:41 AM Gary W said this in Post #15
Maybe the PHP file is accessible via FTP, or on the same server.
I am sure they're on the same server but just a separate domain. (I do not 'own' the site, I just run the forums.)

Quote:

Today at 01:41 AM Gary W said this in Post #15
P.S.
Why not simply place the PHP file that processes the script, in the same directory as the HTML file, if you don't want to use a PHP file for the quick registration page?

Wouldn't you still have to click onto another page? I simply would like the quick registration to be on the page rather than it having its very own page. You know, having the form on the HTML page?

The only reason for this is the site receives about 15,000-25,000 unqiue hits per day. The forums have 22,000-some odd members, but we're really looking to expand even more.

Gary King 06-02-2003 11:57 PM

Yes, you can have the form on the HTML page. So, you do not wish to have the form on a .PHP page? That is not at all possible? (May I ask why not?)

You can simply have the PHP file process the actual registration, while the HTML only "tells" the PHP page to register the user.

WEForums 06-03-2003 12:04 AM

So you could use HTML to "call" for the script's form, correct? And the script could be on a separate domain as well, right?

If so, would you find giving an example of the HTML? I have no experience working with forms... : (

Gary King 06-03-2003 12:21 AM

As long as the PHP script is accessible by the HTML file.

Example that you could use:

HTML file

PHP Code:

<form action='quickreg.php' method='post'>
Username: <input type='text' name='username'>
<
br>Password: <input type='password' name='password'>
<
br>Email: <input type='text' name='email'>
<
br><input type='submit' name='submit' value='Submit' accesskey='s'
<
input type='reset' name='reset' value='Reset' accesskey='r'>
</
form

PHP file (name it quickreg.php, otherwise you must change the action='' in the HTML file to whatever this file is called)

PHP Code:

<?php

////////////////////////////////////////////////////////////////////////////////////////////
// VARIABLES
// $config = relative path to your vBulletin's /admin/config.php (must be on same server)
// $groupid = user group ID for people who register using this form
// $redirect = leave it as "yes" if you want to redirect the user to the vBulletin after he/she registers
////////////////////////////////////////////////////////////////////////////////////////////

// board information
$config="forum/admin/config.php";
$groupid="2";
$redirect="yes";

///////////////////////////////////////////////////////////////////////////
// DO NOT MODIFY ANYTHING BELOW HERE 
// UNLESS YOU KNOW WHAT YOU ARE DOING
///////////////////////////////////////////////////////////////////////////

$config=strtolower($config);
require(
$config);

$connect=mysql_connect($servername,$dbusername,$dbpassword);
mysql_select_db($dbname);

if (
$submit) {
    
$unique=mysql_query("SELECT username FROM user WHERE username='$username'");
        
$user=mysql_query("INSERT INTO user (usergroupid, username, password, email, joindate, 
        lastvisit, lastactivity) VALUES ('"
.$groupid."', '".htmlspecialchars(addslashes($username)).
        
"', '".addslashes(md5($password))."', 
        '"
.addslashes(htmlspecialchars($email))."', '".time()."', '".time()."', '".time()."')",$connect);
        
$userid=mysql_insert_id();
        
$userfields=mysql_query("INSERT INTO userfield (userid) VALUES ($userid)");
        if ((
$user==TRUE) and ($userid==TRUE) and ($userfields==TRUE)) {
            
header("Location: index.html");
        }
        if (
$redirect=="yes") {
            
$board=str_replace("admin/config.php","index.php",$config);
            print 
"<meta http-equiv='refresh' content='0;URL=".$board."'>";
        }
    
mysql_close($connect);
    }
}

?>

Try that, tell me if it works. I simply modified some things from the original code.

WEForums 06-03-2003 12:29 AM

I got a parse error.

http://www.weforums.com/quickreg3.php

Only thing I changed was...

forum/admin/config.php

to

forums/admin/config.php


All times are GMT. The time now is 09:54 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.01161 seconds
  • Memory Usage 1,767KB
  • 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_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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