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)

Jokermixer 11-30-2011 09:19 PM

please, can you update it at 4.1.8 of vBulletin???

helwoe 12-02-2011 11:25 PM

1 Attachment(s)
Bumping this in hopes of getting an answer..



Quote:

Originally Posted by helwoe (Post 2216063)
Sorry for the double post.

Thank you very much Bananalive for the multi-select code!
I found if I use more than one custom question with this code, the extra questions show up as double drop downs side by side instead of just one drop down each.

PHP Code:

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



Cadellin 12-06-2011 09:52 PM

I've started receiving the following message when guests submit the form:
Quote:

Form failed to submit. The following error(s) occured:
The string you entered for the image verification did not match what was displayed.
The issue is there is no human verification field in the form - so there is nowhere to enter an answer.

When I add a human verification field the issue changes but is related. The verification appears but the form will submit and show that error if I enter the verification correctly - if I don't the normal inline warnings appear preventing submission.

In my ignorance I suspect VB is trying to add it's own verification image but it's not being displayed correctly. Can anyone confirm?

Tested with ReCAPCHTA and Image Verification

Running VB4.1.7 PL2 & VBSEO and mod version 4.3.0 on default VB theme.

Thank you for any assistance.

EDIT: Further digging reveals this was a previous issue I reported in 4.0.2 which was fixed - can anyone tell me what the fix was? Post #143

EDIT2: Rolling back progressively found that forms V4.1.9 is the last working version for me. Forms V4.1.9 displays a verification image for guests by default - future versions don't.

Scans007 12-18-2011 02:06 PM

I tried to read through everything but there is a lot here. I just have a small issue:

1) I created a form
2) I added a new usergroup
3) I went to the form permissions to add the new usergroup
4) The new usergroup does not show up on the current form.

Is there something I can do - or do I have to delete and recreate the form from scratch?

BTW - this mod is awesome and has saved me SO much work. Thx!!

chrisngrod 12-23-2011 06:31 PM

I still absolutely love this mod, and it's helped me greatly.

My forms get sent to an e-mail address, and I'd like the reply to go to the user who submitted it (their e-mail address).

Earlier bananalive responded about a plugin and hook:

Quote:

Upgrade to Easy Forms v4.3.0


AdminCP -> Plugins & Products -> Add New Plugin

Create a plugin using hook: easy_forms_action_email
and to use this...
$uheaders .= 'Reply-To: = email@domain' . "\r\n";

I'm actually looking for the code to replace email@domain with the email address of the user who submitted the form if possible. I've tried a few variations and failed unfortunately.

Thanks in advance!

Crotan 12-27-2011 10:58 PM

I just noticed that threads that are automatically created with a poll from a form, have

Code:

Warning: Invalid argument supplied for foreach() [path]/poll.php line 688
at the top of the page when viewing poll results. On 4.1.8


Update, I actually think this is just a bug with my board or possibly 4.1.8 when viewing poll results for a poll I have not yet voted in, as the code does not appear if I view results on a poll I have voted in.

Hahaha Update Update, Known bug in 4.1.8 http://tracker.vbulletin.com/browse/VBIV-13614 Will be fixed in 4.1.10

wally07 12-29-2011 12:33 AM

I'm on 4.1.9 and when new forms get submitted, whatever the last answer was, it gets copied onto all previous questions.

anyone else experiencing that?

jacobi 01-06-2012 03:14 PM

This is a fantastic mod. Thank you for contributing it!!

vantastic 01-07-2012 07:22 AM

This is an excellent mod! Thank you very much.

One future improvement would be to add default values. Other than that, it's great :)

mairving 01-12-2012 11:18 PM

