vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   New Posting Features - Form Hack (https://vborg.vbsupport.ru/showthread.php?t=126676)

upnorth 02-16-2007 02:50 PM

Thanks blind-eddie

I hate to give this kind of access to the forum I'm having this submitted into...do you think there would be a way to setup a new user account that I could hard code into this hack. That way I can limit the user account setting within vB so that it only has access to this one forum. Hard coding the user setting might be a bit of a security risk but my forum is hosted on an intranet so I'm no worried that the employees in my company will be hacking my site.

Do you think this could be done easily?

blind-eddie 02-16-2007 03:38 PM

Dont get me to lying.....Your first question was easy, your second one is a lil tougher....I have it set up for only registered user who are logged in can post on any forum, thus reducing spam. My opion to you is that I wouldnt want anyone to fill out a form unless they were registered,to ensure they are who they are.

upnorth 02-16-2007 04:11 PM

K so if we go that route how can I have the form force the user to login first.

i.e.
if the user enters "http://www.myforum.org/forum/newthread.php?do=form" they're currently taken to the form regardless of whether they are logged in. If they're not logged in and fill out the form and hit submit they are given no indication that their post has not gone through. So what I would like to do is some how check that the user is logged in when they first get to this page and if they are not, force them to login first...make sense?

thalamus 02-16-2007 04:29 PM

Quote:

Originally Posted by upnorth (Post 1183991)
K so if we go that route how can I have the form force the user to login first.

Not sure about redirecting although I know there's a vB hook somewhere that can do that... what you could do (possibly - not tested it) is, in the form hack plugin right at the top, just after:
Code:

if ($_REQUEST['do'] == $formname)
{

put:
Code:

        if (!$vbulletin->userinfo['userid'])
        {
                print_no_permission();
        }

then if you need a redirector, replace (or add to) the print_no_permission() with the hook.

Alternatively you can amend this line in the plugin code:
Code:

// if (!in_array($vbulletin->userinfo['usergroupid'], array(2,5,6,7))) print_no_permission();
by removing the comment bars and amending the allowed usergroups (or removing the NOT bang and setting groups who cannot access, if that's easier).

Setting the post to be from a defined user is, from what I can tell, far more difficult, as the call to build_new_post() picks up the current user's id (whether a member or not).

Anyone found out how to circumvent the posts (from unregd users) going into the Moderation queue yet?

thalamus 02-16-2007 04:43 PM

Quote:

Originally Posted by RedGTiVR6 (Post 1183815)
This is really the only thing holding me back from releasing this on our forums.

Does anyone have any insight?

I would suggest this could only be in the 'form answers' template (as defined by you in the xml by the "$answertemplate" variable) that you would have created in AdminCP -> Style Manager (unless the plugin code has been amended somehow...)

bErKandD 02-16-2007 04:44 PM

woww :D very very good job.
thanx abe1...

RedGTiVR6 02-16-2007 06:50 PM

Quote:

Originally Posted by thalamus (Post 1184015)
I would suggest this could only be in the 'form answers' template (as defined by you in the xml by the "$answertemplate" variable) that you would have created in AdminCP -> Style Manager (unless the plugin code has been amended somehow...)

There's nothing in there related to it, not in the stock template and not in the modified template.

Here's my template:

Code:

$normalquestion1

$normalanswer1


$normalquestion2

$normalanswer2


$radioquestion1

$radioanswer1


$longquestion1

$longanswer1


$longquestion2

$longanswer2

That's it!

Kiint 02-16-2007 08:38 PM

I've searched through the plugin and the templates yet still cannot find out how to remove it either....

Krahl 02-16-2007 10:08 PM

Why don't the two of you compare installed hacks and plugins? Perhaps you can find a common vein which might lead to being able to track it down more easily.

Sorry I couldn't be more help than that, but it's a potential start - at least until one of the more capable coders comes along to shed some light.

thalamus 02-17-2007 04:37 AM

Quote:

Originally Posted by RedGTiVR6 (Post 1184108)
There's nothing in there related to it, not in the stock template and not in the modified template.

That's it!

It *must* be in the templates; I can't see it being anywhere else. Have you searched through your templates (all styles) in vBulletin adminCP? As mentioned, it may well be in a co-related hack or plugin that's found its way through...


All times are GMT. The time now is 05:12 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.02084 seconds
  • Memory Usage 1,747KB
  • 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
  • (4)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (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