vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - Easy Forms v4.x - Create a form or multiple forms without php or html knowledge (https://vborg.vbsupport.ru/showthread.php?t=234385)

DevinM 05-08-2011 07:04 PM

Quote:

Originally Posted by bananalive (Post 2193120)
Enable Attachments for the other non-admins usergroups for that forum. It should display the attachments even without forum viewing permission.

They fill out the form fine but get the error when they hit "manage attachments" I allowed attachments and posting rights in those forums. They other forms post fine its just attachments.

Any ideas?

ScratchMang 05-10-2011 06:27 PM

Hate to repeat the request.

Is there any plans a foot to integrate calendar event creation into the MOD? So someone could enter in a Start and End date and have the calendar event created automagically?

Scratch

Tahooma 05-10-2011 07:49 PM

Hi,

I try to make an online form (application) with the possibility to upload a picture.

Could you let me know if this is possible and how it works?

thx

helwoe 05-11-2011 03:44 AM

I need some help on this code for a custom question.

I'm using this code to ask new applicants to our clan to pick from a list who they were referred by. However when I change it to the correct usergroupid = 18
It will not display any names. However usergroupid = 2 does work.

Any ideas?


Quote:

Originally Posted by Sarcoth (Post 2081939)
Good stuff Banana, thank you. I got it working! :) I am using a custom question which selects a user from usergroup 2; reference name = shuser.

PHP Code:

$answer .= '<select name="'.$formbit[id].'">';
$members $db->query_read("SELECT * FROM " TABLE_PREFIX "user
WHERE usergroupid = 2
ORDER BY username ASC"
);
    while(
$row $db->fetch_array($members)) {
$answer .= '<option value="'.$row[username].'"';
if (
$row[username] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[username].'</option>';
}
$answer .= '</select>'

[/PHP]


midnz 05-11-2011 06:36 AM

Quote:

Originally Posted by helwoe (Post 2194301)
I need some help on this code for a custom question.

I'm using this code to ask new applicants to our clan to pick from a list who they were referred by. However when I change it to the correct usergroupid = 18
It will not display any names. However usergroupid = 2 does work.

Any ideas?

I use the following code to successfully do what you're wanting:
The usergroup ID number I've used is 50. Try changing 50 to 18 and pray.

PHP Code:

$answer .= '<select name="'.$formbit[id].'">';
$answer .= '<option></option>';
$thisanswer $q_{$formbit[id]};
$members $db->query_read("SELECT * FROM " TABLE_PREFIX "user
WHERE membergroupids LIKE \"%50%\"
ORDER BY username ASC"
);
    while(
$row $db->fetch_array($members)) {
$answer .= '<option value="'.$row[username].'"';
if (
$row[username] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[username].'</option>';
}
$answer .= '</select>'


helwoe 05-11-2011 01:43 PM

Quote:

Originally Posted by midnz (Post 2194325)
I use the following code to successfully do what you're wanting:
The usergroup ID number I've used is 50. Try changing 50 to 18 and pray.

Thank you. It worked! :)

helwoe 05-11-2011 02:54 PM

Not sure where to ask this.

I use keyCaptcha and am having problems submitting forms. I can preview the form but when I submit I get this error even though I get the green check mark (keycaptcha passed).

https://vborg.vbsupport.ru/external/2011/05/33.jpg

Anyone else?

EDIT: I changed to question answer instead of keyCaptcha and the form will submit. I guess I can't use keyCaptcha.

midnz 05-11-2011 08:18 PM

Can somebody please recommend a smarter way of constructing a question with multiple checkboxes so that the Results Table doesn't end up bloated with the answers selected?

Question - multiple checkboxes
https://vborg.vbsupport.ru/

Form Results Table
https://vborg.vbsupport.ru/

zushiba 05-12-2011 08:12 PM

1 Attachment(s)
so recently we've run into the need for this question type came up. Similar to the grid we need the ability to make a question and answer grid.

I've attached an image. Just a request if you ever get around too it.

setishock 05-12-2011 09:45 PM

Bananalive answered so many questions from me about the 3.8.4 version I was running that he finally worked up an xml sheet for me to have a look at. After loading that in to easy forms I got the picture of how to make it work. Thanks again.
BUT
Due to some personal problems I lost my storage bin which had all 4 of my desktop computers in it. All I have left is my lappy, my cameras, and my happy a**. So no I didn't get the chance to see if the old vb3x xml sheet works with the current version of this mod.
Maybe just maybe Bananalive has it stashed away somewhere...

But Bananalive consider this version installed and I'll just bang away on it and see if I can make it do what the old version did.


All times are GMT. The time now is 09:52 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.02809 seconds
  • Memory Usage 1,763KB
  • 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
  • (4)pagenav_pagelink
  • (5)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