View Full Version : New Posting Features - Easy Forms v4.x - Create a form or multiple forms without php or html knowledge
Pages :
1
2
3
4
5
[
6]
7
8
9
SpaceStar
04-16-2011, 12:14 AM
Superb. Working.
Just a simple question, maybe it's asked and answered before...
When a user has submitted the form, is there a way of validating the answered and show the result to user?
Thamks
bananalive
04-16-2011, 09:08 AM
Hello great hack!
Is it possible to make attachments mandatory?
Edit Form -> Form Hooks -> Form Hook: Before Submit:
$currentattaches = $db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "attachment WHERE posthash = '" . $db->escape_string($posthash) . "' AND userid = " . $vbulletin->userinfo['userid'] );
$attachcount = $currentattaches['countrows'];
if (!$attachcount)
{
$complete = false;
$customerror .= '<div class="blockrow"><div>Error, No attachments!</div></div>';
}
bananalive
04-16-2011, 09:15 AM
Hello,
i have two question to this mod:
1.)
How can i link the "new thread"-button of a forum to a form?
In a forum with the ID = 46 the "new thread" should be replaced by a form with the ID = 4
If someone like to create a new thread, he should use the form nr. 4, wich "Post a new Thread" in the forum.
2.)
The forum above MUST have a prefix, but not always the same prefix => users should be able to use a prefix that fits to the form.
I created a custom question with the following php-code inside:
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
if (!$form['forumid'])
{
$form['forumid'] = 46;
}
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
The question will be shown on the form, but there are no prefixes displayed! How can i get it running?
Can anyone give me a help please?
kr Chris
1. Vbulletin AdminCP -> New Plugin
Hook location: newthread_form_start
Php code:
if (in_array($forumid, array(1,2)))
{
header( 'Location: http://www.youriste.com/forums/misc.php?do=form&fid=8' ) ;
}
2. Add the following to the custom php question, do you get the right forumid (46) at the top of the form?
print_r($form['forumid']);
bananalive
04-16-2011, 09:16 AM
I am running vB4.0.7 currently and all forms have been taken from my 3.8.6 version.
I have just tried to add a new "e-mail to me" form, but I have several issues.
1. I have a prefilled username question (which doesn't align in the centre, like the others, but instead shows on the left under the question).
2. I enter an E-mail title and it doesn't save -I get diverted to http://www.myforum.com/#main-forums
3. The same thing happens when I select the tickbox for E-mail Form. (as number 2 above). Previously there was a box that appeared where I would enter the e-mail address that I want the form enailed to, this no longer shows.
4. Form Submit Limit Per User: doesn't save either
5. After Form is Submitted - Form submitted Message doesn't save.
Please can you help me with the above (or anyone else)? I desperately need your help in this, as I need to add these as soon as please.
I also have search engine friendly URLs and vBSEO installed.
Many Thanks.
It may be caused by vbseo, can you disable it on page misc.php and see if that has an effect?
bananalive
04-16-2011, 09:17 AM
What would be the easiest way to go about putting a character limit on text and textarea fields?
Edit Question, set maxlength
bananalive
04-16-2011, 09:19 AM
Dom,
Is there a way to group all of a member's threads created when submitting via this forms modification?
For example:
Lets say a form can be submitted multiple times by a member.
When visiting the forum section where the form is published, is it possible to have all of 'Member A's' threads grouped together (like a sub-forum) and all of Member B's responses grouped together?
Like this:
FORUM where form creates a new thread.
Member A
----first submitted response,
----second submitted response,
----Third...
Member B
----First submitted response,
Member C
----first submitted response,
----second submitted response,
SO, when a member clicks on this forum, they see a list of sections titled with the username. And if they click that name, they see all of the threads that person created by submitting the form.
I hope I explained this where it can be understood. :)
Thanks!
Kether
You will need a separate modification for this which alters thread list.
bananalive
04-16-2011, 09:20 AM
Superb. Working.
Just a simple question, maybe it's asked and answered before...
When a user has submitted the form, is there a way of validating the answered and show the result to user?
Thamks
By using quiz mode, php hooks or <vb:if condition=""> in custom output.
Za4a Tuner
04-16-2011, 01:24 PM
1. Vbulletin AdminCP -> New Plugin
Hook location: newthread_form_start
Php code:
if (in_array($forumid, array(1,2)))
{
header( 'Location: http://www.youriste.com/forums/misc.php?do=form&fid=8' ) ;
}This works fine, now the button "New Thread" roots to the form :D
but:
2. Add the following to the custom php question, do you get the right forumid (46) at the top of the form?
print_r($form['forumid']);This won't work :(
The forum-id is correct (it's from my liveforum)
Can you give me a "step by step" instruction, what i have to do, that a dropdown-field with the prefixes of a specified forum will be shown?
The form should create a new thread in forum-id = 46, and the prefixes of this forum sould be listed in the form, cause they are required for a new thread!
kr Chris
ascroft
04-16-2011, 09:29 PM
Hi there.
One thing I noted today, when the thread is moved to the correct forum, is that it doesn't update the 'header' type of information in the forum summary i.e. last post details, no. of threads/posts. The thread itself is there fine. Example is: http://www.shackchat.co.nz/listings/forumdisplay.php?64-PW_Wellington-Region
I am thinking this needs more code to be added to the plugin in possibly?
Many thanks
Mark
Try this...
AdminCP -> Plugins & Products -> Add New Plugin
Hook Location
newthread_post_complete
Title
Move Thread created by easy forms
PHP Code
if ($fid == 43)
{
$forumid = $q['forumid'];
$dataman =& datamanager_init('Thread', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$dataman->set_existing($threadinfo);
$dataman->setr('forumid', $forumid);
$dataman->pre_save();
if (count($dataman->errors) > 0)
{
foreach ($errors as $error)
{
$errorss .= $error. "<br />";
}
$errormessage = "Form failed to submit. The following error(s) occured: <br /> ".$errorss;
eval(standard_error($errormessage));
}
else
{
$dataman->save();
$foruminfo = fetch_foruminfo($forumid);
$threadinfo = fetch_threadinfo($newpost['threadid']);
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
}
}
Plugin is active
Yes
Change 43 to appropriate form id.
Darksome
04-18-2011, 03:19 PM
New to vB but slowly picking things up. I think I will find this mod extremely useful, but I'd like to know how I can add an 'insert image' button to the vbeditor question section, next to the email and insert link buttons for example.
Or indeed, can it be replaced with all the interface options as if posting a new thread such as; post icons and the tag box?
Cheers
Cadellin
04-21-2011, 07:22 AM
Firstly once again this is a fantastic mod! However I'm having some problems using this in conjunction with the GlowHost Anti-Spam when outputting a form to a thread as the anti-spam auto-moderates it as it contains URLs and the submitting users are normally new members to my site.
The easiest way around this would be have created threads all assigned to a single user rather than the user who submitted it or Unregistered. Is that possible though?
Thanks for any help :)
ascroft
04-22-2011, 05:30 AM
Dom, just noted that when I manually moved a thread just now it does update the post count etc. and correctly show the most recent post in the preview - even though it was an earlier post that I moved - so hopeful there is an easy bit of code to add to make this happen as part of the plugin - thanks.
Mark
Hi there.
One thing I noted today, when the thread is moved to the correct forum, is that it doesn't update the 'header' type of information in the forum summary i.e. last post details, no. of threads/posts. The thread itself is there fine. Example is: http://www.shackchat.co.nz/listings/forumdisplay.php?64-PW_Wellington-Region
I am thinking this needs more code to be added to the plugin in possibly?
Many thanks
Mark
Bruno Pisarek
04-22-2011, 06:43 AM
Hi,
your mod works like a charme in vb 4.1.3 - thanks! But.. ;)
The function ?Question Typest to Hide in Form Results Poll? is very useful for me. But I miss a function like ?Question Typest to Hide in Form Results Table?! Can you tell me, if it would be possible?
The view is not very clearly arranged if a user writes to many text in the "Field using vBulletin Editor".
Is it possible to hide a field in the table view?
Best regards,
Bruno
bananalive
04-22-2011, 12:59 PM
Hi,
your mod works like a charme in vb 4.1.3 - thanks! But.. ;)
The function ?Question Typest to Hide in Form Results Poll? is very useful for me. But I miss a function like ?Question Typest to Hide in Form Results Table?! Can you tell me, if it would be possible?
The view is not very clearly arranged if a user writes to many text in the "Field using vBulletin Editor".
Is it possible to hide a field in the table view?
Best regards,
Bruno
Added it as an option in attached file in Vbulletin Options -> Easy Form Options
bananalive
04-22-2011, 01:01 PM
Dom, just noted that when I manually moved a thread just now it does update the post count etc. and correctly show the most recent post in the preview - even though it was an earlier post that I moved - so hopeful there is an easy bit of code to add to make this happen as part of the plugin - thanks.
Mark
In plugin, find
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
Add below
build_thread_counters($newpost['threadid']);
build_forum_counters($forumid);
bananalive
04-22-2011, 01:04 PM
Firstly once again this is a fantastic mod! However I'm having some problems using this in conjunction with the GlowHost Anti-Spam when outputting a form to a thread as the anti-spam auto-moderates it as it contains URLs and the submitting users are normally new members to my site.
The easiest way around this would be have created threads all assigned to a single user rather than the user who submitted it or Unregistered. Is that possible though?
Thanks for any help :)
Edit Form -> Form Hook: Before Submit:
$vbulletin->userinfo['userid'] = 3;
Change 3 to the appropriate userid. (0 for unregistered)
bananalive
04-22-2011, 01:05 PM
New to vB but slowly picking things up. I think I will find this mod extremely useful, but I'd like to know how I can add an 'insert image' button to the vbeditor question section, next to the email and insert link buttons for example.
Or indeed, can it be replaced with all the interface options as if posting a new thread such as; post icons and the tag box?
Cheers
AdminCP -> vBulletin Options -> BB Code Settings -> Allow [IMG] Code in Non Forum Specific Areas -> Yes
bananalive
04-22-2011, 01:07 PM
This won't work :(
The forum-id is correct (it's from my liveforum)
Can you give me a "step by step" instruction, what i have to do, that a dropdown-field with the prefixes of a specified forum will be shown?
The form should create a new thread in forum-id = 46, and the prefixes of this forum sould be listed in the form, cause they are required for a new thread!
kr Chris
Try this php code instead:
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
$forumid = $form['forumid'] = 46;
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
Darksome
04-22-2011, 03:15 PM
AdminCP -> vBulletin Options -> BB Code Settings -> Allow [IMG] Code in Non Forum Specific Areas -> Yes
Thanks so much! This is such a wonderfully good mod! :up:
zushiba
04-22-2011, 03:38 PM
I found a small bug when using bbocde in a section title. We needed to make the Section titles bigger to stand out more and this is the result.
http://i.imgur.com/6pMtz.jpg
It doesn't appear to affect the functionality.
bananalive
04-22-2011, 05:08 PM
I found a small bug when using bbocde in a section title. We needed to make the Section titles bigger to stand out more and this is the result.
http://i.imgur.com/6pMtz.jpg
It doesn't appear to affect the functionality.
Fixed in attached file, or use
[size=3]
rather than
[size="3"]
Bruno Pisarek
04-22-2011, 05:30 PM
Added it as an option in attached file in Vbulletin Options -> Easy Form Options
You are awesome - happy easter!
Best regards,
Bruno
ascroft
04-22-2011, 07:01 PM
Great stuff - many thanks. :)
In plugin, find
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
Add below
build_thread_counters($newpost['threadid']);
build_forum_counters($forumid);
ascroft
04-22-2011, 07:06 PM
Hi
Just wondering how viable it would be to have Easy Forms run with this style?
How VB have implemented this looks rather different from their other templates.....
Guess I will also ask the iphone/android apps possibility?
Cheers
Mark
vidmarc
04-26-2011, 09:56 AM
Can this mod in any way be used to add product pages with custom fields to the vB4 CMS?
crowshead
04-27-2011, 02:54 AM
i am having the form submitted to a forum that is moderated. but when the form gets submitted, the new thread shows up??
how can i have it go into the forum, but be moderated?
basically the form is ignoring forum rules - forum is setup to moderate all threads and posts, but form results get posted as new threads without being moderated.
bestword
04-27-2011, 06:47 AM
When i Export forms as EXCEL,the data in EXCEL will error, i think it's because the unicode text data had be error export. would it to be repaired? Thanks.
Mimirswell
04-27-2011, 02:25 PM
I have two separate forms where the first form redirects to the second. The first form creates a new thread and I want the second form to add a post to that thread when completed, how do I obtain the previous threadid (if possible)?
macroforum
04-28-2011, 07:53 AM
Thanks for this beautiful mod!
Installed and nominated :)
I have only one problem, see attached pic please: the form results poll layout have some problems.
Thanks for help me
Antonio
iMaverick
04-28-2011, 11:40 PM
Hey, really cool mod!
I have some questions though (I'm sure it's because I'm just incredibly stupid about all this).
What would I do to change the "Form" in the Navbar?
If I have a template edit I need to do for my Shoutbox to show up, where would I add these so in all these places my users could still be in the CBox (I've been just putting it below
{vb:raw navbar}: but I haven't found that in any of the easyform templates....what am I missing?
Harelin
04-29-2011, 03:56 AM
I receive a script error when attempting to click the 'Add more options' link to add additional answers to a multiple choice question that already exists. It happens in all browsers, and this is the error below. I've verified everything was uploaded properly, and everything else seems to work fine.
Message: Object required
Line: 196
Char: 3
Code: 0
URI: http://www.domain.com/home/clientscript/easyforms.js?v=413
Message: Object required
Line: 196
Char: 3
Code: 0
URI: http://www.domain.com/home/clientscript/easyforms.js?v=413
Za4a Tuner
05-01-2011, 10:10 AM
Try this php code instead:
[....]
THANKS! That did the job, works fine ;)
Do you have a paypal-account?
If yes, please let me know your mailadress, than i will donate a few pounds for your addon and the great support
bananalive
05-02-2011, 02:33 PM
i am having the form submitted to a forum that is moderated. but when the form gets submitted, the new thread shows up??
how can i have it go into the forum, but be moderated?
basically the form is ignoring forum rules - forum is setup to moderate all threads and posts, but form results get posted as new threads without being moderated.
Normally people are posting about the opposite..
Find and delete in Plugin Easy Forms Part 1
$foruminfo['moderatenewthread'] = 0;
$foruminfo['moderatenewpost'] = 0;
$foruminfo['moderateattach'] = 0;
and make sure plugin Force visible post is inactive
bananalive
05-02-2011, 02:35 PM
Hi
Just wondering how viable it would be to have Easy Forms run with this style?
How VB have implemented this looks rather different from their other templates.....
Guess I will also ask the iphone/android apps possibility?
Cheers
Mark
I haven't used the mobile style.
If it's just different css with the mobile style, then it should work fine. Although it might be slow loading on a phone..
It wont be compatible with the mobile apps.
bananalive
05-02-2011, 02:36 PM
Can this mod in any way be used to add product pages with custom fields to the vB4 CMS?
No, sorry.
bananalive
05-02-2011, 02:38 PM
When i Export forms as EXCEL,the data in EXCEL will error, i think it's because the unicode text data had be error export. would it to be repaired? Thanks.
Can you give me an example of the unicode characters which cause this problem?
bananalive
05-02-2011, 02:39 PM
I have two separate forms where the first form redirects to the second. The first form creates a new thread and I want the second form to add a post to that thread when completed, how do I obtain the previous threadid (if possible)?
utilise the php variable $threadid. It gets set after the thread is created by easy forms
bananalive
05-02-2011, 02:46 PM
Thanks for this beautiful mod!
Installed and nominated :)
I have only one problem, see attached pic please: the form results poll layout have some problems.
Thanks for help me
Antonio
The images in the questions are causing this problem.
Fixed in attached file...
bananalive
05-02-2011, 02:51 PM
THANKS! That did the job, works fine ;)
Do you have a paypal-account?
If yes, please let me know your mailadress, than i will donate a few pounds for your addon and the great support
Click Support Developer (https://vborg.vbsupport.ru/showthread.php?p=2190611&nojs=1#gtdonate) on the right hand side of the first post or donate directly to:
live.banana@gmail.com
Thanks :)
Za4a Tuner
05-02-2011, 04:15 PM
Thanks :)done ;)
DevinM
05-06-2011, 02:06 AM
I have a form setup to submit a new thread that attaches a xls spreadsheet. The forum is hidden however I setup the required users to be able to post as well as post attachments to it.
They fill the form out and when they click manage attachment it gives them a permission error. Admins can do it but not anyone else.
Its really odd, the other forms post fine to hidden forums so it has to be something to do with the attachments. Ive enabled them everywhere I can think to do so.
Am I missing a setting somewhere?
macroforum
05-06-2011, 06:48 AM
The images in the questions are causing this problem.
Fixed in attached file...
Perfect now, thanks!!!
Antonio
macroforum
05-06-2011, 11:08 AM
One question: it's possible shows only Form results poll and to hide Form results and form results table?
I'm using this beatiful Mod like photo contest system voting....and the users don't must see who has voted but only the final votes.
Sorry for my bad english
Thanks
Antonio
midnz
05-06-2011, 08:27 PM
Using the Quiz mode:
Some correct answers are being outputted as incorrect because the Correct Answer field character max length needs increasing for my purposes. The correct answer is cut off after 60 characters.
How can I increase the maximum characters allowed in the Correct Answer field please?
bananalive
05-07-2011, 08:52 PM
Using the Quiz mode:
Some correct answers are being outputted as incorrect because the Correct Answer field character max length needs increasing for my purposes. The correct answer is cut off after 60 characters.
How can I increase the maximum characters allowed in the Correct Answer field please?
Use attached file
bananalive
05-07-2011, 09:02 PM
I have a form setup to submit a new thread that attaches a xls spreadsheet. The forum is hidden however I setup the required users to be able to post as well as post attachments to it.
They fill the form out and when they click manage attachment it gives them a permission error. Admins can do it but not anyone else.
Its really odd, the other forms post fine to hidden forums so it has to be something to do with the attachments. Ive enabled them everywhere I can think to do so.
Am I missing a setting somewhere?
Enable Attachments for the other non-admins usergroups for that forum. It should display the attachments even without forum viewing permission.
bananalive
05-07-2011, 09:17 PM
One question: it's possible shows only Form results poll and to hide Form results and form results table?
I'm using this beatiful Mod like photo contest system voting....and the users don't must see who has voted but only the final votes.
Sorry for my bad english
Thanks
Antonio
There is not an option to disable form results table.
Edit Plugin: Easy Forms Part 3
Find line
if ($_REQUEST['do'] == 'formresults_table')
Replace with
if ($_REQUEST['do'] == 'formresults_table' && $disable)
Find line
if ($_REQUEST['do'] == 'formresults')
Replace with
if ($_REQUEST['do'] == 'formresults' && $disable)
midnz
05-08-2011, 12:45 AM
Using the Quiz mode:
Some correct answers are being outputted as incorrect because the Correct Answer field character max length needs increasing for my purposes. The correct answer is cut off after 60 characters.
How can I increase the maximum characters allowed in the Correct Answer field please?
Use attached file
That worked perfectly! Thank-you very much :)
macroforum
05-08-2011, 07:20 AM
There is not an option to disable form results table.
Edit Plugin: Easy Forms Part 3
Find line
if ($_REQUEST['do'] == 'formresults_table')
Replace with
if ($_REQUEST['do'] == 'formresults_table' && $disable)
Find line
if ($_REQUEST['do'] == 'formresults')
Replace with
if ($_REQUEST['do'] == 'formresults' && $disable)
Thanks, perfect! :)
Antonio
Please can someone tell me how I could phrase a form hook for the following:
I intend to have 22 identical drop-down fields with 22 answers. I need to validate this before submission to ensure that each answer is selected only once. I.E. each answer will be selected once. Apologies but my PHP knowledge is not good, any help would be appreciated.
DevinM
05-08-2011, 07:04 PM
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?
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.
$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
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.
$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
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
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.
SN1PERCITY
05-12-2011, 09:46 PM
hey can some one help me put this on my forum. please and thank you.. i file zilla up but where do i upload
bananalive
05-16-2011, 09:54 PM
hey can some one help me put this on my forum. please and thank you.. i file zilla up but where do i upload
AdminCP -> Import Product File.
bananalive
05-16-2011, 09:55 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.
Form xml files should be cross compatible between v4.x and v3.x
bananalive
05-16-2011, 09:58 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
http://img842.imageshack.us/img842/1176/someniquestion.jpg
Form Results Table
http://img402.imageshack.us/img402/8348/formresultstable.jpg
Perhaps add checkboxes to
AdminCP -> VBulletin Options -> Easy Form Options -> Question Types to Hide in Form Results Table
Although this will affect all your forms
bananalive
05-16-2011, 10:02 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.
I dont have keycaptcha in my vBulletin Options, is it a custom modification you have added?
bananalive
05-16-2011, 10:03 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
Yes, select the Form Action as 'Create a New Thread', and then there will be an option to allow attachments
Is there a way to use the created forms on other pages within vbulletin. If so what is the code i would drop into a page to display a certain form i created. I appologize if this question has already been answered. Dont have the time to sift through 88 pages.
bananalive
05-18-2011, 03:37 PM
Is there a way to use the created forms on other pages within vbulletin. If so what is the code i would drop into a page to display a certain form i created. I appologize if this question has already been answered. Dont have the time to sift through 88 pages.
Embed using <iframe>
http://www.yourforum.com/forums/misc.php?do=form&fid=2&embed=1
Change 2 to the appropriate form id.
Thank you. Very much appreciated. Its a bit tricky to get the iframe to align the form correctly. I will have to tinker with it a bit. Is there an easier way to code the form in. Possibly in PHP.
I ended up getting it all lined up, but this method seems like it will have issues with different browsers and resolutions. I would prefer to use php to drop the form in. Is there a variable i can use or a hook i can create in order to show to form on any page.
midnz
05-18-2011, 11:01 PM
Perhaps add checkboxes to
AdminCP -> VBulletin Options -> Easy Form Options -> Question Types to Hide in Form Results Table
Although this will affect all your forms
Thanks :). I have added checkboxes so that they're hidden in Form Results Tables.
I wondered if it was possible to have checkbox answers converted to unique numbers and then have all of those unique numbers totaled?
Example:
Question: What colours.....?
Checkbox Answers: 1.Blue 2.Green 4.Yellow 8.White 16.Pink 32.Red 64.Black 128.Purple 256.etc etc etc (the numbers would need to be invisible)
Somebody selecting Yellow, Black and Blue would cause the answer in the Form Results Table to be 69
That would make it easy to know which checkboxes were selected because only 4 + 1 + 64 = 69
Please can someone tell me how I could phrase a form hook for the following:
I intend to have 22 identical drop-down fields with 22 answers. I need to validate this before submission to ensure that each answer is selected only once. I.E. each answer will be selected once. Apologies but my PHP knowledge is not good, any help would be appreciated.
Anyone?
whitey92lx
05-19-2011, 04:53 PM
awesome!
helwoe
05-24-2011, 03:22 AM
Is there a way to tweak this code to make multi-select list?
$answer .= '<select name="'.$formbit[id].'">';
$answer .= '<option></option>';
$thisanswer = $q_{$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 ($row[username] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[username].'</option>';
}
$answer .= '</select>';
Kapeket
05-24-2011, 04:08 AM
How about a way to have a specific form open from the nav button directly?
Not the list per say.
Thanks!
Tahooma
05-24-2011, 05:40 PM
Thank you for your reply bananalive!
Yes, select the Form Action as 'Create a New Thread', and then there will be an option to allow attachments
For us it is very important that the data are not visible for other users.
Is there any other way to upload the pics whereby no new threat will be be opend and so the date are not visible vor any other persons?
Regards
Harald
clubvr4
05-25-2011, 10:35 AM
Hi,
I'm having some problems with prefix.
I am using the following code in my custom question "choose prefix"
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
if (!$form['forumid'])
{
$form['forumid'] = xx;
}
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
Where XX is the destination forum of the form.
under form actions i have selected "no prefix", when i go to my form, i can see the dropdown with all the prefix for the destination forum, but when i submit - no prefix is attached the the thread.
There are no custom hooks etc for this form.
Please advise.
clubvr4
05-25-2011, 10:45 AM
I've also tried using the following code, to no avail.
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
$forumid = $form['forumid'] = XX;
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
However,
using the above code, and the no attachments code you kindly provided me before - I find that when i click on attachments i do not have permissions to access to FUM..
$currentattaches = $db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "attachment WHERE posthash = '" . $db->escape_string($posthash) . "' AND userid = " . $vbulletin->userinfo['userid'] );
$attachcount = $currentattaches['countrows'];
if (!$attachcount)
{
$complete = false;
$customerror .= '<div class="blockrow"><div>Error, No attachments!</div></div>';
}
Removing either the no attachment code or the prefix select code allows me to once again open FUM.
Evertonized
05-25-2011, 10:47 AM
When I submit the form it says thanks for submitting and looks like it's worked. However the results show no one has submitted a form.
What could be the problem?
clubvr4
05-25-2011, 11:53 AM
Or, is there a widget out yet for using Forms with CMS?
Is there any method of CMS being used to display the forms?
clubvr4
05-25-2011, 01:58 PM
I've also tried using the following code, to no avail.
require_once(DIR . '/includes/functions_prefix.php');
$thisanswer = $q[$formbit[id]];
$forumid = $form['forumid'] = XX;
$prefix_options = fetch_prefix_html($form['forumid'], $thisanswer, true);
$answer = '<select name="' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">';
$answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>';
$answer .= $prefix_options;
$answer .= '</select>';
However,
using the above code, and the no attachments code you kindly provided me before - I find that when i click on attachments i do not have permissions to access to FUM..
$currentattaches = $db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "attachment WHERE posthash = '" . $db->escape_string($posthash) . "' AND userid = " . $vbulletin->userinfo['userid'] );
$attachcount = $currentattaches['countrows'];
if (!$attachcount)
{
$complete = false;
$customerror .= '<div class="blockrow"><div>Error, No attachments!</div></div>';
}
Removing either the no attachment code or the prefix select code allows me to once again open FUM.
/facepalm..
found #879 (https://vborg.vbsupport.ru/showpost.php?p=2105915&postcount=879)
All sorted now...
clubvr4
05-25-2011, 06:48 PM
Me again...
Its all working now, so im very happy - But, I am wondering....
I have 5 prefixes configured on the for sale forum, there are 3 forms being used to input threads into this forum. What i would like is that one of these forms, only presents 2 of the 5 prefixes, ensuring that people dont click one of the other 3 by mistake.
Is this possible somehow?
Cheers
helwoe
05-31-2011, 01:43 AM
Anyone?
Is there a way to tweak this code to make multi-select drop down list?
$answer .= '<select name="'.$formbit[id].'">';
$answer .= '<option></option>';
$thisanswer = $q_{$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 ($row[username] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[username].'</option>';
}
$answer .= '</select>';
KevinL
06-04-2011, 11:50 AM
I have this on a clients site. They have reviews setup in certain forums using this mod.
There is one forum though that the "post new review" button does not work. There is just a '1' after the forum URL. It is set up just like every other form forum.
Is there something I am over looking?
Any help would be great!
Thanks :)
scubasteve3
06-04-2011, 06:57 PM
Sorry, I have not been able to read through all 89 pages of this thread. Great mod! I was wondering, is there a way to change the nav link. I want to change the name from the default "Forms". Also, is it possible to make this a button somewhere on the page instead of in the navbar. Thanks!
bananalive
06-05-2011, 03:27 PM
Sorry, I have not been able to read through all 89 pages of this thread. Great mod! I was wondering, is there a way to change the nav link. I want to change the name from the default "Forms". Also, is it possible to make this a button somewhere on the page instead of in the navbar. Thanks!
AdminCP -> Edit Phrase -> forms
There is also a link in navbar under 'Quick Links'
Or post the html link in one of your templates where you want it.
bananalive
06-05-2011, 03:29 PM
I have this on a clients site. They have reviews setup in certain forums using this mod.
There is one forum though that the "post new review" button does not work. There is just a '1' after the forum URL. It is set up just like every other form forum.
Is there something I am over looking?
Any help would be great!
Thanks :)
I'm not sure how you've setup it, but check the html or plugin which edits the url.
bananalive
06-05-2011, 03:39 PM
Is there a way to tweak this code to make multi-select list?
$answer .= '<select name="'.$formbit[id].'">';
$answer .= '<option></option>';
$thisanswer = $q_{$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 ($row[username] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[username].'</option>';
}
$answer .= '</select>';
Anyone?
$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>';
bananalive
06-05-2011, 03:41 PM
Me again...
Its all working now, so im very happy - But, I am wondering....
I have 5 prefixes configured on the for sale forum, there are 3 forms being used to input threads into this forum. What i would like is that one of these forms, only presents 2 of the 5 prefixes, ensuring that people dont click one of the other 3 by mistake.
Is this possible somehow?
Cheers
Yes, but you'll have to use the form hooks.
bananalive
06-05-2011, 03:42 PM
When I submit the form it says thanks for submitting and looks like it's worked. However the results show no one has submitted a form.
What could be the problem?
Have you selected 'Save to Database' as Form Action?
KevinL
06-05-2011, 03:42 PM
I'm not sure how you've setup it, but check the html or plugin which edits the url.
I'll be honest, I don't know how it was set up. I wasn't the one that installed it.
From what I can see there is nothing in the "forumdisplay" template. Which plugin would it be? The form is created and pointing to the correct forum. Just the new thread (review) button does not work.
Thank you for the help
bananalive
06-05-2011, 04:05 PM
I'll be honest, I don't know how it was set up. I wasn't the one that installed it.
From what I can see there is nothing in the "forumdisplay" template. Which plugin would it be? The form is created and pointing to the correct forum. Just the new thread (review) button does not work.
Thank you for the help
Have a look down the plugin list. It might be called on newreply_form_complete or similar plugin.
Vitaris
06-05-2011, 04:20 PM
Firstly just wanted to say that I absolutely love this addon. It's saved me a ton of trouble on my Warcraft guild forums for applications. So BL, thank you tons! It even works flawlessly for me after upgrading to vB 4.1, a move I was hesitant to make for addons like this.
I do have a question, though. Is there a way to pull the forum's internal date and post it in the thread title? I'm looking for something like a M d Y format auto detected from the boards, but I can't find anything relevant in this thread. Sorry if I've missed it! I have a forum that's in dire need of some structure in the title. :)
Thank you for an awesome mod!
bananalive
06-05-2011, 04:40 PM
Firstly just wanted to say that I absolutely love this addon. It's saved me a ton of trouble on my Warcraft guild forums for applications. So BL, thank you tons! It even works flawlessly for me after upgrading to vB 4.1, a move I was hesitant to make for addons like this.
I do have a question, though. Is there a way to pull the forum's internal date and post it in the thread title? I'm looking for something like a M d Y format auto detected from the boards, but I can't find anything relevant in this thread. Sorry if I've missed it! I have a forum that's in dire need of some structure in the title. :)
Thank you for an awesome mod!
Cheers.
Edit Form -> Form PHP Hooks -> Form Hook: Before Submit:
$threadtitle .= vbdate(" M d Y", TIMENOW);
Vitaris
06-05-2011, 04:46 PM
Thank you for the fast reply, it works perfectly! :D Best mod ever. :D
ascroft
06-06-2011, 03:30 AM
Hi there Dom.
I have the following code in a form question (thanks to you! :-)) but I would like to control the order of the items in the drop down list - only 2 there for now but will have have maybe 30 or so soon. Ideally I would like total control as I want to order geographically which only I know. Is this possible please? I was thinking I could keep the order in some kind of variable?
Many thanks
Mark
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($vbulletin->forumcache AS $forumid => $forum)
{
if (!in_array($forumid, array(61,56)))
{
continue;
}
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
bananalive
06-08-2011, 09:02 AM
Hi there Dom.
I have the following code in a form question (thanks to you! :-)) but I would like to control the order of the items in the drop down list - only 2 there for now but will have have maybe 30 or so soon. Ideally I would like total control as I want to order geographically which only I know. Is this possible please? I was thinking I could keep the order in some kind of variable?
Many thanks
Mark
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($vbulletin->forumcache AS $forumid => $forum)
{
if (!in_array($forumid, array(61,56)))
{
continue;
}
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
Yes, but you'll have to create new array to change order, see below example:
(This would show Forumid 2, Forumid 10, then Forumid 1)
$newarray = array(
2 => $vbulletin->forumcache['2'],
10 => $vbulletin->forumcache['10'],
1 => $vbulletin->forumcache['1'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
ascroft
06-08-2011, 09:30 AM
Thanks a lot - works perfectly. Much appreciated.
Mark
clubvr4
06-08-2011, 01:00 PM
Yes, but you'll have to use the form hooks.
Cheers for responding.
Would you be able to advise, my hook skills are limited to zero.
Thanks
Fuji1004
06-10-2011, 05:25 PM
Nice mod, thanks for that.
But one question: I want to translate the following phrase, but I can't find it by searching all phrases:
"Error, you have exceeded limit for number of times this form can be submitted."
Where can I find this phrase?
Thanks for help
steven s
06-12-2011, 02:23 PM
I use the address field.
When I view results, the address is there.
When I go to edit a filled form, there may be a single number or letter in address, city and state.
If I save, that information is also saved. ????
bananalive
06-12-2011, 03:01 PM
I use the address field.
When I view results, the address is there.
When I go to edit a filled form, there may be a single number or letter in address, city and state.
If I save, that information is also saved. ????
Try attached file...
bananalive
06-12-2011, 03:03 PM
Nice mod, thanks for that.
But one question: I want to translate the following phrase, but I can't find it by searching all phrases:
"Error, you have exceeded limit for number of times this form can be submitted."
Where can I find this phrase?
Thanks for help
Edit Phrase: form_error_limit_exceeded
steven s
06-12-2011, 03:15 PM
Try attached file...That did it. :)
Thanks!
Excellent mod. :up:
I spoke too soon.
Zip Code is now State
State is now City
City is now Address line 2
bananalive
06-12-2011, 03:55 PM
That did it. :)
Thanks!
Excellent mod. :up:
I spoke too soon.
Zip Code is now State
State is now City
City is now Address line 2
Ah, yes forgot line 2 could be optional. Should be fixed in attached file.
steven s
06-12-2011, 04:34 PM
Ah, yes forgot line 2 could be optional. Should be fixed in attached file.Marvelous!
Looks good now.
This mod is a life saver. I used to use form mail but bots were relentless.
Now I can limit who can view and submit the form.
Thanks again!
Rabby
06-13-2011, 10:27 PM
Is it possible to display a form before purchasing a paid subscription? Like you select a paid subscription, and just before you're redirected to the payment site, you'll get a form displayed which must be accepted/filled with information.
Hendrik83
06-14-2011, 08:07 AM
The editor is not working anymore with the vb 4.1.4 update.
gr8whtd0pe
06-14-2011, 10:24 PM
The editor is not working anymore with the vb 4.1.4 update.
I had to change mine to a multi-line text box. :(
Shadow09
06-15-2011, 07:33 AM
The editor is not working anymore with the vb 4.1.4 update.
Same here... Disabled til fix.
Crotan
06-15-2011, 07:54 PM
I had to change mine to a multi-line text box. :(
Same here... Disabled til fix.
Yea i guess we could could go back to the multi line text box, but having the vb editor would be ideal. Hoping for a fix soon!
David Hodgkins
06-17-2011, 04:20 PM
re: 4.1.4 incompatability:
I was hoping to install this today. Please let us know the timing of the fix.
bananalive
06-18-2011, 06:37 PM
Attached version should work with vBulletin v4.1.4 (with the new vBulletin editor)
Installation
Import in product file to admincp. (allow overwrite)
No further edits required.
Hendrik83
06-18-2011, 06:48 PM
Thanks for the update!
Not working on my forum...
thetgc
06-18-2011, 07:05 PM
Thanks for the update!
Not working on my forum...
+1, updated mine but still not working :(
David Hodgkins
06-18-2011, 11:55 PM
Thanks for the update!
Not working on my forum...
First of all, thank you for jumping on this fix.
I'm going to wait for someone to post a successful install before I attempt this.
Mine will be a first-time install so I'd prefer it go in clean...
:)
ascroft
06-19-2011, 01:24 AM
Hi there. I have finally got round to making the change to launch the form for more locations and in my plugin I have the following context, but it doesn't launch the easy form - just the basic std post. Do I have the syntax wrong?
Many thanks.
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183 ,184,186,188,190,191,193,56,194,195,197)))
{
header( 'Location:/listings/misc.php?do=form&fid=1' ) ;
}
btw, in the custom question on the form, I have the following (don't think it is related) You advised me on this to be able to order the forums in the drop down list the way I wanted.
$newarray = array(
158 => $vbulletin->forumcache['158'],
160 => $vbulletin->forumcache['160'],
161 => $vbulletin->forumcache['161'],
162 => $vbulletin->forumcache['162'],
163 => $vbulletin->forumcache['163'],
165 => $vbulletin->forumcache['165'],
167 => $vbulletin->forumcache['167'],
168 => $vbulletin->forumcache['168'],
169 => $vbulletin->forumcache['169'],
170 => $vbulletin->forumcache['170'],
172 => $vbulletin->forumcache['172'],
174 => $vbulletin->forumcache['174'],
175 => $vbulletin->forumcache['175'],
177 => $vbulletin->forumcache['177'],
179 => $vbulletin->forumcache['179'],
181 => $vbulletin->forumcache['181'],
61 => $vbulletin->forumcache['61'],
182 => $vbulletin->forumcache['182'],
183 => $vbulletin->forumcache['183'],
184 => $vbulletin->forumcache['184'],
186 => $vbulletin->forumcache['186'],
188 => $vbulletin->forumcache['188'],
190 => $vbulletin->forumcache['190'],
191 => $vbulletin->forumcache['191'],
193 => $vbulletin->forumcache['193'],
56 => $vbulletin->forumcache['56'],
194 => $vbulletin->forumcache['194'],
195 => $vbulletin->forumcache['195'],
197 => $vbulletin->forumcache['197'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
deverill2010
06-19-2011, 06:51 AM
Will this be fixed soon? As I need the form for a quiz very soon :(
bananalive
06-19-2011, 08:31 AM
+1, updated mine but still not working :(
Will this be fixed soon? As I need the form for a quiz very soon :(
What isn't working for you? Do you get an error message? What browser are you using?
Which page is it? 'viewing form'?
Tested on vbulletin v4.1.4 in Chrome browser and it's working for me
bananalive
06-19-2011, 08:39 AM
Hi there. I have finally got round to making the change to launch the form for more locations and in my plugin I have the following context, but it doesn't launch the easy form - just the basic std post. Do I have the syntax wrong?
Many thanks.
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183,184,186,188,190,191 ,193,56,194,195,197)))
{
header( 'Location:/listings/misc.php?do=form&fid=1' ) ;
}
btw, in the custom question on the form, I have the following (don't think it is related) You advised me on this to be able to order the forums in the drop down list the way I wanted.
$newarray = array(
158 => $vbulletin->forumcache['158'],
160 => $vbulletin->forumcache['160'],
161 => $vbulletin->forumcache['161'],
162 => $vbulletin->forumcache['162'],
163 => $vbulletin->forumcache['163'],
165 => $vbulletin->forumcache['165'],
167 => $vbulletin->forumcache['167'],
168 => $vbulletin->forumcache['168'],
169 => $vbulletin->forumcache['169'],
170 => $vbulletin->forumcache['170'],
172 => $vbulletin->forumcache['172'],
174 => $vbulletin->forumcache['174'],
175 => $vbulletin->forumcache['175'],
177 => $vbulletin->forumcache['177'],
179 => $vbulletin->forumcache['179'],
181 => $vbulletin->forumcache['181'],
61 => $vbulletin->forumcache['61'],
182 => $vbulletin->forumcache['182'],
183 => $vbulletin->forumcache['183'],
184 => $vbulletin->forumcache['184'],
186 => $vbulletin->forumcache['186'],
188 => $vbulletin->forumcache['188'],
190 => $vbulletin->forumcache['190'],
191 => $vbulletin->forumcache['191'],
193 => $vbulletin->forumcache['193'],
56 => $vbulletin->forumcache['56'],
194 => $vbulletin->forumcache['194'],
195 => $vbulletin->forumcache['195'],
197 => $vbulletin->forumcache['197'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
Put a space after Location:
e.g.
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183 ,184,186,188,190,191,193,56,194,195,197)))
{
header('Location: /listings/misc.php?do=form&fid=1');
}
Hendrik83
06-19-2011, 09:19 AM
What isn't working for you? Do you get an error message? What browser are you using?
Which page is it? 'viewing form'?
Tested on vbulletin v4.1.4 in Chrome browser and it's working for me
Just overwritten with the new version.
And no template edits.
On chrome.
130181
bananalive
06-19-2011, 10:03 AM
vBulletin v4.1.4, try attached file for ckeditor
Let me know whether this version is working or not.
Hendrik83
06-19-2011, 11:45 AM
Not working same result.
Markus79
06-19-2011, 12:02 PM
Not working same result.
same 4 me
thetgc
06-19-2011, 07:17 PM
same on firefox
HolyKiller
06-19-2011, 09:14 PM
Feature request: Create thread in section based on answer
Descripton:
In one forum, you have 5 sub-forums and 1 Form. In the form are several questions and one of them is radiobutton / dropdown select question. Based on the choice, a new thread is created in specific sub-forum.
Example:
Sub-Forums
-> Blue
-> Red
-> Green
-> Black
Question:
What color is your <whatever>:
Answers:
Black, Red, Green, Black <-- user choose "Black" in radiobutton question
Result:
New thread is created in sub-forum "Black"
And something similiar for prefixes will be nice too. I mean .. "Set prefix based on answer". So for example:
Question:
What is the type of your report?
Answers:
Global bug, Missing "thing", Connection problem, Other <-- user choose "Connection problem"
Result:
New thread is created with prefix "Conenction"
Ofcourse the prefixes will be based on already created and predefined prefixes in specific forum, so for each answer i can assign existing prefix.
Shadow09
06-20-2011, 06:54 AM
Not working same result.
Using your fix.
Hendrik83
06-20-2011, 05:43 PM
Clean install also not working.
No errors. :confused:
http://img41.imageshack.us/img41/2306/0b3c13569d6840c6b311483.png
Nocturnal222
06-22-2011, 02:26 AM
Everything is good and works awesome, just one problem... no matter how i try i can't make it send a FORM result to e-mail. So if anyone can help or tell me how to do it i'll be thankful.
David Hodgkins
06-22-2011, 05:28 PM
Everything is good and works awesome, just one problem... no matter how i try i can't make it send a FORM result to e-mail. So if anyone can help or tell me how to do it i'll be thankful.
What version of the vBulletin are you using? I'm still holding off installing, as I don't see anywhere above where it says it works now with 4.1.4...
:)
Welshy2008
06-22-2011, 05:45 PM
BA,
I would appreciate your help...
When I upgraded to 4.1.3 - my pluggins disappeared (the ones that I did to change the standard reply text to text of my choice).
The other pluggin was to redirect the user to my form which would then be submitted a post in a specified thread.
I have redone the "renaming of the reply tab text" pluggin and that works. BUT, the one that redirects the user to my form (before it submits as a post) is not working.
I am now using vBSEO 3.6.0 too, and I have also tried this with the vBSEO off, but still no joy.
Can you have a look at the code that I am using and possibly tell me where I have gone wrong please?
I have the following:
Product: Easy Forms
Hook Location: newreply_form_start
Title: Easy Forms Reply Button
Execution Order: 5
Plugin PHP Code:
if (in_array($threadinfo[threadid], array(ThreadID1)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=1') ;
}
if (in_array($threadinfo[threadid], array(ThreadID2)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=2') ;
}
Plugin is Active: Yes
Many Thanks,
Welshy.
PS: All the permissions appear to be set correctly.
HolyKiller
06-23-2011, 01:41 PM
What version of the vBulletin are you using? I'm still holding off installing, as I don't see anywhere above where it says it works now with 4.1.4...
:)
I'm using vB 4.1.4 and i didn't catch any error. :)
bananalive
06-23-2011, 02:10 PM
BA,
I would appreciate your help...
When I upgraded to 4.1.3 - my pluggins disappeared (the ones that I did to change the standard reply text to text of my choice).
The other pluggin was to redirect the user to my form which would then be submitted a post in a specified thread.
I have redone the "renaming of the reply tab text" pluggin and that works. BUT, the one that redirects the user to my form (before it submits as a post) is not working.
I am now using vBSEO 3.6.0 too, and I have also tried this with the vBSEO off, but still no joy.
Can you have a look at the code that I am using and possibly tell me where I have gone wrong please?
I have the following:
Product: Easy Forms
Hook Location: newreply_form_start
Title: Easy Forms Reply Button
Execution Order: 5
Plugin PHP Code:
if (in_array($threadinfo[threadid], array(ThreadID1)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=1') ;
}
if (in_array($threadinfo[threadid], array(ThreadID2)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=2') ;
}
Plugin is Active: Yes
Many Thanks,
Welshy.
PS: All the permissions appear to be set correctly.
Line:
if (in_array($threadinfo[threadid], array(ThreadID1)))
should be
if (in_array($threadinfo[threadid], array(1)))
Hendrik83
06-23-2011, 03:22 PM
Why is the update not working for some of us?
There is no editor and i updated to the latest version.
David Hodgkins
06-23-2011, 08:08 PM
Why is the update not working for some of us?
There is no editor and i updated to the latest version.
BananaLive, I installed this and haven't tested the editor, but the rest of it appears to be working well. Thanks!
I do have a question though. Is there a way to allow attachments when routing to a post, instead of just to a thread? And is there a way to include the attachments in PM and email routing?
Thanks again. I'll be busy tonight adding forms to my forum!
:)
Crotan
06-23-2011, 10:28 PM
Why is the update not working for some of us?
There is no editor and i updated to the latest version.
I don't think the CKeditor is working for anyone in this mod, those who say it is working are probably just talking about the overall mod
David Hodgkins
06-23-2011, 10:46 PM
I don't think the CKeditor is working for anyone in this mod, those who say it is working are probably just talking about the overall mod
Actually, I just had this installed today and had them apply the patch in post #1372. I can add the editor and have it show up on my form. I'm sorry, I haven't done a full test yet, and might not get to it until this evening. But it does show up after I add it...
HTH, More testing later tonight...
:)
bananalive
06-23-2011, 11:23 PM
The ckeditor seems to work for some users but not others, I've not yet found source of error.
dai-kun
06-23-2011, 11:52 PM
Loading a page with a form I get this on my error report
[19:49:56.311] n.wrap_x_tags is null @ http://site.com/forum/clientscript/ckeditor/ckeditor.js?t=A7HG4HT&v=414:136
The editor doesn't show up, I only see the smilies.
I using v4.2.7
ascroft
06-24-2011, 10:03 AM
Hi there - hmmm. This doesn't still seem to work still.
I tried a new test form, linked to a forum and it doesn't seem to launch either.
But then I played around with what plug ins I have for newthread_formstart (think this is what I should be using for this rather than newthreadstart?)
I can launch the test form from the test forum if I have no other plugins using newthread_formstart but I have 4 (3 I need plus the test 1) as I have three different forms be launched from three different array sets of forums.
Mark.
Put a space after Location:
e.g.
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183 ,184,186,188,190,191,193,56,194,195,197)))
{
header('Location: /listings/misc.php?do=form&fid=1');
}
Nocturnal222
06-25-2011, 07:37 AM
What version of the vBulletin are you using? I'm still holding off installing, as I don't see anywhere above where it says it works now with 4.1.4...
:)
4.1.4 and works fine just the e-mail form result is not working.
HolyKiller
06-25-2011, 12:00 PM
2 bananalive: It is possible to add a way to "TAG" thread by choosed answer on question?
BTW: more feature req (https://vborg.vbsupport.ru/showpost.php?p=2210116&postcount=1376) ;)
S S0DEN
06-26-2011, 02:58 AM
4.1.4 - Installed update but the editor does not work on test.
S S0DEN
06-26-2011, 03:12 AM
How would I edit the title Forms in the Navbar? Also I would like to change the destination URL when the user clicks the Navbar link to the actual form and not the list of forms. Version 4.1.4
autostick
06-26-2011, 09:27 PM
This is exactly what I need, thank you so much for making it so easy to install. I now see the Easy Form options in my user CP. However, I don't have a link in my forum quick links, and can not figure out where in the forum I can find the form editor. Where do I go, or what do I do next to start building a form? If this is a silly question or is already covered my apologies. I am a relative neophyte to vBulletin so please point me in the right direction if you can. Thanks a bunch.
:confused:
helwoe
07-02-2011, 08:58 PM
Thank you bananalive for the multi select code.
helwoe
07-02-2011, 10:27 PM
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.
$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>';
autostick
07-03-2011, 02:25 AM
Installed Easy Forms in just ten minutes. Excellent user interface. This mod is truly outstanding.
Question: Is there a way to put a PAYPAL button at the end of the form? I have people renewing memberships via the form, and would like to let them pay immediately.
Thanks to Bananalive for really great work. http://www.carforums.net/images/smilies/bananna3.gif
ascroft
07-06-2011, 07:32 AM
Hi there Dom.
The refresh of what was the last post in a forum using a plugin seems to have stopped working probably due to another change I made using arrays to have the thread prefix working. The move itself to the correct forum is fine but not the forum details update - keen to have this working again. (think it is at the bottom of the code below)
We added a plugin that moved the thread to the correct forum (newthread_post_complete) and it has the following:
if ($fid == 1)
{
$forumid = $q['forumid'];
$dataman =& datamanager_init('Thread', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$dataman->set_existing($threadinfo);
$dataman->setr('forumid', $forumid);
$dataman->pre_save();
if (count($dataman->errors) > 0)
{
foreach ($errors as $error)
{
$errorss .= $error. "<br />";
}
$errormessage = "Form failed to submit. The following error(s) occured: <br /> ".$errorss;
eval(standard_error($errormessage));
}
else
{
$dataman->save();
$foruminfo = fetch_foruminfo($forumid);
$threadinfo = fetch_threadinfo($newpost['threadid']);
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
build_thread_counters($newpost['threadid']);
build_forum_counters($forumid);
}
}
I have pasted below the code for the custom question from the form that I think is related:
$newarray = array(
158 => $vbulletin->forumcache['158'],
160 => $vbulletin->forumcache['160'],
161 => $vbulletin->forumcache['161'],
162 => $vbulletin->forumcache['162'],
163 => $vbulletin->forumcache['163'],
165 => $vbulletin->forumcache['165'],
167 => $vbulletin->forumcache['167'],
168 => $vbulletin->forumcache['168'],
169 => $vbulletin->forumcache['169'],
170 => $vbulletin->forumcache['170'],
172 => $vbulletin->forumcache['172'],
174 => $vbulletin->forumcache['174'],
175 => $vbulletin->forumcache['175'],
177 => $vbulletin->forumcache['177'],
179 => $vbulletin->forumcache['179'],
181 => $vbulletin->forumcache['181'],
61 => $vbulletin->forumcache['61'],
182 => $vbulletin->forumcache['182'],
183 => $vbulletin->forumcache['183'],
184 => $vbulletin->forumcache['184'],
186 => $vbulletin->forumcache['186'],
188 => $vbulletin->forumcache['188'],
190 => $vbulletin->forumcache['190'],
191 => $vbulletin->forumcache['191'],
193 => $vbulletin->forumcache['193'],
56 => $vbulletin->forumcache['56'],
194 => $vbulletin->forumcache['194'],
195 => $vbulletin->forumcache['195'],
197 => $vbulletin->forumcache['197'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
I have also pasted the code for the newthread_form_start -
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183 ,184,186,188,190,191,193,56,194,195,197)))
{
header('Location: /listings/misc.php?do=form&fid=1');
}
Can you advise please?
Thank you
Mark
Elenna
07-06-2011, 11:35 PM
I installed this on 4.1.4, but my administrator account(s) receive the "No Permission" error when trying to view the forms listing. Any ideas?
ErikTheRed
07-07-2011, 10:37 PM
Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.
It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.
HolyKiller
07-09-2011, 09:35 AM
I installed this on 4.1.4, but my administrator account(s) receive the "No Permission" error when trying to view the forms listing. Any ideas?
Admin CP -> Settings -> Options -> Easy Forms Options -> Set up permissions for every action/group. Default is "Noone can do anything", so you need to set it how it should work :]
Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.
It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.
iframe for example?
Elenna
07-09-2011, 01:15 PM
Admin CP -> Settings -> Options -> Easy Forms Options -> Set up permissions for every action/group. Default is "Noone can do anything", so you need to set it how it should work :]
Options were already checked-off for me, with Administrator being allowed access to everything.
See attachment for my Options screen.
Elenna
07-09-2011, 01:16 PM
Scratch the reply, above. I had to give Registered Users access to view the Form List. Now my Administrator has access.
autostick
07-10-2011, 04:45 PM
Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.
It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.
Yes indeedy, I am also in needy of this function. Hope to hear if there is a sidebar option or a direct URL reference for an easy form.
ascroft
07-13-2011, 04:56 AM
Just to be clear it works fine for the forum it gets moved to, but the forum it was posted in in the first place still shows the header detail for the post that is no longer there...
Thanks
Mark
Hi there Dom.
The refresh of what was the last post in a forum using a plugin seems to have stopped working probably due to another change I made using arrays to have the thread prefix working. The move itself to the correct forum is fine but not the forum details update - keen to have this working again. (think it is at the bottom of the code below)
We added a plugin that moved the thread to the correct forum (newthread_post_complete) and it has the following:
if ($fid == 1)
{
$forumid = $q['forumid'];
$dataman =& datamanager_init('Thread', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$dataman->set_existing($threadinfo);
$dataman->setr('forumid', $forumid);
$dataman->pre_save();
if (count($dataman->errors) > 0)
{
foreach ($errors as $error)
{
$errorss .= $error. "<br />";
}
$errormessage = "Form failed to submit. The following error(s) occured: <br /> ".$errorss;
eval(standard_error($errormessage));
}
else
{
$dataman->save();
$foruminfo = fetch_foruminfo($forumid);
$threadinfo = fetch_threadinfo($newpost['threadid']);
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
build_thread_counters($newpost['threadid']);
build_forum_counters($forumid);
}
}
I have pasted below the code for the custom question from the form that I think is related:
$newarray = array(
158 => $vbulletin->forumcache['158'],
160 => $vbulletin->forumcache['160'],
161 => $vbulletin->forumcache['161'],
162 => $vbulletin->forumcache['162'],
163 => $vbulletin->forumcache['163'],
165 => $vbulletin->forumcache['165'],
167 => $vbulletin->forumcache['167'],
168 => $vbulletin->forumcache['168'],
169 => $vbulletin->forumcache['169'],
170 => $vbulletin->forumcache['170'],
172 => $vbulletin->forumcache['172'],
174 => $vbulletin->forumcache['174'],
175 => $vbulletin->forumcache['175'],
177 => $vbulletin->forumcache['177'],
179 => $vbulletin->forumcache['179'],
181 => $vbulletin->forumcache['181'],
61 => $vbulletin->forumcache['61'],
182 => $vbulletin->forumcache['182'],
183 => $vbulletin->forumcache['183'],
184 => $vbulletin->forumcache['184'],
186 => $vbulletin->forumcache['186'],
188 => $vbulletin->forumcache['188'],
190 => $vbulletin->forumcache['190'],
191 => $vbulletin->forumcache['191'],
193 => $vbulletin->forumcache['193'],
56 => $vbulletin->forumcache['56'],
194 => $vbulletin->forumcache['194'],
195 => $vbulletin->forumcache['195'],
197 => $vbulletin->forumcache['197'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
I have also pasted the code for the newthread_form_start -
if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183,184,186,188,190,191 ,193,56,194,195,197)))
{
header('Location: /listings/misc.php?do=form&fid=1');
}
Can you advise please?
Thank you
Mark
rootsxrocks
07-19-2011, 02:12 AM
Upgraded to 4.14 and some parts of this use the forum editor and have no way to enter text if you select those, such as a description.
I have disabled until a solution is reached .
autostick
07-19-2011, 02:53 AM
Is there any way to establish a link to a form from the CMS home page? Or maybe a dropdown list?
rootsxrocks
07-19-2011, 03:37 AM
you could do that with a widget
Crotan
07-19-2011, 03:43 AM
Upgraded to 4.14 and some parts of this use the forum editor and have no way to enter text if you select those, such as a description.
I have disabled until a solution is reached .
Yea :( I'm still waiting for a fix with 4.1.4's ck editor too, last thing I saw was his test version 4.2.7 isn't working for everybody. Me included
Is there any way to establish a link to a form from the CMS home page? Or maybe a dropdown list?
each form you create has a unique url path, so you should be able to link them anywhere, or create navbits with any of the navbar mods out there
rootsxrocks
07-19-2011, 05:19 AM
I think this has potential to work for entering listings that can be verified and then promoted to "articles" for a business review. the tricky part Will be to fill out a bunch of forms from a data base.
I was able to create most of the Fields I could probity do without the ckeditor if i was creative.
ChuanSE
07-19-2011, 12:30 PM
I was wondering what regular expression is commonly used to check emailaddresses.
more specific, a regexp that allows x.x@x.x.x.tld
wampforum
07-19-2011, 01:32 PM
installed on 4.1.4 works great cheers bananalive another great mod
Hendrik83
07-20-2011, 05:44 PM
I uninstalled it but it was a nice mod.
Used it only with the vB editor.
It stopped working with 4.1.4 and the update did not fix the vB editor.
No errors it just quickly shows the outline of the editor and then nothing.
I removed all mods but no luck. :mad:
Crotan
07-20-2011, 07:10 PM
I uninstalled it but it was a nice mod.
Used it only with the vB editor.
It stopped working with 4.1.4 and the update did not fix the vB editor.
No errors it just quickly shows the outline of the editor and then nothing.
I removed all mods but no luck. :mad:
did you try his 4.2.7 version? vb editor was supposedly working for some people on 4.1.4 with it?
I'm still waiting for an update, until then I'm back to multiline text field sadly.
It's kinda a bummer too because the full editor was such a nice feature
Hendrik83
07-20-2011, 07:24 PM
Yes.
Other plugins with the new editor are working except this one.
I don't want to use multi line text fields.
Crotan
07-20-2011, 07:38 PM
Well it's the same deal as the other mods that had to fix this, functions_wysiwyg.php was depreciated in vb 4.1.4, and is no longer distributed with vb files.
To work correctly it should be making use of the new ckeditor.php
EDIT: Looking at the 4.2.7 xml, it's still making use of the old editor, and I'm guessing people that claimed it working still have the depreciated files on their server:
Removed Files:
clientscript/cms_textedit.js
includes/class_editor_override.php
includes/functions_wysiwyg.php
packages/vbcms/bbcodehelper
packages/vbcms/bbcode/wysiwyg.php
packages/vbcms/controller/editor.php
packages/vbcms/editor
packages/vbcms/route/editor.php
packages/vbcms/wysiwyghtmlparser.php
and those that do not have it working are either on a new install or removed the depreciated files, as far as I can tell Easy Forms 4.2.7 does not make use of the ckeditor
Hendrik83
07-20-2011, 07:47 PM
He said that its fixed except for some the new editor just won't show.
http://prntscr.com/2dce8
Crotan
07-20-2011, 07:56 PM
He said that its fixed except for some the new editor just won't show.
http://prntscr.com/2dce8
Sorry see my last post after I edited it.
If I had to guess those who have it working with 4.2.7 still have functions_wysiwyg.php on their servers, and those who don't do not (which is why it is blank). functions_wysiwyg is not the new editor and is a depreciated file and is not distributed with vbulletin files anymore.
TalkVirginia
07-23-2011, 12:10 AM
This is an awesome addon! only one thing I have to ask. What would it cost me to get some sort of documentation with perhaps some examples on using the forms and setting them up.
Any one else willing to share parts of their forms?
Thanks
Dozer826
07-27-2011, 07:10 PM
I have 4.2.5 and updated to 4.1.4 pl2 and it still works fine, only thing that changed is the spacing between questions/answers?
anyone know a quick fix for that?
bryanb
07-28-2011, 01:25 PM
Does this work with vB 4.1.5? Getting ready to upgrade and I'd really like to know. Thanks!
djbaxter
07-28-2011, 02:02 PM
None of the text fields seem to work since the introduction of CKEditor in 4.1.4 and 4.1.5.
Can you update this add-on to work with 4.1.4 and later?
rootsxrocks
08-01-2011, 07:16 PM
I have it disabled until the editor is updated, I suppose you could create a limited form without the type of entries that are broken, I did not examine the possibility beyond that limit.
I just assumed that it would also use the editor to create a post and that would use the CK editor and that is critical to the purpose I have.
However I am interested in paying the developer to build me a custom Mod that works similar to this.
Or I will Invest in a shared propritory pro version that meets my exclusive custom specs.:D
zushiba
08-01-2011, 09:34 PM
I'm having problems deleting an entry. I'm in Form results, click delete, pops up confirmation box, click okay, formresults reloads but that entry is still there.
Using latest version.
Za4a Tuner
08-03-2011, 05:29 AM
Hello;
i've got a question to the "form_output_styling".
How can i use the "<vb:if>"-conditional for questions like grid or radio-button?
I'd like to have it that the question and answer is only shown, when the user answerd the question.
I tried:
<vb:if condition="$q[13]">{qn_13}{q_13}<vb:else /></vb:if>
But this does'nt work, the question and answer is allways shown :(
How can i get my form to show only answerd questions?
kr Chris
ahmedipa
08-06-2011, 10:09 PM
thank you for new product but I have problems with styling
need you to fix it as soon as
the last version the style is better than the second
you can look at the size
I hope to solve the problem
https://vborg.vbsupport.ru/attachment.php?attachmentid=131743&stc=1&d=1312672074
waiting for reply
bryanb
08-08-2011, 01:12 PM
Does this work with vB 4.1.5? Getting ready to upgrade and I'd really like to know. Thanks!
Works fine on 4.1.5
djbaxter
08-08-2011, 01:22 PM
Works fine on 4.1.5
For some people, reportedly. For many others, text fields do not work with the new editor. Why not is unclear.
Text fields are not working for me at all in 4.1.4 or 4.1.5.
Crotan
08-08-2011, 02:43 PM
For some people, reportedly. For many others, text fileds do not work with the new editor. Why not is unclear.
Text fields are not working for me at all in 4.1.4 or 4.1.5.
As to why, I believe it is because of what I outlined in this post
https://vborg.vbsupport.ru/showpost.php?p=2222997&postcount=1417
Guthatron
08-08-2011, 04:41 PM
IS there a way to add an editable field on the output table?
So that I could use it for other mods to use the form, then I can add an answer to the output table later?
IE. they leave the last question blank, and i add that later?
EDIT: Just found out that you can edit form results. So i will just add a question to be left blank, and i can add in there later.
Thanks
djbaxter
08-08-2011, 06:17 PM
As to why, I believe it is because of what I outlined in this post
https://vborg.vbsupport.ru/showpost.php?p=2222997&postcount=1417
Well it's the same deal as the other mods that had to fix this, functions_wysiwyg.php was depreciated in vb 4.1.4, and is no longer distributed with vb files.
To work correctly it should be making use of the new ckeditor.php
EDIT: Looking at the 4.2.7 xml, it's still making use of the old editor, and I'm guessing people that claimed it working still have the depreciated files on their server:
Removed Files:
clientscript/cms_textedit.js
includes/class_editor_override.php
includes/functions_wysiwyg.php
packages/vbcms/bbcodehelper
packages/vbcms/bbcode/wysiwyg.php
packages/vbcms/controller/editor.php
packages/vbcms/editor
packages/vbcms/route/editor.php
packages/vbcms/wysiwyghtmlparser.php
and those that do not have it working are either on a new install or removed the depreciated files, as far as I can tell Easy Forms 4.2.7 does not make use of the ckeditor
Nope. The includes/functions_wysiwyg.php file is still there and the mod still isn't working.
Hendrik83
08-09-2011, 07:11 AM
I had that file also and no editor.
We do not get it fixed because it works for the one making this mod.
No errors: This is how it looks like on 4.1.5 (http://community.924forum.nl/misc.php?do=forms)
I have tried to remove all mods and styles but still not working.
Anyone else having a problem with Unregistered/Guest authors?
Since 4.1.4 PL2 all submissions that take longer than 15 minutes to complete (vb session timeout period) show up with a userid=0 and display as Unregistered/Guest thread authors. Perhaps the vb update was just a coincidence, but it started on the same day.
Since upgrading Easy Forms to 4.2.6, one of my forms isn't working properly. This section of the before submit isn't catching:
if (stristr($qo['88'], "Large")) {
$form['forumid'] = 112;
}
elseif (stristr($qo['88'], "Mini") ) {
$form['forumid'] = 113;
}
elseif(stristr($qo['88'], "Tiny")) {
$form['forumid'] = 114;
}
I haven't changed anything else (and other parts of the same before submit are working)... how can I fix this?
ETA: Fixed it... changing the $form['forumid'] to just $forumid seems to have corrected it. Can anyone tell me why this happened? I'm happy to have figured it out through trial and error, but I would love to learn.
3clipse
08-13-2011, 06:51 PM
Hi great mod and thanks, however, I've got a particular task I need to do that I cannot seem to do currently within this mod. What I am trying to do is change the forumid selection on the form edit page to allow multiple locations for an output on the one response, currently it only allows for the selection of one location. An example of what I am trying to do is shown below:
User Completes form and submits >>> forums a, b and c are selected as destination forums for a thread >>> the responses are put into a new thread in forums a, b and c
any assistance would be appreciated.
3clipse, that's what the bit I posted in the comment directly above yours is for. You can just paste that into the Before Submit box, then change the search text and the forumids. :) (Don't forget to change $form['forumid'] to just $forumid.
3clipse
08-16-2011, 12:11 PM
3clipse, that's what the bit I posted in the comment directly above yours is for. You can just paste that into the Before Submit box, then change the search text and the forumids. :) (Don't forget to change $form['forumid'] to just $forumid.
I've tried this with some adjustments to remove the search filtering as i'm not trying to add a filter to direct a form response to a certain response, what i'm trying to do is get an exact duplicate of the thread across 3 forums as users with various permissions need to comment on responses to the form. After removing the search filter the problem i come across is that it sends to 1 forum, shows up in the second but redirects to the first then the third location it does not show up at all.
SpikedRocker
08-18-2011, 01:31 PM
Upon Updating to 4.1.5 we've noticed on forms that redirect people to any link on completion of the form no longer works. It says it is an invalid URL and does not go on from there. We've even gone on to test this with directing to a well known URL such as google.com and we get the same problem.
Any help would be great!
vBNinja
08-20-2011, 04:41 AM
I just upgraded to 4.1.5 PL1 and I'm having trouble with my "Field using vBulletin editor" questions because users are not able to type in the box, they box is grated out and therefore my users can't complete and submit their applications
Any fix for this?
Thank you
mohammad6006
08-20-2011, 09:30 AM
how can i create an agreement for form?
JayCat
08-21-2011, 10:22 PM
I just upgraded to 4.1.5 PL1 and I'm having trouble with my "Field using vBulletin editor" questions because users are not able to type in the box, they box is grated out and therefore my users can't complete and submit their applications
Any fix for this?
Thank you
I have the same problem.
djbaxter
08-22-2011, 11:44 AM
I just upgraded to 4.1.5 PL1 and I'm having trouble with my "Field using vBulletin editor" questions because users are not able to type in the box, they box is grated out and therefore my users can't complete and submit their applications
Any fix for this?
Thank you
I have the same problem.
So do I. Really need an update on this.
SpikedRocker
08-22-2011, 08:22 PM
I don't use those options for my forms, but when I checked it out, I think I experienced simular things with other mods where they don't fully comply with the WYSIWYG editor coding.
May I ask what you are trying to do in that section of the form and maybe we can develop a different way to get that accomplished?
BTW...I fixed my problem with the URL redirects by using HTML in the Box where you put a message after submission. Sure its not a direct redirect, but at least the link is clickable.
Seems either the creator has gone on holiday or has dropped off the face of the earth. Guess we'll have to be creative in work arounds as vB gets updated.
rburns
08-26-2011, 07:55 AM
Sorry, I've tried searching for the answer here but can't find it.
What do I need to put in the Custom Form Output box to enable it to automatically make the answer of Question 1 the username of the user filling in the form? (Once I get this sorted I can hide that question as it will be automatic).
Thanks for the help, best mod on VB!
SpikedRocker
08-27-2011, 07:51 PM
I'm not sure 100% what you are trying to do, but on the form output stuff if you just type {username} it will put whomever's user name that is filling out the form anywhere on its output...no need for a question to do it.
The Coon
08-28-2011, 10:52 AM
So do I. Really need an update on this.
The same here ... really important for us! :o
FReeSTER
08-30-2011, 05:31 AM
I did all the permissions, did everything correct but is not showing me anything for me to make a form..Un-installed
Guthatron
08-31-2011, 07:29 PM
Is there anyway I can allow one usergroup to see the results table of one form only?
Currently I have had to set that usergroup to forms administrator so they can view results, but this means they can see/edit every form we have.
I'd love it if they couldn't edit any forms and just see the results table for one specific form.
Roonis
09-02-2011, 08:08 PM
I did all the permissions, did everything correct but is not showing me anything for me to make a form..Un-installed
I had the same issue but after pulling my hair out I found the solution:
You only set up permissions in the admin panel. In the permissions you have an option to include the form edit option on the nav bar or drop down tabs. after you setup the permissions and chose nav bar, tabs or both look on the top of your forums page. you should see form link. That's where you start to build your form or edit it. Hope this helps
ckeins
09-05-2011, 08:26 AM
Is there anyway I can allow one usergroup to see the results table of one form only?
Currently I have had to set that usergroup to forms administrator so they can view results, but this means they can see/edit every form we have.
I'd love it if they couldn't edit any forms and just see the results table for one specific form.
Same here. Is there any way, that a member can only see his own results? that would be great as I'm using this mod for quiz purposes only.
eviljoker7075
09-09-2011, 10:05 AM
Hi there, is there any way I can pre-populate a field with a value passed in a query from the URL? I would like to add a button to a contact form on all thread pages that automatically populates a field with the address of the thread the user was viewing.
nando99
09-10-2011, 08:40 PM
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?
I'm having the same problems. The usergroup has permissions to upload attachments to the forum the form is posting the new thread too and the users are still getting a permission error when they click on manage attachments... any help?
Cadellin
09-12-2011, 05:24 PM
Could someone explain how to stop threads being moderated when created?
I've enabled the visible plugin, set "Follow Forum Moderation Rules" to Yes for the usergroups and set "Moderate Threads" to No.
Unfortunately the new threads are still being posted as being moderated.
Thanks for any assistance.
Terminator1138
09-14-2011, 04:50 PM
Noticed after having this installed for a while that others that create forms aka other admins cannot edit. Seems only creators can edit and delete a form? The details say in admincp to vb options to easy form options that admins have the right to edit, but none of my admins can edit any past forms.
Thoughts, thanks in advance.
Lester Wilson
09-17-2011, 07:51 AM
Question Types:
Multi-line text field using vbeditorWhen installed on Vbulletin 4.1.5 with the CK Editor
The options to use the new Vbulletin Built in CKeditor in a question, no longer works. (Worked without issues in 4.1.3 and the old VBeditor)
Is there a patch to allow the CKeditor to be used in the user reply?
This excellent mod is really broken without the user being able to use a WYSIWYG editor in their responses on the form.
I'm using Version 4.2.6...and i've tried 4.2.7, neither work for the new CKeditor field. is there a known fix or work around?
djbaxter
09-17-2011, 01:03 PM
Question Types:
Multi-line text field using vbeditorWhen installed on Vbulletin 4.1.5 with the CK Editor
The options to use the new Vbulletin Built in CKeditor in a question, no longer works. (Worked without issues in 4.1.3 and the old VBeditor)
Is there a patch to allow the CKeditor to be used in the user reply?
This excellent mod is really broken without the user being able to use a WYSIWYG editor in their responses on the form.
I'm using Version 4.2.6...and i've tried 4.2.7, neither work for the new CKeditor field. is there a known fix or work around?
Agreed. We really need an update here.
Bestrafung
09-21-2011, 08:59 PM
I know this has been mentioned before but I haven't seen an answer yet. Is there a way to include or embed a form into a CMS page? Even an iframe would be fine if possible.
Mr_Running
09-23-2011, 12:01 AM
Agreed. We really need an update here.
I believe we will not see an update until late Jan - Early Feb. :erm: ...Soon.
djbaxter
09-23-2011, 12:29 AM
I believe we will not see an update until late Jan - Early Feb. :erm: ...Soon.
And that opiniopn is based on ????
MarkusB
09-26-2011, 12:42 PM
I do not have installed this powerful Mod yet, because of some questions in front ....
I would like to create a form like:
Input Form
Date: from--> DD/MM/YYYY until--> DD/MM/YYYY
Username: xxxx (hidden automatic insert of the reg. Username)
Dropdown Menu: (~20 Locations +others)
Textfield for others: (about 50 characters)
Textfield: (Airline used)
Textfield: (Hotel Name of stay)
Textfield: (Place to stay)
Textfield: (Local Mobile#)
Output Methods:
Perfect would be a Page (within the CMS where i can display all together in a form list, line by line in order of the date input fields. (from: dd/mm/yyyy) and auto delete or hide or prune after the "until date" (until: DD/MM/YYYY) in this list.
If the above is not possible it would be OK to show it just in 1 posting, but i would like to have the possibility to customize the appearance.
What you are believing, possible or not? :-)
Or do you know a script somewhere else (its no must for vbulletin only, PM please) where i can do that better, is it eventually better with a Calender Mod? . I am searching now to long without success, i need to do something for this.
Thanks for any Suggestion or Information, it would be great to find any solution to realize that...
Right now i`m using vb.4.1.3 Publishing-Suite, would like upgrade soon to 4.1.7...
Best Regards, Markus
Mr_Running
09-26-2011, 01:18 PM
And that opiniopn is based on ????
Past Observation from Release Date to regular yearly updates which the updates are great and the coder usually hangs out for a couple of weeks to make ensure the updates work and has stated that it is Not Supported but I think it might be a good time to ask for feature requests. :)
Maybe the holiday season will come yearly and we will Exchange Gifts. ;)
basilrath
09-26-2011, 01:24 PM
this is a top mod in my opinion
it can be used for anything within reason although i tend to be only using for feedback
works sweet
djbaxter
09-26-2011, 02:46 PM
this is a top mod in my opinion
it can be used for anything within reason although i tend to be only using for feedback
works sweet
It did before the CK Editor versions. It does not work at all with CK Editor introduced in 4.1.4
barne77
09-27-2011, 07:03 AM
hi
soory if question already asked but is the a way of displaying the table results in a widget or in my own html page for a specific form.
SpikedRocker
09-28-2011, 07:49 PM
While I've never done that, I'd say its safe to assume its stored in a specific table on your database and if you write the PHP code to pull that information out it should work. But with how the mod works now it won't automatically produce that for you. You'd have to code it yourself.
steve71
09-30-2011, 12:37 AM
It would be a great improvement if the user could select the destination forum of a form with a dropdown menu while posting...
just a friendly reminder...:)
djbaxter
09-30-2011, 12:47 AM
just a friendly reminder...:)
And here's another one: This add-on is currently useless with the CKEditor in 4.1.4 to 4.1.6
It did before the CK Editor versions. It does not work at all with CK Editor introduced in 4.1.4
sanstarr
09-30-2011, 01:40 PM
hey, i spend 10$ for anyone that fix the "error" with the ck-editor.
no joke!
djbaxter
09-30-2011, 02:10 PM
hey, i spend 10$ for anyone that fix the "error" with the ck-editor.
no joke!
I'd also kick in some money. I emailed and PMd the author to say so but have had no reply.
sanstarr
10-01-2011, 04:31 AM
Yep. Its a fantastic Mod, that would help me extreme, but only with The Editor.
I created a Review Form for Games. That is the only mod with The possibilities, to do that :/
Or any other Suggestion for a Review Form / Mod?
Vb Suite 4.1.6
Thanks!
PcCI2iminal
10-02-2011, 02:26 AM
Hi Team,
I need a help with this plugins.
I'm currently using is as a rank submittion, created everything and followed all steps, but i do use on my VB setup an option for normal ( registered ) users - to allow new posts after 60 seconds, for spam or flame purpose.
So users post one topic, and had to wait 60 to post again.
But some grupos, Admins, Moderators, and a Special Group on my forum - have this option disable.
When i setup easyforms - admins, mods, and special group can post in forms without problem, but normal (registered users) post and receive the error (you are not allowed to post to fast, wait at last 60 seconds for each post ). I didn't find out what is wrong, and how its connected.
Does anyone can help me
my forum is www.criminalcafe.com Powered by vBulletin? Version 4.0.6 - using the latest EasyForm plugin.
Thx
vanquish.securi
10-02-2011, 02:55 AM
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/class_bootstrap.php(1315) : eval()'d code on line 178
vB 4.1.6 Top of the page after clicking the "Forms" link.
bananalive
10-03-2011, 02:01 PM
v4.2.7 BETA RELEASE
Please try it and see if you're still encountering ck editor problems.
Or if you find any other bugs/errors.
Cheers
djbaxter
10-03-2011, 02:21 PM
v4.2.7 BETA RELEASE
Please try it and see if you're still encountering ck editor problems.
Or if you find any other bugs/errors.
No. It displays the editor controls only for the first text field but clicking on the text box does nothing (i.e., the form doesn't get the focus).
Some of the subsequent text fields don't even show the editor controls.
Only the last text field on the form allows you to enter any text.
sanstarr
10-03-2011, 03:30 PM
first of all: MANY THANKS that you work on this mod again.
but sorry,
doesn't work, when you send a form with a ck editor field:
"Warnung: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/forms.php (Zeile 353)
Fatal error: require_once() [function.require]: Failed opening required 'XXX/includes/functions_wysiwyg.php' (include_path='.:/usr/share/php:..') in XXX/forms.php on line 353"
10$ are on the way, if you find a solution :)
many thanks again!!!
chrisngrod
10-03-2011, 04:44 PM
I know the hot topic is the CKEditor portion, but is there any way to set the reply to field in an e-mail?
bananalive
10-03-2011, 07:37 PM
No. It displays the editor controls only for the first text field but clicking on the text box does nothing (i.e., the form doesn't get the focus).
Some of the subsequent text fields don't even show the editor controls.
Only the last text field on the form allows you to enter any text.
More than one ckeditor per form is not currently supported, due to the coding and required structure of ckeditor. Have you tried it with just one ck editor question?
bananalive
10-03-2011, 07:38 PM
first of all: MANY THANKS that you work on this mod again.
but sorry,
doesn't work, when you send a form with a ck editor field:
"Warnung: require_once([path]/includes/functions_wysiwyg.php) [function.require-once]: failed to open stream: No such file or directory in [path]/forms.php (Zeile 353)
Fatal error: require_once() [function.require]: Failed opening required 'XXX/includes/functions_wysiwyg.php' (include_path='.:/usr/share/php:..') in XXX/forms.php on line 353"
10$ are on the way, if you find a solution :)
many thanks again!!!
Try attached file (upload it to forum directory, allowing overwrite)
bananalive
10-03-2011, 07:46 PM
I know the hot topic is the CKEditor portion, but is there any way to set the reply to field in an e-mail?
See screenshots for setting form up
sanstarr
10-04-2011, 04:13 AM
hi - thanks for your post.
still an error:
Warnung: require_once([path]/includes/functions_wysiwygparser.php) [function.require-once]: failed to open stream: No such file or directory in [path]/forms.php (Zeile 368)
Fatal error: require_once() [function.require]: Failed opening required 'XXX/includes/functions_wysiwygparser.php' (include_path='.:/usr/share/php:..') in XXX/forms.php on line 368
:(
maybe the problem is, that "/includes/functions_wysiwygparser.php" doesn't exist.
use vb 4.1.X an other function with the ck-editor?
EDIT:
Found a solution:
require_once(DIR . '/includes/class_wysiwygparser.php');
$html_parser = new vB_WysiwygHtmlParser($vbulletin);
$q[$formbit[id]] = $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC["message"], 0);
then the form is submit correct. but problems with formatting the text, or the bbcode - texts like:
"&amp;amp;lt;br&amp;amp;gt;&amp;amp " and so on...
EDIT2
following:
$q[$formbit] = $html_parser->parse_wysiwyg_html_to_bbcode($vbulletin->GPC["message"], $vbulletin->options['pt_allowhtml']);
now the submited texts seems OK!!!
with correct formating etc.
for next release it must be a query for the vb version, that this mod can work with older and newer versions (with ck oder without)
something like this:
http://svn.vbulletin.org/trac/changeset/533/branches
now testing again... :)
[I]edit3:
my forms.php -> see attachments ;)
djbaxter
10-04-2011, 01:08 PM
More than one ckeditor per form is not currently supported, due to the coding and required structure of ckeditor. Have you tried it with just one ck editor question?
That's probably not going to work for me.
...unless I make the others multiline text fields... hmmm.
Is there any way to allow editing the TYPE of item when you edit a question so I can convert from Editor fields to multi-line text fields without haveing to reconstruct the forms?
bananalive
10-04-2011, 05:35 PM
v4.2.8
- another edit for ckeditor
@djbaxter edit editor question (not javascript popup) then you can swap editor for multiline text box
djbaxter
10-04-2011, 08:07 PM
@djbaxter edit editor question (not javascript popup) then you can swap editor for multiline text box
I don't understand. If I edit a question in a pre-existing form, I see no option to change the type of field anywhere.
djbaxter
10-04-2011, 08:34 PM
There's another problem with v4.2.8. Now when I try to save any edit to the form, it redirects me to the FAQ and the changes aren't saved.
Sunka
10-04-2011, 08:51 PM
For me (first install) all is working OK.
MOD v4.2.8
djbaxter
10-04-2011, 08:59 PM
I don't understand. If I edit a question in a pre-existing form, I see no option to change the type of field anywhere.
OK. I understand now. I disable the popup editor in Settings.
bananalive
10-05-2011, 08:53 AM
There's another problem with v4.2.8. Now when I try to save any edit to the form, it redirects me to the FAQ and the changes aren't saved.
Have you edited any of the templates? perhaps the form_edit template? If so revert them.
chrisngrod
10-05-2011, 10:34 AM
See screenshots for setting form up
Thanks for the reply.
I'm new to Vbulletin so I didn't see that I had not marked this as installed, but I went ahead and did and gave you a 5 star rating.
Your posted method works perfectly for e-mailing the form to the email field that was setup. However, I was hoping that there was a way to set the REPLY TO field in an e-mail.
I have a form that submits to myself and a Cricket Wireless Dealer. Cricket Wireless users submit this form to have changes made on their account. I was hoping that we could hit reply to on our e-mail and have it populate with their e-mail address. My dealer sometimes forgets to copy their e-mail into that field. By default it says it comes from the e-mail address we've inputted in Vbulletin (webmaster@cricketuser.....com).
Thanks again!
bananalive
10-05-2011, 11:30 AM
Thanks for the reply.
I'm new to Vbulletin so I didn't see that I had not marked this as installed, but I went ahead and did and gave you a 5 start rating.
Your posted method works perfectly for e-mailing the form to the email field that was setup. However, I was hoping that there was a way to set the REPLY TO field in an e-mail.
I have a form that submits to myself and a Cricket Wireless Dealer. Cricket Wireless users submit this form to have changes made on their account. I was hoping that we could hit reply to on our e-mail and have it populate with their e-mail address. My dealer sometimes forgets to copy their e-mail into that field. By default it says it comes from the e-mail address we've inputted in Vbulletin (webmaster@cricketuser.....com).
Thanks again!Upgrade to Easy Forms v4.3.0
AdminCP -> Plugins & Products -> Add New Plugin
Create a plugin using hook: easy_forms_action_email
$uheaders .= 'Reply-To: yourdealer@cricket.com' . "\r\n";
djbaxter
10-05-2011, 01:08 PM
Have you edited any of the templates? perhaps the form_edit template? If so revert them.
I haven't but I do have the Quick Reply add-on. It only happens with the Ajax popup. Once I disabled that, it's fine.
Halfhidden
10-05-2011, 04:57 PM
I've been searching but can't find out the answer to my questions.
I would like to create a poll that each choice has a different thumbnail next to it. The reason I ask this is because I would like to use it to allow members to vote on a photo contest.
I would need to restrict the amount of times they vote and be able to see who voted (make it public). Can this be done?
Thanks :D
chrisngrod
10-05-2011, 06:02 PM
Just wanted to note that when the "Forum Submit Limit Per User" is relatively low it works.
I had some stuff setup with a limit of 20 and one user is at 21 already :-(.
I'm going to donate. Either way this has helped me a lot.
EDIT: Upgraded and then downgraded. When I tried to export a form with the new version or do some other functions it would take me to the smilies. After reverting back everything is fine again.
bananalive
10-06-2011, 02:16 PM
I've been searching but can't find out the answer to my questions.
I would like to create a poll that each choice has a different thumbnail next to it. The reason I ask this is because I would like to use it to allow members to vote on a photo contest.
I would need to restrict the amount of times they vote and be able to see who voted (make it public). Can this be done?
Thanks :D
Add Question -> Radio Buttons Question
The options field(s) allow bbcode, such as [img]
Settings for viewing form results are set in the admincp -> vbulletin options -> easy form settings
Edit Form -> Form Permissions -> Form Submit Limit per user -> 1
bananalive
10-06-2011, 02:26 PM
Just wanted to note that when the "Forum Submit Limit Per User" is relatively low it works.
I had some stuff setup with a limit of 20 and one user is at 21 already :-(.
I'm going to donate. Either way this has helped me a lot.
Hmm, not sure why this isn't working, perhaps the field has reached its length limit.
Alternative method, if you're saving results to db
Edit Form -> Form Hooks -> Form Hook: Form Start:
$count_submits = $vbulletin->db->query_first("SELECT COUNT(*) AS countrows FROM " . TABLE_PREFIX . "formresults WHERE fid = '$fid' AND userid = '".$vbulletin->userinfo['userid']."' ");
if ($count_submits['countrows'] > 20)
{
print_no_permission();
}
EDIT: Upgraded and then downgraded. When I tried to export a form with the new version or do some other functions it would take me to the smilies. After reverting back everything is fine again.
I expect this is because your browser was using a cached version of easyforms.js. Clear browser cache or manually reload easyforms.js and it'll work.
Halfhidden
10-06-2011, 02:30 PM
Add Question -> Radio Buttons Question
The options field(s) allow bbcode, such as [img]
Settings for viewing form results are set in the admincp -> vbulletin options -> easy form settings
Edit Form -> Form Permissions -> Form Submit Limit per user -> 1
Thank you so much :D:D:D:D:D:D:D
chrisngrod
10-06-2011, 02:42 PM
Hmm, not sure why this isn't working, perhaps the field has reached its length limit.
...
I expect this is because your browser was using a cached version of easyforms.js. Clear browser cache or manually reload easyforms.js and it'll work.
You're the man! I'll try this out. Thanks.
lightshowpro
10-06-2011, 04:13 PM
Hi,
Great work!
Has anyone tested this with 4.1.7?
chrisngrod
10-06-2011, 04:24 PM
I'm on 4.1.7 as of this morning and everything seems to still be working. I don't use anything that requires CKEditor in the forms. Just thought that was worth noting.
dustoff99
10-07-2011, 11:44 PM
For some reason, my new users who fill out the form are moved to a moderated post. It didn't before.
Recently upgraded from 4.1.3 to 4.1.6. I have a MOD installed (GlowHost - Spam-O-Matic), not sure if that could be my problem.
Basically I use the form for potential recruits for our gaming clan. I want the user to post the form unmoderated. Did something change in the settings or did I miss something?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.