I have tried installing this mod by following the instructions, but when I try to go to the form page (http://memphisroar.com/forum/forms.php?do=forms), I get a 404/page not found error. What doofus mistake did I make? LOL

bananalive 01-14-2012 11:17 AM

Quote:

Originally Posted by mairving (Post 2287079)
I have tried installing this mod by following the instructions, but when I try to go to the form page (http://memphisroar.com/forum/forms.php?do=forms), I get a 404/page not found error. What doofus mistake did I make? LOL

Have you uploaded forms.php to forum directory?

bananalive 01-14-2012 11:18 AM

Quote:

Originally Posted by chrisngrod (Post 2280505)
I still absolutely love this mod, and it's helped me greatly.

My forms get sent to an e-mail address, and I'd like the reply to go to the user who submitted it (their e-mail address).

Earlier bananalive responded about a plugin and hook:



and to use this...
$uheaders .= 'Reply-To: = email@domain' . "\r\n";

I'm actually looking for the code to replace email@domain with the email address of the user who submitted the form if possible. I've tried a few variations and failed unfortunately.

Thanks in advance!

$uheaders .= 'Reply-To: = ' . $vbulletin->userinfo['email'] . "\r\n";

bananalive 01-14-2012 11:19 AM

Quote:

Originally Posted by helwoe (Post 2216063)
Sorry for the double post.

Thank you very much Bananalive for the multi-select code!
I found if I use more than one custom question with this code, the extra questions show up as double drop downs side by side instead of just one drop down each.

PHP Code:

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


Use following code..
(first line changed .= to =)
PHP Code:

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


chrisu 01-15-2012 08:51 AM

Hi all,

tried to find an answer, but no luck.

Can I add a form inline into an article?
Is there a BB Code or something to add into an article so that a form could be filled inside an article?

Reg

/chris

bananalive 01-19-2012 05:21 PM

Quote:

Originally Posted by chrisu (Post 2288073)
Hi all,

tried to find an answer, but no luck.

Can I add a form inline into an article?
Is there a BB Code or something to add into an article so that a form could be filled inside an article?

Reg

/chris

If html is enabled for article...

Embed using <iframe>

http://www.yourforum.com/forums/misc...&fid=2&embed=1
Change 2 to the appropriate form id

chrisu 01-20-2012 04:27 PM

Thanks, it helps. Although the form is not formatted like normal. Can I add the css styling with some tag?

/chris

Welshy2008 01-23-2012 09:14 AM

Can anyone confirm this great mod as working flawlessly on 4.1.10 please?

vrokar 01-23-2012 05:46 PM

Quote:

Originally Posted by Welshy2008 (Post 2291325)
Can anyone confirm this great mod as working flawlessly on 4.1.10 please?

I cant. Have it all installed and I still cant even access the page to build the form. Which should be noted isnt even listed on this mods description. You currently have to search around page 30 or so with the information pointing to the older version which does list it. however I digress, as an administrator this mod says I dont have permission to use it. Sooo... until I see otherwise. No good.

Valcav 01-23-2012 06:56 PM

I have problems with editing the form...

(an error/warning is that it's missing "jquery-1.4.4.min.js")

vinkenier 01-24-2012 06:50 AM

Can I let guest/not registered visitors see and fill in the forms also?
The link to the forms doesn't show up for them on the menu (using vb 4.1.9)

-> fixed by also enabling 'list forms' for every group.

Welshy2008 01-24-2012 10:23 AM

Quote:

Originally Posted by Welshy2008 (Post 2291325)
Can anyone confirm this great mod as working flawlessly on 4.1.10 please?


I can now confirm that it IS working flawlessly in vB4.1.10

Alex@bulletin 01-24-2012 05:59 PM

Hello there,

i'd like to make a form with a question that requires a (european) time specifikation. e.g. 19:30. (no a.m. and p.m.) as an answer.
(Time of meeting)

Is there a php Code available to do this? Something i can add as Custom Question?.
Of Course i also could do a regular Single-Line field. But I'd like to know whether I got more "professional" options ;)

Thx for all answers =)

SR

vantastic 01-24-2012 11:20 PM

I recently posted a question here: https://vborg.vbsupport.ru/showthread.php?t=277488

It pertains to this mod in particular. I'm just wondering if there's a way within the mod to parse URL's that contain spaces properly (replace space with %20) if part of the url is built using an answer received on a form...

Shadowser 01-29-2012 02:53 PM

Does this mod work with 4.1.10? Since it's showing up as 4.0.x I'd believe not, but I want to be sure.

Thanks for replying.

SanSource 01-29-2012 05:24 PM

Look three post up from yours!!! ^^^

Forbiddenz 01-30-2012 11:51 AM

1 Attachment(s)
Hello, i have it worked well, i can create forms normally. and make it works. but until now, i still have problem in the Form List Page.

it's becoming like this : (attached)

i hope someone could help me on the template code. I'm using Skins by Bluepearl Designs.

1F42 02-02-2012 02:55 PM

Is there any way to get a new form posted as a new thread to show up in mgc chatbox new posts notification window?

KGodel 02-04-2012 07:08 PM

Is there any way to export form results from a table in a CSV or something?

Toorak Times 02-05-2012 11:50 AM

Not Found

The requested URL /forms.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_mono/2.6.3 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.30 Server at www.tooraktimes.com.au Port 80




It appears I'm not getting any better at this.

I think I did as required, but probs didn't...

hh.org 02-06-2012 11:23 AM

I am using forms to create classifieds. Idea is to have uniform classifieds posting from all users on my forum. In order to force use of forms, I have prevented posting in the selling forums. Forms work very well and users are only able to leave classifieds via forms.

There is only one problem: if usergroup is not allowed to post threads (Forum Permissions: 'Can post threads yes/no' they are not allowed to attach files (mostly pics). The form attachment upload window gives the usual error message saying "<username>, You don't have permission blaa blaa". This is quite strange behavior since posting a thread is possible, but not attachments.

And I tested this several times, and the only setting that allows using attachments in the form is 'Can post threads: yes' for the particular forum. None of the other setting have effect on the issue. Is this a bug or am I doing something wrong?

Description of the form(s):

Form Action: Post New Thread, Allow Attachments

ndahiya 02-10-2012 12:56 PM

Quote:

Originally Posted by hh.org (Post 2296740)
I am using forms to create classifieds. Idea is to have uniform classifieds posting from all users on my forum. In order to force use of forms, I have prevented posting in the selling forums. Forms work very well and users are only able to leave classifieds via forms.

There is only one problem: if usergroup is not allowed to post threads (Forum Permissions: 'Can post threads yes/no' they are not allowed to attach files (mostly pics). The form attachment upload window gives the usual error message saying "<username>, You don't have permission blaa blaa". This is quite strange behavior since posting a thread is possible, but not attachments.

And I tested this several times, and the only setting that allows using attachments in the form is 'Can post threads: yes' for the particular forum. None of the other setting have effect on the issue. Is this a bug or am I doing something wrong?

Description of the form(s):

Form Action: Post New Thread, Allow Attachments


Thanks for checking this hh.org. i am also looking to use the forms as a means to a classifieds, and this functionality would be critical to me as well.

ndahiya

Toorak Times 02-11-2012 03:15 AM

Not Found

The requested URL /forms.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

Apache/2.2.19 (Unix) mod_ssl/2.2.19 OpenSSL/0.9.8e-fips-rhel5 mod_mono/2.6.3 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_jk/1.2.30 Server at www.tooraktimes.com.au Port 80


I get this when I click on the Forms tab on my site www.tooraktimes.com.au, can you tell me what I have done wrong please?

Cheers

Mick

trailertalk 02-12-2012 11:30 PM

So... Can this run with 4.1.10 and can users successfully upload photos of items for sale if using this form?

Outside of that it looks like what i'm looking for...

hh.org 02-13-2012 11:10 AM

Quote:

Originally Posted by hh.org (Post 2296740)
I am using forms to create classifieds. Idea is to have uniform classifieds posting from all users on my forum. In order to force use of forms, I have prevented posting in the selling forums. Forms work very well and users are only able to leave classifieds via forms.

There is only one problem: if usergroup is not allowed to post threads (Forum Permissions: 'Can post threads yes/no' they are not allowed to attach files (mostly pics). The form attachment upload window gives the usual error message saying "<username>, You don't have permission blaa blaa". This is quite strange behavior since posting a thread is possible, but not attachments.

And I tested this several times, and the only setting that allows using attachments in the form is 'Can post threads: yes' for the particular forum. None of the other setting have effect on the issue. Is this a bug or am I doing something wrong?

Description of the form(s):

Form Action: Post New Thread, Allow Attachments

I guess no one else is using Easy Forms this way? Or has the same problem? Or is reading this thread :)

Not sure if this is meaningful, but I am using vBulletin 4.1.5 PL3

deverill2010 02-18-2012 08:22 PM

I am using the latest version of this.

What I am wanting to do though is call a specific form within a CMS article. I have tried Iframes but it calls the whole VB page ASWELL as the form, how do I get it to just show the form?

poita 02-19-2012 01:11 PM

Seems a bit hit and miss.

Some users in usergroups can use it no worries at all, then other get error messages like the below.

Using vBulletin 4.1.10 btw ;)

Quote:

you do not have permission to access this page. This could be due to one of several reasons:

Xxxxxxx, Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

deverill2010 02-21-2012 12:42 PM

Quote:

Originally Posted by deverill2010 (Post 2300972)
I am using the latest version of this.

What I am wanting to do though is call a specific form within a CMS article. I have tried Iframes but it calls the whole VB page ASWELL as the form, how do I get it to just show the form?

Anyone? I'm kind of held up until I can get this sorted.

Trevor Matthews 02-22-2012 10:47 PM

Hi

Installed and working great on 4.1.10

I have read the first 20 pages and searched, I need to know how to automatically include the members email address in the form that is emailed to me.

Any way that can be done?

Trevor Matthews 02-23-2012 05:27 PM

It was in fact a simple thing to do.
Just use {bbuserinfo.email}

Has anyone got this mod working to allow attachments to be sent when the form is emailed out to me?

setishock 02-26-2012 01:20 PM

Thank you for porting this over to version 4. I was using the version for my VB3 forum and stopped being able to use it when I jumped versions.
Since I found a gallery program to house all my images I really needed something like this to make a artwork/wiki link setup. But I looked at this like I looked at the VB3 version and had that deer in the headlights look. I did remember you made a demo xml form for me to get started and it's still live in the old thread. I nabbed it and I'm off to save myself hours of having to generate all that by hand. With 120 albums that would be a lot of work. So combined with the embeded link generator module in the gallery and your mod for the forum this is going to be a snap.
THANK YOU!!!


All times are GMT. The time now is 09:06 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.02897 seconds
  • Memory Usage 1,874KB
  • 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)bbcode_code_printable
  • (3)bbcode_php_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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