Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #21  
Old 11-23-2008, 02:53 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That file contains the MD5 checksums of all files within vBulletin. It is used what you use the "Suspect File Versions" feature to check the integrity of all the files within the vBulletin directory.
Reply With Quote
  #22  
Old 11-23-2008, 03:44 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So if I go ahead and change the name to registerxx.php the system will not work because of the fact the integrity of all the files within the vBulletin directory will have changed. Is that the case or can I change the name and it will not matter. I did change the name of the file physial so my link to it is registerxx.php in the /forums folder this is so that if someone knows that I am using vb that will not be able to get it. and i went through the files in that folder and changed all references to the file the new name - but when i can to the line in the includes - md5_sums_vbulletion.php following lines:

$md5_sums = array(
'/' => array(
'register.php' => 'e789eb3131e27e2cdf90e9c9687f9f86',
),

I did not know if changing this line the filename and not the check sum which i could never figure out what it should be any how -

'registerxx.php' => 'e789eb3131e27e2cdf90e9c9687f9f86',

The question is this a safe thing to do or should i just leave it a alone and just change all references except this one?

THANKS

Frank H. Shaw

PS the register.php to registerxx.php is not the actaul name i used and did not want to post the actual changed name on the this site for security reasons.
Reply With Quote
  #23  
Old 11-23-2008, 05:06 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

All it means is that if you do Suspect File Version, registerxx will show up as not a recognized file. That's all. Don't worry about that.
Reply With Quote
  #24  
Old 11-24-2008, 04:23 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You shouldn't need to touch any of the md5_sums_*.php files, they do not affect any functionality apart from the "Suspect File Versions" feature - which not many people use.
Reply With Quote
  #25  
Old 11-26-2008, 01:48 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looking at this part of the script what is haopening here below and what should or will happen if I change this the case to registerxx.php unstaed?

includes - functions_online.php - 1390

switch($filename)
{
case 'register.php':
if ($values['do'] == 'requestemail' OR $values['do'] == 'emailcode')
{
$userinfo['activity'] = 'requestemail';
}
else if ($values['a'] == 'ver' OR $values['do'] == 'activate' OR $values['a'] == 'act')
{
$userinfo['activity'] = 'activate';
}

else
{
$userinfo['activity'] = 'register';
}
break;
default:

$userinfo['activity'] = 'unknown';
($hook = vBulletinHook::fetch_hook('online_location_process ')) ? eval($hook) : false;
}
return $userinfo;

and this line above $userinfo['activity'] = 'register';
what is happen here should this get changed to registerxx

THANKS

Frank H. Shaw
Reply With Quote
  #26  
Old 11-26-2008, 01:50 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You may change that if you'd like. All those lines do is define what is listed as a users location on the online.php page.
Reply With Quote
  #27  
Old 11-26-2008, 01:54 AM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the email sent to the user part of the email i want to change is below


To complete your registration, please visit this url:
http://www.xxxxxxxxx.org/forums/regi...103&i=66646180

<a href="http://www.xxxxxxxx.org/forums/register.php?a=act&u=1103&i=66646180">America Online Users Please Visit Here to be Activated</a>

I want to change it to this

To complete your registration, please visit this url:
http://www.xxxxxxxx.org/forums/regis...103&i=66646180

<a href="http://www.xxxxxxxx.org/forums/registerxx.php?a=act&u=1103&i=66646180">America Online Users Please Visit Here to be Activated</a>

Where do i find this to make the modifiaction to it.

THANKS

Frank H. SHaw

--------------- Added [DATE]1227672167[/DATE] at [TIME]1227672167[/TIME] ---------------

I would like to stop the allowing of a email address from the domain @mail.ru
which will stop at least that type of spam - i hope that is.

I am using version 3.6.8. - so what can I do in this version - please give me the exact steps to do this.

THANKS

Frank H. Shaw
Reply With Quote
  #28  
Old 11-26-2008, 03:25 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think the first is a phrase. Do a search in phrases for some of that email and see what comes up.

The second is under vboptions > user banning options > banned email addresses.
Reply With Quote
  #29  
Old 11-26-2008, 10:06 PM
Frank H. Shaw Frank H. Shaw is offline
 
Join Date: Aug 2007
Posts: 90
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I want to create a question and field that must be filled out correctly for the registration process to happen. I want this field to be before the image verifation part and have to have this a required field. My question is what do i need to do for this to happen what files do I need to modify to put this field and question in.

If someone could help guide me and explain what has to happen that would be really helpful in my understand of this process and quick i hope modifation.

THANKS

Frank H. Shaw
Reply With Quote
  #30  
Old 11-26-2008, 11:02 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You may find this of interest - Add an extra question to the registration to prevent bot registrations
I think there may be mods also, but I'm not sure.
Reply With Quote
Reply

Thread Tools
Display Modes

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 09:22 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.04522 seconds
  • Memory Usage 2,245KB
  • 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
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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