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
Elenna
01-15-2013, 08:51 PM
Good afternoon!
We are wanting to set up a few forms to act like a database of sorts, and would like the navigation buttons (shown while viewing each form or results) to change depending on the form they have open.
For example, there are two forms, one for adding details about your pets and another for adding details about your shoes. While viewing the form itself or the Results, we'd like the button images to be customized to say "View Form" to"Add New Pet" / "Add New Shoes", or "View Form Results" to "View Pets" / "View Shoes", etc.
If that makes sense? Is there a conditional that I could use to modify those sorts of things?
Karma
01-21-2013, 02:55 AM
Hello everyone, I was wondering if anybody was having the issue of the form menu not appearing in the navbar or in the quick links section and had fixed it. I've checked all the permissions a bunch of times and changed the styles thinking maybe I did something but nothing seems to work. I see a user above has the same issue but not sure if he finally got it solved. Hope to hear back from anyone about this issue. Here is the board:
http://karma.tc/ethereal
I re-enabled the navbar so you can take a look. I'd like to get it working as part of the actual menu.
smirkley
01-21-2013, 04:46 AM
New navbar settings and variables in 4.2,... insert it manually in acp.
Karma
01-21-2013, 06:31 AM
New navbar settings and variables in 4.2,... insert it manually in acp.
Hey, thanks for the answer. I thought about doing it before but I guess I just didn't. Last question though, how can I make it so that the new tab can only be seen by Administrators? Under 'Show permission name' I tried putting in like administrator and such but of course it didn't work. I'm not sure on how to do that, I was just playing around with that.
PS: Is it possible to make the form post in 2 different threads? I see it says Post New Thread and allows me to select 1 so I thought maybe a little edit somewhere could make it so that it's capable of posting in 2?
Love the mod by the way! Absolutely loving it! Excellent job banana!
richardevans123
01-21-2013, 12:01 PM
You'll need this, and then select your administrator group
https://vborg.vbsupport.ru/showthread.php?t=283123&highlight=navigation+enhancement
Karma
01-21-2013, 02:43 PM
You'll need this, and then select your administrator group
https://vborg.vbsupport.ru/showthread.php?t=283123&highlight=navigation+enhancement
Thanks for that. Installing now. :)
tommyxv
01-24-2013, 08:13 PM
Who is using the table form results? Is there a way to make it searchable and allow a photo upload to table form results?
The Realist
01-27-2013, 08:55 PM
Regarding the below posts.
Im trying to do the same thing with no luck so see if I can explain.
Section created called for sale and I need the post new thread button to go to the form I've created and once filled it the for sale advert is created as a thread in the sale section.
What do I need to edit, change etc?
Been away from VB for a while and lost the will to think :)
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']);
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
This works fine, now the button "New Thread" roots to the form :D
but:
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>';
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
The Realist
01-28-2013, 02:05 PM
Anyone on the above?
jaybolt
01-29-2013, 10:14 AM
HI - I have tried to find an answer in and amongst the 100 pages here but it is difficult to search for "PM" as your issue!
My Easy Form isn't sending notification PMs to the two names in the settings. I have installed it on Version 4.2.0 (I had the previous version working on older version forum and had no issues with it).
Is there anything obvious I should be looking for? Any setting or permission I may have missed?
Heaven
02-02-2013, 05:14 PM
Thank you so much for this, I love it.
richardevans123
02-06-2013, 03:23 PM
I have a question.
I'd like to have a quiz using the forms, and If a user gets 7 out of 10 or higher, then they are promoted to the next rank automatically. Is there any special coding that I need to add to do this?
Thanks
EDIT: Also, is there a way to close certain forms and not have members fill it out, whilst still having other forms open?
Thanks
So I've changed my: /forum.php/ to /index.php/ ...
I've tried going to: http://domain.com/forum/index.php?do=forms
.. And to no avail, all failure. Can someone please comment and help me out?
P.S - I'm running vBulletin 4.2.0
fwulfers
02-14-2013, 03:57 PM
This is a very good mod and I am planning to use it for a Marketplace forum section. I have seen these same questions in this thread before but haven't found a solution yet.
1. All new threads should go through these forms. When you disallow users to post new threads directly in the forum, it will show an error message when they want to upload attachments with the forum. Is there a way to fix this or remove the New Thread button for these specific forums?
2. Even better, when the New Thread button is clicked, it will direct you to the forms page. Is there a way to set this up?
bananalive
02-15-2013, 07:12 PM
This is a very good mod and I am planning to use it for a Marketplace forum section. I have seen these same questions in this thread before but haven't found a solution yet.
1. All new threads should go through these forms. When you disallow users to post new threads directly in the forum, it will show an error message when they want to upload attachments with the forum. Is there a way to fix this or remove the New Thread button for these specific forums?
2. Even better, when the New Thread button is clicked, it will direct you to the forms page. Is there a way to set this up?
2. New php plugin
Hook Location: newreply_form_start
Title: Easy Forms Reply Button
Execution Order: 5
Plugin
if (in_array($threadinfo[threadid], array(1)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=1') ;
}
Plugin is Active: Yes
bananalive
02-15-2013, 07:12 PM
So I've changed my: /forum.php/ to /index.php/ ...
I've tried going to: http://domain.com/forum/index.php?do=forms
.. And to no avail, all failure. Can someone please comment and help me out?
P.S - I'm running vBulletin 4.2.0
http://domain.com/forum/forms.php
fwulfers
02-15-2013, 08:06 PM
2. New php plugin
Hook Location: newreply_form_start
Title: Easy Forms Reply Button
Execution Order: 5
Plugin
if (in_array($threadinfo[threadid], array(1)))
{
header('Location: http://www.myforumaddress.com/misc.php?do=form&fid=1') ;
}
Plugin is Active: Yes
I had to make a few adjustments but your post pointed me in the right direction. Clicking the New Thread button now goes to the correct form. Thanks so much! :up: :up:
New php plugin
Hook Location: newthread_form_start
Title: Easy Forms New Thread Button
Execution Order: 5
Plugin PHP code
if (in_array($forumid, array(221)))
{
header('Location: http://mywebsite.com/misc.php?do=form&fid=1') ;
}
if (in_array($forumid, array(222)))
{
header('Location: http://mywebsite.com/misc.php?do=form&fid=2') ;
}
For each forum and form, just keep adding code where the array(xxx) is the forum id and fid=xx is the form id.
Plugin is Active: Yes
leclownos
02-19-2013, 12:37 PM
Hello,
I encounter a problem in the custom question, I can not put html custom code. If you have an idea please send it to me. Thank you to you. cordially
Sorry for bad english.
bananalive
02-23-2013, 10:26 AM
Hello,
I encounter a problem in the custom question, I can not put html custom code. If you have an idea please send it to me. Thank you to you. cordially
Sorry for bad english.
Use:
$answer = '<html here>';
leclownos
02-25-2013, 07:17 PM
Thank you works very well. Is there a variable to retrieve the ID of the custom issue. And if there are other variable such as you'd give me above you can show us. Thank you cordially.
ps: "Very good hack, bravo."
Nocturnal222
03-01-2013, 12:02 PM
Hello,
How can we prevent exploits ?
I can't get the navbar and quick links to show. :(
I have tried installing and uninstalling. and made sure the checkboxes are checked in the options. I am not using the stock theme, so I suspect it that?
DannyC55
03-29-2013, 08:22 PM
Just a quick question... Is there a way to do the following...
If usergroup is x, post x profile field?
Thanks,
-D
Chadi
03-31-2013, 03:00 AM
Some bugs or issues
I got emailed someone's submission to the form I created.
#1
On top of the email, I get this
*[SIZE=5]Moderator Application*
_[SIZE=3]Qualifications_*Frequency Visits* Daily *Membership Period* 2+ Years *Statement of Faith* I believe that Christ Jesus came into the world to save sinners....that He is the Son of the one and only God. That He is the only way of Salvation. His world the Holy Bible is the true Word of God.
#2
Email did not mention the username that filled the form.
#3
Buttons messed up? Screenshot attached.
I was going to edit the button class info in form_edit, but your template has errors in it. If I save the default unmodified template I get this:
The following error occurred when attempting to evaluate this template:
Warning: in_array() expects parameter 2 to be array, null given in [path]/includes/adminfunctions_template.php(5432) : eval()'d code on line 135
Warning: in_array() expects parameter 2 to be array, null given in [path]/includes/adminfunctions_template.php(5432) : eval()'d code on line 168
Warning: in_array() expects parameter 2 to be array, null given in [path]/includes/adminfunctions_template.php(5432) : eval()'d code on line 272
Warning: in_array() expects parameter 2 to be array, null given in [path]/includes/adminfunctions_template.php(5432) : eval()'d code on line 292
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
#4
More bugs with html output/mis alignment.
Thanks :)
keyla31
04-04-2013, 02:33 PM
is there a way to capture the ip address of the person completeing the form?
sburns1992
04-11-2013, 07:20 PM
Seen this posted a few times but not yet seen a fix.
'Manage Attachments' is working fine within the forum, but within Easyforms it's thoriwng up a permissions error, help?
Thanks
Recon0303
04-29-2013, 11:24 AM
Does this work for 4.2 CMS and if so, i'm new to this mod, but I installed it and I didn't see anything anywhere is there a help file , or a file you need to edit to add questions??
Thanks.
optimus.prime
05-20-2013, 06:58 AM
Does it work with 4.2.1 forum?
fwulfers
05-20-2013, 10:58 AM
Does it work with 4.2.1 forum?Yes, works great.
hello together.
First I want to thank you for this great modification!
However, I have a question for a problem and hope someone can help me: Every form results will be published as a new thread. Now it often happens that a user, moderator or admin changes this form later. Is it possible that the changes made are also changed in the thread?
If no, then it is possible to post the changed Form as a Post in the thread that was createt ??
I really hope someone can help me. Over 200 (and more) users to use the form on the day it is very difficult to edit the thread and the form. The form is important because the statistics and export function for Excel. The thread is important for the user who filled out the form.
I hope someone has an idea!
Create Custom Question with:
Reference Name: forumid
PHP Code: $answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] ."\">";
foreach ($vbulletin->forumcache AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";
Edit Form -> Form Hook: Before Submit:
$forumid = $form['forumid'] = $qo['forumid'];
Hi and sorry for the double post!
i use this code in a custom qo! It works! BUT: in the results_table, results_poll and in the output (Thread) the answer of the Question is only the Forum ID (See @ Screens). It it possible to save the Forumtitle and not the Forum id in the Database/ Thread ?
kind regards
onespot
05-30-2013, 03:51 PM
Can I password protect certain forms?
axelfx07
06-04-2013, 01:01 AM
I understand it is not possible to include attachments to the email?
Is it possible to include a link of a newly created thread w/ attachments to the email?
Thanks
datoneer
06-04-2013, 11:34 AM
How to add forms in quick links on vb 4.2.1
axelfx07
06-05-2013, 08:48 AM
How do you insert some intro text before the form? I assume using
Form Hook: Form Start
but how do you insert html in there?
iraqiboy90
06-08-2013, 08:20 PM
Can someone please tell me why vbulletin is telling me it's unknown location at Who's online?
These are enabled at the plugins;
Online_location_prossess
if ($filename == 'forms.php' && $actions['do'] == 'forms')
{
$userinfo['activity'] = 'forms';
}
if ($filename == 'forms.php' && in_array($actions['do'], array('form', 'postform', 'updateformresult')))
{
$userinfo['activity'] = 'form';
}
Online_location_unknown
if($userinfo['activity'] == 'forms')
{
$userinfo['where'] = '<a href="forms.php?'.$vbulletin->session->vars[sessionurl].'do=forms"> '.$vbphrase[Become_admin_form].'</a>';
$userinfo['action'] = $vbphrase['forms'];
$handled = true;
}
$fid = $userinfo[fid];
if($userinfo['activity'] == 'form')
{
$userinfo['where'] = '<a href="forms.php?'.$vbulletin->session->vars[sessionurl]."do=form&fid=$fid\"> ".$vbphrase[viewing_form_generic].'</a>';
$userinfo['action'] = $vbphrase['forms'];
$handled = true;
}
I again,
I have created a custom question which only the forum title outputs when the form called. That works also. Unfortunately, in the database and the thread just shows "-". Maybe someone can help me with this problem? Here is the code:
$answer = '<select name="'.$formbit[id].'">';
$thisanswer = $q[$formbit[id]];
$threads =$db->query_read("SELECT title FROM " . TABLE_PREFIX . "forum
WHERE forumid = '$fid'");
while($row = $db->fetch_array($threads)) {
$answer .= '<option value="'.$row[threadid].'"';
if ($row[threadid] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[title].'</option>';
}
$answer .= '</select>';
regards
MoK
iraqiboy90
06-13-2013, 08:54 PM
I know that there isnt support for this mod, but the basic online.php script.. I guess it can be worked out by someone else?
msilber
07-03-2013, 09:21 PM
When you have the form be submitted as a new thread is there any way to have a field or multiple fields be added as tags onto the new thread? I would like to use this as an easy way of sorting and searching through threads.
Thank you for any help.
DannyC55
07-19-2013, 05:51 PM
Has anyone else found that even though different outputs, the same one is posted.. i.e output 34 displays for output 35, 36, 37, 38?
Each of which are (Field using vBulletin editor).
Additionally, I couldn't seem to get the if condition working.
I'd like if question 5 output is x, then post the output for question 6 too.
Thanks,
D
Cla75
07-25-2013, 12:44 PM
my error is:
Error, this form does not have any results stored in the database.
thanks for your support
chelsoi18
07-31-2013, 11:58 AM
I don't have the button to create new Form , i don't the button even in Quick Links even if it's activate.. What can i do.
Toshinobu
08-01-2013, 01:05 PM
Is there any documentation available on how use a Custom Question? I was unable to find anything explaining what variables are available, how to modify a question/answer via PHP, etc.
Any help would be appreciated.
k3vintan
08-10-2013, 04:44 PM
Does this work on 4.2.1?
Vitaris
08-10-2013, 09:34 PM
k3vintan, I have this installed on my 4.2.1, and it works without issue. I can't vouch for anybody else, though.
BoostedK20
08-14-2013, 02:36 PM
Seen this posted a few times but not yet seen a fix.
'Manage Attachments' is working fine within the forum, but within Easyforms it's thoriwng up a permissions error, help?
Thanks
I need this answer ASAP! Please someone respond to this. Many people posted it, and not one person responded or helped. Thanks in advance!
raghathol
08-19-2013, 03:56 PM
I need this answer ASAP! Please someone respond to this. Many people posted it, and not one person responded or helped. Thanks in advance!
Stuck on the same issue, please help anyone?
zushiba
08-20-2013, 09:24 PM
<span style="text-decoration: line-through">I need help with the Date field, the date isn't saved properly for some reason. When I enter a date into a field date and then either view the data or edit that submission the date is reset to 31 December 1969.</span>
Scratch that, when I made a copy of the form it didn't copy my date formatting over to the new date fields.
Instead of my "j F Y" it was reset to the default "/".
I kept the post in case anyone else has similar issues.
Bladinium
08-25-2013, 07:16 PM
Hello everyone!
Is it possible to make the search less strict?
For example in my list I would like to search only by the first letter:
VDLV
http://puu.sh/4aIEw.png
And research: VD or VDL
http://puu.sh/4aIHc.png
it does not work (force to VDLV
Is that possible?.
Bladinium
08-30-2013, 11:31 AM
please help me :(
Bladinium
09-01-2013, 01:43 PM
pleasssseeeeeeee :'(
friendlymela
09-03-2013, 04:25 PM
do i create staff application with this mod ?
ozzy47
09-03-2013, 05:10 PM
do i create staff application with this mod ?
You could use this mod to create staff applications, https://vborg.vbsupport.ru/showthread.php?t=261978
friendlymela
09-04-2013, 10:03 AM
You could use this mod to create staff applications, https://vborg.vbsupport.ru/showthread.php?t=261978
Thanks Dear you always helpful for me :rolleyes:
edytwinky
09-04-2013, 03:54 PM
Does this mod allow you to e-mail answers to both the administrator AND the person who submitted it? Or just the person who submitted it?
smirkley
09-06-2013, 03:15 AM
You could use this mod to create staff applications, https://vborg.vbsupport.ru/showthread.php?t=261978
Yup, and works nicely.
Plus can be used for feedback, and other inputs that require less than normal forum posts.
nano_9219
09-10-2013, 02:02 PM
someone can explain me how i could redirect my form, depending of radio-button elected in a question? Vbulletin 4.2 with easy forms 4.3
someone can explain me how i could redirect my form, depending of radio-button elected in a question? Vbulletin 4.2 with easy forms 4.3
Hi,
add a php-hook in "before submit" and paste this
if ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
elseif ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
else ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
For each answer you have to make an elseif for the last only one else . The things that you have to edit yourself are standing in the ... **
regards
ps: srry for my bad english :P
Cla75
09-18-2013, 02:07 PM
I have a problem ...
by filling out the form using the "accented letters" (à, è, ì, ò, ù) I get an error
Failed to submit the form. The following error (s) occured:
The message you have entered is too short. Stretch your message to at least 4 characters.
Heckwork
11-15-2013, 09:08 AM
I'm trying to pass a value to a form field with:
<a href="misc.php?do=form&fid=1&val1=test-123">Link</a>
in Form Hook Before Submit:
$val1 = $qo[50];
But it's not working. Any suggestions?
Heckwork
11-15-2013, 02:17 PM
I'm trying to pass a value to a form field with:
<a href="misc.php?do=form&fid=1&val1=test-123">Link</a>
in Form Hook Before Submit:
$val1 = $qo[50];
But it's not working. Any suggestions?
Ok, I got it
<a href="misc.php?do=form&fid=1&val1=test-123">Link</a>
Hook: Form Start:
$q[50] = $_GET['val1'];
Za4a Tuner
11-16-2013, 12:22 PM
Hello,
i use php 5.4.18 and vB 4.2.1pl1
When i try to edit a question, the fields are empty!
Sending a form doesn't work, because "the title and the textfile is empty".
How can i fix this???
kr Chris
Gamelobby
11-17-2013, 09:46 PM
Weird issue..
I have used this for years, & the form that i have using still works fine, but i added a new one & it has issues.?
Since it was having issues i updated this mod, but nothing changed, the new form still doesn't work & the old one still works fine.
The issue of the new form is that it will post in the correct thread, but only the title.. the post is basically blank (except for username & title) none of the questions or answers.
Here is what i have in the Form Output Styling.. (custom form output)
{username} - {formtitle}
{qn_1}
{qo_1}
{qn_2}
{qo_2}
{qn_3}
{qo_3}
{qn_4}
{qo_4}
{qn_5}
{qo_5}
{qn_6}
{qo_6}
{qn_7}
{qo_7}
**edit**
Ok i got that issue fixed, it was the question numbers, they weren't 1-7 they were like 72-80 or something.
But my next question/issue is the bbcode doesn't seem to be working. It's not the end of the world, but it would be nice to have it look nice.
bbcode is not affecting the post whatsoever.
Here is what i have in the Form Output Styling
Form Output Top BB code: {formtitle}
Question BB code: Bold BBCode (not working in this post for somereason)
Answer BB code:
Section BB code:
Form BB code: Blank (what does this mean.?)
Domenico
11-22-2013, 11:28 AM
Can a form be made default for only the thread starter in a chosen forum ?
audzilla
12-06-2013, 06:50 PM
bananalive
Had a question for you. Is there anyway to get the max text amount over 5000 i need it to be around 5600-6000. Some of are forms a very large.
I'm having this same problem. Board-wide, my maximum post limit is 15000 characters, but the form is still being capped at 5K. Is this a hard limit or can I edit it somewhere?
Thanks!
fortforum
12-06-2013, 07:41 PM
Had this mod for years, but on 4.3.0 on a 4.2.2 board, the dropdowns of "Questions" and "answers" are totaly empty. "Other variables" work, however. Any ideas, help needed.
audzilla
12-06-2013, 10:20 PM
I'm having this same problem. Board-wide, my maximum post limit is 15000 characters, but the form is still being capped at 5K. Is this a hard limit or can I edit it somewhere?
Thanks!
For anybody else who's butting up against a 5000 character form length, the answer for me was that I was sending a copy of the form via Private Message, and that's where the character limit was.
fortforum
12-07-2013, 10:56 AM
Hey folks,
trying realy hard to get this to work, but it just won?t. Running EF 4.3.0 on vb 4.2.2.
I do it exactly as here, but all i get is the ordinary newthread. I used it also in vb3.8, but there i used two plugs if im not mistaken.
I had to make a few adjustments but your post pointed me in the right direction. Clicking the New Thread button now goes to the correct form. Thanks so much! :up: :up:
New php plugin
Hook Location: newthread_form_start
Title: Easy Forms New Thread Button
Execution Order: 5
Plugin PHP code
if (in_array($forumid, array(221)))
{
header('Location: http://mywebsite.com/misc.php?do=form&fid=1') ;
}
if (in_array($forumid, array(222)))
{
header('Location: http://mywebsite.com/misc.php?do=form&fid=2') ;
}
For each forum and form, just keep adding code where the array(xxx) is the forum id and fid=xx is the form id.
Plugin is Active: Yes
tommyxv
12-09-2013, 06:21 PM
Anyway to limit a form to a certain number of submissions? Say I need 10 members to registered. After 10 no one else can submit the form.
audzilla
12-10-2013, 06:34 PM
I'm getting this error on submitted forms:
Warning: Only variables should be passed by reference in ..../forms.php on line 771
My site's recently gotten a lot more traffic, and I've parked a second domain pointing to it. Otherwise everything is the same. Anybody run into this?
SilverBoy
01-09-2014, 08:09 AM
is this great product works with 4.2.2?
SilverBoy
01-14-2014, 10:45 PM
No body can answer my question?
nano_9219
01-20-2014, 11:52 AM
Works Perfectly in vBulletin 4.2.x
SilverBoy
01-22-2014, 12:02 AM
Thanks nano
Trevor Hannant
02-02-2014, 09:59 AM
Seem to be getting an error on this with PHP 5.3:
PHP Fatal error: Cannot use object of type mysqli_result as array in /var/www/vhosts/URL/httpdocs/forum/forms.php on line 1242
Line 1242 is:
$formbit['value'] = $q[$formbit[id]];
Everything I've read re that error relates to the query_read line a few lines up - whether vB or not vB:
$formbits = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "formbits WHERE fid = $fid ORDER BY displayorder ASC"));
If I change this to :
$formbits = $vbulletin->db->fetch_array($vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "formbits WHERE fid = $fid ORDER BY displayorder ASC"));
...I can get the page but not the actual form itself. Replacing all similar lines has no effect either. Anyone else had this, edited the forms.php file and got this working?
Morrus
02-02-2014, 12:54 PM
From the above posts, it looks like this doesn't work on 4.2.2 and/or PHP 5.3?
Trevor Hannant
02-02-2014, 01:03 PM
From the above posts, it looks like this doesn't work on 4.2.2 and/or PHP 5.3?
That's the combination I'm using...
Vitaris
02-03-2014, 02:13 PM
These forms are still working perfectly on my 4.2.2 installation. (Thanks, banana! It's been a life saver!)
I have a question, though. I'm creating a form where I'd like my members to post their forms anonymously. That is, not under their usernames. I am happy to have their forms posted with my own, instead, if needed. (It's for a Secret Admirer event for Valentine's, and I don't want them to spoil the mystery by having the form posts reveal their identities.)
Is this possible?
bananalive
02-03-2014, 07:41 PM
These forms are still working perfectly on my 4.2.2 installation. (Thanks, banana! It's been a life saver!)
I have a question, though. I'm creating a form where I'd like my members to post their forms anonymously. That is, not under their usernames. I am happy to have their forms posted with my own, instead, if needed. (It's for a Secret Admirer event for Valentine's, and I don't want them to spoil the mystery by having the form posts reveal their identities.)
Is this possible?
Post to thread
Then add to hook: Form Hook: Before Submit:
$vbulletin->userinfo['userid'] = 0;
$vbulletin->userinfo['username'] = 'Guest';
Vitaris
02-03-2014, 09:01 PM
Banana, you are a legend. Thank you so much for all that you do for us! It's appreciated. :)
Trevor Hannant
02-03-2014, 10:09 PM
Installed these on a 4.2.2 installation on another server running PHP5.3 and they work fine - so there's something screwey at the server side. Oh well, back to the drawing board...
ReactionShot
02-08-2014, 03:11 AM
Hey BananaLive,
The group I'm with wants to attempt to create a field that will determine where the form information is output. For example, say I wanted to make a form that output to a different post depending on what category it was: Food, News, and Videos. I already have a thread created specifically for each one so the form would output to a specific thread depending on which option I selected.
Is that possible within EasyForms or is there a way I can modify it to complete this objective?
Thank You!
ReactionShot
Taringa! CS
02-10-2014, 10:36 PM
I'm getting errors when using special characters like (áéíóú), it says that message it's empty.
Any ideas?
andie215
02-12-2014, 06:54 PM
Hey folks,
trying realy hard to get this to work, but it just won?t. Running EF 4.3.0 on vb 4.2.2.
I do it exactly as here, but all i get is the ordinary newthread. I used it also in vb3.8, but there i used two plugs if im not mistaken.
Just wanted to say, thanks for this. Has worked a treat :)
stevieb
02-17-2014, 10:58 AM
will test this shortly on a 4.2.0 custom theme forum......
MySaltyreef
02-22-2014, 10:40 AM
hi will you be making this available for vb5.x.x ?
Potters-Online
03-09-2014, 10:50 AM
Can anyone tell me how I make a footer message post with every form ? Basically I want to add some guidelines/disclaimer to the forum as it's used in a classifieds section of the forum.
Thanks in advance :)
Taringa! CS
03-15-2014, 01:51 AM
I'm getting errors when using special characters like (?????), it says that message it's empty.
Any ideas?
Anyone?
You can test it here
http://www.gaminga.com/foros/forms.php?do=form&fid=11
user: tester
pass: 123456
twista46
03-15-2014, 12:31 PM
Sending a form doesn't work, because
"The text that you have entered is too short. Please enlarge the text on the minimum length of 1 character..
Have the problem with custum output style
Taringa! CS
03-15-2014, 12:52 PM
Sending a form doesn't work, because
"The text that you have entered is too short. Please enlarge the text on the minimum length of 1 character..
Have the problem with custum output style
You are right, if i remove the custom output style everything it's working
My custom output it's
Estado: [S/C] Sin calificar
Descripcion:
{qo_77}
Whats wrong?
twista46
03-16-2014, 09:00 AM
Please help bananalive
the problem is when you want to use the character € and $ in the form
{qo_1}
{qn_12} {qo_12} {qn_7} {qo_7}€ {qo_8} {qn_9} {qo_9} {qo_20}
{qo_11}
{qo_5}
{qo_6}
{qn_13} {qo_13}
{qo_13}
zushiba
03-24-2014, 04:05 PM
I realize this is a longshot but is it possible to add a 6th Column to a grid question? We need 1-5 + Don't know.
dany_danay
04-01-2014, 05:39 AM
I think this was ansewred but i cant find it.. Can i show a form into a internal vbulletin page?
aaronhaul
04-01-2014, 09:10 AM
Hello guys,
Has anybody tried out this mod for vB 4.2.2 and did it function correctly?
dany_danay
04-09-2014, 07:58 AM
Noone?
gabestah
04-26-2014, 11:42 AM
Does anyone have the PHP plugin code to allow me to manually create a new thread in a specific forum when a form is submitted? I have configured Easy Form in the settings to post on submission to a forum, but I would like a way to have a second, new thread be created on submission as well.
Any help would be much appreciated!
HolyKiller
04-26-2014, 03:15 PM
I can confirm that the mod works fine on 4.2.2 PL1
MIWASA
05-08-2014, 03:17 PM
hi the mod works and all but when i have tested submitting a form to post in a new thread i get a database error, so i pushed the back button and resubmitted the form and it went through and then got this eror at the top of the page
Warning: Only variables should be passed by reference in ..../forms.php on line 771
Any way i can fix this ?
also the forms are not showing in my navbar nor my quick links, i had to access the forms directly from the url being /forum/forms.php
awesome mod though just what a person like me needs :)
marked as installed and nominated
MIWASA
05-10-2014, 12:31 PM
bumb
keyla31
05-14-2014, 01:17 PM
For some reason the forms stopped sending out the data emails to me, any ideas what could stop the emailing out results?
Chivster
05-14-2014, 03:24 PM
Hello,
I just installed the plugin and everything, however it does not appear in navbar or in quick navigation either.
When I try to bypass it with just entering the path of the forms.php nothing happens.
What can I have done wrong?
KGodel
05-15-2014, 11:13 PM
Would still love an anonymous option to be added at some point where certain forms can be submitted anonymously.
blind-eddie
05-15-2014, 11:32 PM
Would still love an anonymous option to be added at some point where certain forms can be submitted anonymously.
There is an addon here that does allow members to post anonymously in select forums. If the form is posted in that select forum then the one that posted the form would in fact post it anonymously...
Not sure if it is available for vb4.... good luck...
bananalive
05-17-2014, 01:52 PM
Hello,
I just installed the plugin and everything, however it does not appear in navbar or in quick navigation either.
When I try to bypass it with just entering the path of the forms.php nothing happens.
What can I have done wrong?
Try creating a form at yourforum.com/forums/forms.php?do=newform
bananalive
05-17-2014, 01:57 PM
Would still love an anonymous option to be added at some point where certain forms can be submitted anonymously.
Set up the form as attached screenshot
$vbulletin->userinfo['userid'] = 0;
$vbulletin->userinfo['username'] = 'Guest';
https://vborg.vbsupport.ru/attachment.php?attachmentid=149141&stc=1&d=1400338669
KGodel
05-18-2014, 01:28 AM
Is there a way to mask the IP as well?
madness85
05-18-2014, 07:23 AM
Great mod :) is it possible to have users ip address as the created thread title? I'm using this for unregistered users & would prefer the title as ip.
Chivster
05-20-2014, 03:35 PM
Try creating a form at yourforum.com/forums/forms.php?do=newform
Hello,
When I try and do that, it says 404 file not found, even tho I have uploaded the files, and imported the plugins.
blind-eddie
05-20-2014, 03:45 PM
Is you forum in a folder named forums or forum..?
Add forms.php?do=newform to the URL where ever your forum is located
Example:
https://vborg.vbsupport.ru/forms.php?do=newform
or
https://vborg.vbsupport.rus/forms.php?do=newform
or
http://www.vbulletin.org/forms.php?do=newform
See what I mean?
KGodel
05-24-2014, 09:00 PM
Hey banana. My users consistently get an error of "Message is too Short" when they use special characters in any part of their form if there is custom output. If there is no custom output, this error does not exist. Any hint as to what I can do to fix it?
KGodel
06-10-2014, 12:11 AM
Bump. Has anyone solved the "special characters" bug?
orangedays
06-12-2014, 04:22 AM
can i call the form in vbulletin CMS?
msmayz
06-16-2014, 11:32 PM
Hi! I need a little help. How can I allow my users to select the subforum into which their form results will be posted?
Edit: Never mind; saw this post (https://vborg.vbsupport.ru/showthread.php?p=2232962#post2232962) and was able to extrapolate my own code based on it.
msmayz
06-17-2014, 07:13 AM
Sorry for the double post. I do have another question: What code would I use to allow my users to choose a thread prefix? Maybe something like this? (The prefix IDs For_Sale and For_Trade are already built into my forum.)
if (stristr($qo['4'], "Sale")) {
$prefixid = For_Sale;
}
elseif (stristr($qo['4'], "Trade")) {
$prefixid = For_Trade;
}
Edit: Again, never mind. Found this post (https://vborg.vbsupport.ru/showpost.php?p=2105915&postcount=879), and it works -- now my users can choose their thread prefix.
KGodel
06-19-2014, 03:22 AM
Aside from the "special characters" bug, I have unregistered/not logged in unable to view a form, yet when it is submit, I guess the timeout occurs and it allows them to submit the form? I simply added a check beforehand to make sure if they were marked as 0 then give them a warning
Froggyv
07-10-2014, 12:36 AM
I am confused regarding what the forms actually do. Does it give me a formatted style for posts or is it a form for emails or what?
bananalive
07-11-2014, 12:06 PM
I am confused regarding what the forms actually do. Does it give me a formatted style for posts or is it a form for emails or what?
It can do both.
Form can Submit to:
new thread in forum
new post in thread
new pm to user
email address
save to database
You can customise formatting too.
KGodel
07-17-2014, 07:01 AM
Any update on the bug many of us get with special characters?
stevieb
07-19-2014, 10:05 AM
nice...
Taringa! CS
07-22-2014, 10:49 PM
Any update on the bug many of us get with special characters?
I'm waiting the same fix...
Swatman1
08-01-2014, 10:13 PM
How do I add this form as a forum section?
Example
General forum:
General Talk
Off Topic
Tech news
FORM
KGodel
08-10-2014, 06:46 PM
Any update on the bug many of us get with special characters?
Still looking for this, but also another question:
Is there a way to determine what forum you want a new thread posted to (if that is the option selected) based on an answer to one of the questions? So, for example, you have a list where you can choose "a,b,c, or d"and depending on which option you pick it will both to a different forum. This would be very useful! Can it be done with hooks?
iraqiboy90
08-12-2014, 01:28 AM
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.
cant get this working at all.....
I've tried elseif(stristr($qo...if ($qothis
$form['forumid']
and even
$forumid
bananalive
08-16-2014, 09:28 PM
cant get this working at all.....
I've tried elseif(stristr($qo...if ($qothis
$form['forumid']
and even
$forumid
Try in_array() rather than stristr()
(it is also more efficient for your server)
bananalive
08-16-2014, 09:32 PM
can i call the form in vbulletin CMS?
Embed it as php module or in an iframe
bananalive
08-16-2014, 09:45 PM
Hey banana. My users consistently get an error of "Message is too Short" when they use special characters in any part of their form if there is custom output. If there is no custom output, this error does not exist. Any hint as to what I can do to fix it?
I can't reproduce this, please can you provide more details, so that I can find a fix.
Taringa! CS
08-17-2014, 07:30 PM
I can't reproduce this, please can you provide more details, so that I can find a fix.
If you use custom output with special characters (??????)
You can replicate it here
http://www.gaminga.com/foros/forms.php?do=form&fid=17
user: test / password 123456
Try to send a message like (Aqu? estamos ttodos unidos g?ria"
KGodel
08-18-2014, 11:13 PM
Taringa is correct. It's the issue we are having as well.
niko236
08-19-2014, 12:14 PM
Hi !
I use this mod, but when i put several questions with the vb editor, they display the same answer as the last. So, I can't use more than one question with vb editor.
robbyg
08-22-2014, 02:42 AM
I am new here and just installed 4.2.2 and pretty much have my forum setup.
I saw Bannalive excellent addon and its exactly what I was looking for but I need to use it in a slightly different manor than intended.
What I would like to do is have a Navbar button that allows my members to register their equipment by manufacturer, model, Year and serial number.
I created a form with all the fields etc and it works like a charm except that everybody can see what each person has. Now I know this was the main intent of the addon but in the options I have been able to limit it that it says "your form results" and no other options but the problem is that if i use a regular member account and they click on the record they saved it comes back and says:
"you do not have permission to access this page. This could be due to one of several reasons: etc etc."
This happens even if they have the only filled out form in the database. (made by the test user with regular access). If I go in and change the settings they can see everything and also see polls of all the data, which is something I don't want.
Even in the current mode I have no way of turning off the ability of a regular user to create a new form or import an xml form without also blocking them from seeing anything.
Basically I would like them to be able to access the form i made and put in their info and have it saved so they can come back and see it if they need to but not be able to see other users data. Only the moderator would be able to see all the data and be able to coordinate the data so we can create an anonymous table of serial numbers for each model by year.
(Using a Mountain bike forum for example)
For example the benefit to the members is lets say they wanted to know based on a serial number what year a particular model of mountain bike was made. The data we would have would show that based on information from our members that we know that serial number 10030 to 10950 is the earliest and oldest we have recorded for 2010. So if they are buying a used bike once they ask for the serial number they have an idea of when it was manufactured or sold.
They also have the benefit that if their bike is stolen they can look at the website and see what the serial number it was and even have records for bikes they may have bought and sold over the years.
Sorry for the long post, I just wanted to explain what I am trying to do.
Any help would be greatly appreciated. I am so close to making this work if I could just figure out why they cannot see their own record without seeing the others and also be able to turn off the create new form without disabling the whole thing for the regular members.
Thank you for any help.
Robert
MGO_TOM
08-22-2014, 08:23 PM
Hello, I just realized there seems to be a bug with this…
I have it setup to create new posts in a couple of sub-forums where I want specific information to be included in the posting. That part works great. :)
The issue is, I am finding that NONE of the posts in these two sub-forums are being indexed for searching. Somehow, Easy Forums is bypassing whatever script is causing new posts to be indexed for searching (via vBulletin's built-in DB Search).
I am running vBulletin v4.2.2 Patch Level 1
TIA,
-Tom
Trevor Hannant
08-24-2014, 08:34 PM
Anyone got this running with vB 4.2.2 on a server using PHP 5.3.10 with Suhosin (I know, I know - not my choice...)?
robbyg
08-26-2014, 08:27 AM
Is this Addon abandoned?
robbyg
08-30-2014, 06:31 PM
Unfortunately I believe this Mod has been abandoned. There are several major problems with it such as the permissions don't work properly.
Does anybody know of anything that is similar that I might try?
djbaxter
08-30-2014, 11:19 PM
Works fine for me vB 4.2.2 PL1
robbyg
09-01-2014, 08:04 AM
I am also using 4.2.2 sp1 and I have not been able to make the permissions work as described.
A user cannot be blocked from editing another persons form unless you also block them editing or even seeing their own form. Most of the permissions just dont work as they are supposed to.
djbaxter
09-01-2014, 11:14 AM
None of that is true in my installation. Either you are doing something incorrectly or you have a conflict with another add-on.
robbyg
09-01-2014, 03:24 PM
Can you limit a user to only seeing the forms they filled out?
Kind of like them having private info that only them or an admin can see?
Because that also does not work on mine.
djbaxter
09-01-2014, 05:11 PM
Yes. That is essential for my purpose
robbyg
09-01-2014, 09:37 PM
Thanks, I am going to retry this installation and see what happens.
I will let you know one way or the other if I have any luck.
robbyg
09-04-2014, 02:33 AM
Still no luck with easy forms and permissions.
For an Admin it works fine but a regular member unless I change the settings to the point where he can see everyones information it will not work.
This is what the user see's after he fills out the form and its saved to the database and the comes back to see his data.
Forms
Serial Number Registry
Your Form Results
If he clicks on the "Your Form Results" he gets.
____________________________________________
Tester1, you do not have permission to access this page. This could be due to one of several reasons:
1.Your user account may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
2.If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation
__________________________________________________ __
As an admin I can see his form just fine.
Under the form permissions I have it set like this.
See attachment #1
Under Easy forms settings I have it set like this: See attachment 2-5
Any help would be greatly appreciated. I have everything working except I cannot get a registered user to be able to see their own information while not being able to see every one's. I am feeling real stupid right now:erm:
bananalive
09-04-2014, 01:10 PM
If you use custom output with special characters (??????)
You can replicate it here
http://www.gaminga.com/foros/forms.php?do=form&fid=17
user: test / password 123456
Try to send a message like (Aqu? estamos ttodos unidos g?ria"
I tried to reply to your email, but the email bounced.
What have you got in your custom form output. This will be what is causing the error, rather than the special characters.
bananalive
09-04-2014, 01:14 PM
I am also using 4.2.2 sp1 and I have not been able to make the permissions work as described.
A user cannot be blocked from editing another persons form unless you also block them editing or even seeing their own form. Most of the permissions just dont work as they are supposed to.
I think you are confusing permissions.
Editing forms (i.e. Form 1 created by user1, Form 2 created by user 2) and editing form results (ie. what user 3 and user 4 have submitted to form 1) are two separate permissions.
bananalive
09-04-2014, 01:18 PM
Can you limit a user to only seeing the forms they filled out?
Kind of like them having private info that only them or an admin can see?
Because that also does not work on mine.
You can currently do, this by adjusting permissions.
For a form by form basis, you can use attached and edit permission 'Form results database' (under edit form -> form permissions.
MGO_TOM
09-04-2014, 01:59 PM
Hello, I just realized there seems to be a bug with this?
I have it setup to create new posts in a couple of sub-forums where I want specific information to be included in the posting. That part works great. :)
The issue is, I am finding that NONE of the posts in these two sub-forums are being indexed for searching. Somehow, Easy Forums is bypassing whatever script is causing new posts to be indexed for searching (via vBulletin's built-in DB Search).
I am running vBulletin v4.2.2 Patch Level 1
TIA,
-Tom
I'm still having this issue.
-Tom
robbyg
09-04-2014, 05:39 PM
You can currently do, this by adjusting permissions.
For a form by form basis, you can use attached and edit permission 'Form results database' (under edit form -> form permissions.
Bananalive I want to thank you so much for taking the time out to add that option to the permissions. It's exactly what I need for what I am trying to do, I am going to try this out as soon as I get home and have access to my sandbox environment.
Thank you so much.
BTW do you have a PayPal donation link?
Robert
robbyg
09-05-2014, 04:59 AM
Bananalive it works great, thank you so much :)
One question, how do I prevent the Registered user from exporting all the results into an excel file?
I noticed it blocks them from seeing other peoples info but the export option sends out everything.
BTW I signed up to your website to look for a Donate button and could not find one, how do I send you a donation. Your support has been outstanding and I want to give something back.
Rob
bananalive
09-05-2014, 03:03 PM
Bananalive it works great, thank you so much :)
One question, how do I prevent the Registered user from exporting all the results into an excel file?
I noticed it blocks them from seeing other peoples info but the export option sends out everything.
BTW I signed up to your website to look for a Donate button and could not find one, how do I send you a donation. Your support has been outstanding and I want to give something back.
Rob
Fixed export issue, in attached
Donation link
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MH3NBWBMFL4UU
Thanks
robbyg
09-05-2014, 05:27 PM
Hi Bananalive
Works perfectly, thank you so much for all the help.
I sent you a donation, so check your email.
BTW you should officially make this version 4.2.7 on the first page. These changes add a great new feature and don't change anything if the person does not tick the new option. Just a suggestion :)
Thanks again
Rob
Taringa! CS
09-05-2014, 10:24 PM
I tried to reply to your email, but the email bounced.
What have you got in your custom form output. This will be what is causing the error, rather than the special characters.
I've got this:
{qn_106}: {qo_106}
{qn_107}: {qo_107}
Any ideas?
ageurtse
09-09-2014, 06:29 PM
Could someone tell me why i can't see the forms link in my navbar or between quicklinks.
i use vbulletin 4.2.2 pl1
and easyform 4.3.0
and is it possible that a user can acces a form ?
robbyg
09-10-2014, 01:36 AM
Could someone tell me why i can't see the forms link in my navbar or between quicklinks.
i use vbulletin 4.2.2 pl1
and easyform 4.3.0
and is it possible that a user can acces a form ?
Something got broke when they moved to 4.2.2
You now need to manually add it to the Navbar from the CP.
Yes a user can access a form if you give that group permission.
If you need exact details let me know.
luggz
10-07-2014, 01:38 AM
I have had this installed for a long time and started to get this message when users have filled out the questions after one time submitting it
This forum requires that you wait 30 seconds between posts. Please try again in 30 seconds.
Can you help determine why?
chelsoi18
10-07-2014, 07:58 AM
Guys i have succesesfully installed the this form, i can see it in admincp , but i can't see it in my form or in nav bar... I use Powered by vBulletin® Version 4.2.2 , with this vbulletin skin
vBulletin Skins by Bluepearl Skins
Can someone tell me what it's wrong ?
robbyg
10-08-2014, 07:49 AM
You need to manually add it to the Navbar.
Storrm
10-13-2014, 02:12 PM
Hi,
Is it possible to configure Easy Forms to post a copy of the submitted form (inc options for polls etc) to 2 separate forums? I use Easy Forms for applications and would like to leave one copy in the applications forum (only applicants can see their own forms) and make a copy in an admin folder for discussion.
Thanks
CuteC@t
10-15-2014, 11:30 AM
Guys i have succesesfully installed the this form, i can see it in admincp , but i can't see it in my form or in nav bar... I use Powered by vBulletin? Version 4.2.2 , with this vbulletin skin
vBulletin Skins by Bluepearl Skins
Can someone tell me what it's wrong ?
I have the same problem, someone please guide how to add it manually to the Navbar. Thanks
HM666
10-21-2014, 02:57 AM
Upgraded PHP to 5.4.33 from a 5.3 version and running vBulletin 4.2.2 P1 and now I get this fatal error when trying to access the form, its not just the guy above there is a problem with the hack.
Fatal error: Cannot use object of type mysqli_result as array in /home/public_html/forum/forms.php on line 1242
It was working before the upgrade. Please fix.
HM666
10-21-2014, 06:33 PM
Anyone? I really need to know how to fix this as this is a VERY important part of the web site.
HM666
10-24-2014, 08:35 PM
Seems this mod has fallen by the way side the developer has not been on here since Oct 4. :( Tried sending him a PM but his inbox is full, so I guess he may not be coming back. Does anyone who is using this mod know how to fix this?
Zeus1221
10-26-2014, 01:51 AM
Hi mate,
I recently installed the plugin Easy Form for VB 4.x
I've used this plugin previously and never had a problem with it.
Now that I installed it recently and the target ID won't direct me to the easy forms page.
I add this URL after my domain name /forms.php?do=forms and it just redirects me back to my main forum homepage.
I was wondering why it's doing this ?
I'd appreciate any feedback, thanks.
HM666
10-26-2014, 06:00 AM
Hi mate,
I recently installed the plugin Easy Form for VB 4.x
I've used this plugin previously and never had a problem with it.
Now that I installed it recently and the target ID won't direct me to the easy forms page.
I add this URL after my domain name /forms.php?do=forms and it just redirects me back to my main forum homepage.
I was wondering why it's doing this ?
I'd appreciate any feedback, thanks.
Did you try to access them via the admincp? If you go into Settings>Options and find the Easy Forms and double click on it, at the top is a link in the top box that you add permissions for usergroups. Try that.
Zeus1221
10-26-2014, 11:19 AM
Did you try to access them via the admincp? If you go into Settings>Options and find the Easy Forms and double click on it, at the top is a link in the top box that you add permissions for usergroups. Try that.
Yeah, the plugin is active in the ACP and I've set the permissions for each usergroup the way they should be and still the same thing.
HM666
10-26-2014, 01:35 PM
Yeah, the plugin is active in the ACP and I've set the permissions for each usergroup the way they should be and still the same thing.
Setting permissions is not what I said. There is a link in that box that leads you to the forms. It will usually work when the others may not. Try clicking the link to get to the forms.
https://vborg.vbsupport.ru/external/2014/10/5.jpg
KGodel
10-26-2014, 04:56 PM
Hey bananalive. I was wondering if there is a way to append a form to registration so that once they click register it will also submit the form. Thanks in advance!
Zeus1221
10-27-2014, 11:54 AM
Setting permissions is not what I said. There is a link in that box that leads you to the forms. It will usually work when the others may not. Try clicking the link to get to the forms.
https://vborg.vbsupport.ru/external/2014/10/5.jpg
That works, thanks for your help.
grey_goose
10-27-2014, 01:11 PM
In output styling, is it possible to auto-add the Month Year to the title: [Title (Month, Year)] without having to have the date as a question on the form?
HM666
10-27-2014, 08:05 PM
That works, thanks for your help.
No problem. :)
bananalive
10-29-2014, 05:03 PM
In output styling, is it possible to auto-add the Month Year to the title: [Title (Month, Year)] without having to have the date as a question on the form?
Add the month/year/date to php variables in the Form PHP hooks, then use those variables in the custom output.
bananalive
10-29-2014, 05:08 PM
I've got this:
{qn_106}: {qo_106}
{qn_107}: {qo_107}
Any ideas?
That looks fine.
Do you have any special characters in the form question(s)?
HM666
10-29-2014, 08:01 PM
Hey bananalive what about my issue? Its a few posts above. Here is the post number: https://vborg.vbsupport.ru/showpost.php?p=2519595&postcount=1908
Also here is another thread with more info: https://vborg.vbsupport.ru/showthread.php?t=315024
m7sen
10-29-2014, 11:48 PM
is this work with vb3.8.8
HM666
10-31-2014, 09:00 AM
Hello? You come on and answer another question and do not attempt to answer mine!?! You could have at least acknowledged my question or said you don't know how to fix it if you do not know. Wow! Well I will NOT be recommending your paid for mods to any of my clients. I often to recommend PHP coders mods to clients, but I'll skip yours since you seem to ignore me and it seems that your support is selective. Its not like I did not click install on the thread.
m7sen
10-31-2014, 05:06 PM
hi bananalive
can u help me here
https://vborg.vbsupport.ru/showthread.php?t=201097
upgrade it for vb3.8.8 pleaseeeeeeeeeee
tbworld
10-31-2014, 06:47 PM
This modification has not been updated since 2011, and is marked unsupported. If you wish to use a modification such as this on future vbulletin versions, it may require you to further modify it yourself.
:)
m7sen
10-31-2014, 07:00 PM
bananalive where are u
help us please
tbworld
10-31-2014, 07:14 PM
can anyone help me!
It is unclear on what help you are requesting. Only the original author can update the released modification here on vBulletin.org.
cjnettleingham
11-03-2014, 03:44 PM
How do i install this?
ozzy47
11-03-2014, 03:55 PM
How do i install this?
It tells you that in the first post.
Installation
Download and then extract .zip archive
Upload the contents of upload folder to forum root
(Allow Overwrite "YES" for overwrite)
clientscript\easyforms.css -> \clientscript\
clientscript\easyforms.js -> \clientscript\
Import product file (product-easyforms v4.0.xml) in admincp
AdminCP -> Plugins & Products -> Manage Products -> [Add/Import Product]
Change usergroups permissions at:
AdminCP -> vBulletin Options -> Easy Form Options
m7sen
11-05-2014, 12:34 AM
It is unclear on what help you are requesting. Only the original author can update the released modification here on vBulletin.org.
my problem is
I have triple checked all the permission settings for the user group, forum, easy form and the form itself. I want all submissions being they are submitted to be unapproved.
https://vborg.vbsupport.ru/showthread.php?p=2521388#post2521388
and want to do select a specific time (like 24 hourse) so that member would be able to re- fill the form again, can i do it by ip members and guest too
Regarding the issue that was being discussed here: https://vborg.vbsupport.ru/showthread.php?t=315024 : HM666, you could try adding this line before the "while" that's a few lines before 1242:
$q = array[];
but as I mentioned in the other thread, that won't really be right bcause it won't have any values. I think it may be that your button needs to submit a form with some hidden data. Although it could also be a bug that was never noticed before because warnings were suppressed.
I see that you posted in the Paid Services forum, that may be the best idea after all.
bridge2heyday
11-05-2014, 07:49 PM
HM666 : Did you put any plugins at hook location easy_forms_view_question_start ?
HM666
11-05-2014, 11:46 PM
and want to do select a specific time (like 24 hourse) so that member would be able to re- fill the form again, can i do it by ip members and guest too
This is not built into this mod that I know of so what you are looking at wanting would need to be specially coded from a PHP coder.
HM666
11-05-2014, 11:54 PM
Regarding the issue that was being discussed here: https://vborg.vbsupport.ru/showthread.php?t=315024 : HM666, you could try adding this line before the "while" that's a few lines before 1242:
$q = array[];
but as I mentioned in the other thread, that won't really be right bcause it won't have any values. I think it may be that your button needs to submit a form with some hidden data. Although it could also be a bug that was never noticed before because warnings were suppressed.
I see that you posted in the Paid Services forum, that may be the best idea after all.
Actually I was able to call up the form using
$q = array();
That actually fixed it! :)
Thanks!
ozzy47
11-05-2014, 11:58 PM
Well holy cow, hopefully that fixed it for good, and no other issues pop up. :)
HM666
11-06-2014, 12:25 AM
Well holy cow, hopefully that fixed it for good, and no other issues pop up. :)
I hope so! It seems to have worked and the form is working again when I submit it so I'll be keeping my fingers crossed lol.
Actually I was able to call up the form using
$q = array();
That actually fixed it! :)
Thanks!
Yeah, that was a typo, it should have been parens and not square brackets. Anyway, glad you got it figured out.
HM666
11-06-2014, 02:26 AM
Yeah, that was a typo, it should have been parens and not square brackets. Anyway, glad you got it figured out.
Ah ok yeah me too. When I put it in with the brackets I still had an error, but I looked in the code of the file and noticed that after almost every array it was () so figured I had nothing to lose. The worse it would do is crash things and I could just change it right back and get it back lol.
fxdigi-cash
11-08-2014, 01:13 PM
Ah ok yeah me too. When I put it in with the brackets I still had an error, but I looked in the code of the file and noticed that after almost every array it was () so figured I had nothing to lose. The worse it would do is crash things and I could just change it right back and get it back lol.
Thanks for the solution. just to be on the right track. you replace this with your code:
$formbit['value'] = $q[$formbit[id]];
replace with this:
$q = array();
Thanks for the solution. just to be on the right track. you replace this with your code:
$formbit['value'] = $q[$formbit[id]];
replace with this:
$q = array();
Actually it was supposed to go before the 'while' statement which is a few lines above line 1242. But I'm thinking that you might be able to just comment out line 1242 (the one you posted), because of course an empty array isn't going to set any value.
m7sen
11-14-2014, 04:28 PM
hi guys
can anyone help me
# I want to do select a specific time (like 24 hourse) so that member would be able to re- fill the form again
can i do it from ip members and guest too
# I want to make the forms can not be submitted until approved by the Administration (i try $newpost['visible'] = '0';)
# I want to put The option to search for answers on the form fields in theard
# I want put new post button in theard if i use Post in Thread and new Thread button in forumdisplay if i use Forumid where Thread is posted
# i want to add fields answers in header moving bar
help me please :(
else
I add a question
What is your sex ?
There are two options
one is Male
two is Female
i want to add icon for option one and another for option two
and answer is be icon
can i do it ?
or if i want add blue color for male and Pink for female !
and i add another question
Choose your country ?
i want the answer be icons of state flag
nchristoph
12-07-2014, 06:26 PM
Just curious: Will this mod be rewritten for VB 5 or is there anything similar for VB5?
mikez
12-25-2014, 04:05 PM
When I look at the forms in the Nav Bar to select a form there is a line of information I only want admin to see. Currently all members can see too much confidential information
What settings need to be adjusted to get rid of
Form Results'
Form Results Table
Results Poll
Export to xls
All of this features shoul only be seen by admin
Fields
12-25-2014, 04:43 PM
When I look at the forms in the Nav Bar to select a form there is a line of information I only want admin to see. Currently all members can see too much confidential information
What settings need to be adjusted to get rid of
Form Results'
Form Results Table
Results Poll
Export to xls
All of this features shoul only be seen by admin
Go to your AdminCP > Settings > Options > Easy Forms Options
There you can set the usergroups.
Taringa! CS
01-01-2015, 01:05 PM
That looks fine.
Do you have any special characters in the form question(s)?
Yes, if any special characters are on questions or answers, the form result it's blank
Taringa! CS
01-01-2015, 01:06 PM
Taringa is correct. It's the issue we are having as well.
Have you fixed it? Thanks
Zeus1221
01-08-2015, 10:21 AM
So I've created a form with the easy forms plugin, I've used this plugin a lot and know how it works and how to use it correctly. My problem is that whenever I try submit this particular form it shows this;
The message you have entered is too short. Please lengthen your message to at least 3 characters.
I edited the minimum amount of characters per post to 1 and it still shows the error.
I was wondering what could be causing this ?
Will provide screen shots if necessary.
Master Of Unive
01-08-2015, 05:15 PM
Woa, how did I skip this great mod!
HolyKiller
01-09-2015, 11:03 PM
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.
I know it is very very old post, but i'm facing the same situation. I'm running vB 4.2.2 PL 4 and EasyForms 4.3.0.
I've verified the fact that it is not checking the session upon form submit ... reproducing is easy ... open a form and start filling it, then open another tab in your browser and logoff from forum. Then go back to the tab with the form and submit it. Form is submitted under your name BUT the userID gets saved as "0" => Guest.
Any ideas how to fix this? Might be some hook issue or something?
Thank you in advance
Holy
EDIT: Ok, i figured it out ^^
Open forms.php and search for: (around line 112)
if ($_POST['do'] == 'postform')
{
Add following code bellow the curly bracket :
if ($vbulletin->userinfo['userid'] == 0)
{
standard_error(fetch_error('session_timed_out_logi n'), '', false, 'STANDARD_ERROR_LOGIN');
}
Save, upload, profit :]
-=Leb=-
01-14-2015, 09:36 PM
Hi all, i know this is not supported hack anymore, but any idea how to fix that error
my members are having problem using the form only on google chrome
This forum requires that you wait 30 seconds between posts. Please try again in 30 seconds.
SimonB
02-07-2015, 12:26 PM
Hi all
Just installed this mod for a "recipe database" we want to build.
I have created a plugin as per this post:
https://vborg.vbsupport.ru/showpost.php?p=2404481&postcount=1765
And modified it as per this post:
https://vborg.vbsupport.ru/showpost.php?p=2404494&postcount=1767
in order to create a new form on the "New Thread" button for the applicable forum
My code is as follows:
if (in_array($forumid, array(45)))
{
header('Location: http://www.myforum.com/misc.php?do=form&fid=1') ;
}
Where my forum_id is 45 and form_id =1
Execution order is 5, plugin is active.
But nothing happens when I create a new thread in the applicable forum - it just starts a new post as per normal.
So what have I done wrong?
The location URL works fine.
vbulletin version is 4.2.2 PL4
Which hook location are you using for your plugin? The plugin at the first link uses a different hook than the modified one at the second link.
SimonB
02-07-2015, 01:42 PM
Which hook location are you using for your plugin? The plugin at the first link uses a different hook than the modified one at the second link.
I'm using newreply_form_start. Which one should it be? newthread_form_start?
It should be newthread_form_start if you want it to happen when a new thread is started.
SimonB
02-07-2015, 07:20 PM
It should be newthread_form_start if you want it to happen when a new thread is started.
Great, thanks for the assistance. Now to work out some styling issues, specifically how to make sure the answers appear on the same line as the question
blind-eddie
02-08-2015, 03:00 AM
If you have not figured out how to get your edit to work yet, the modification in the link below is for 3.8 but will work in 4.2.2.
https://vborg.vbsupport.ru/showthread.php?t=102923&page=5&highlight=edit+new+thread+button
HM666
02-12-2015, 07:29 PM
Does any one know if its possible to make it where I can as an admin fill out a form and then PM the results to a member of my choice without having to create a new form for each member I have to do this for? There is an option to PM members and you can list the usernames, but I would only want to PM a certain form result to a certain member from the same form. I would be creating a quote for work and then sending it to a member via PM. Is it possible to set this up?
Skyrider
03-02-2015, 07:16 PM
From the few posts above "newreply_form_start" hook plugin (that is mentioned in other posts), will this make it possible that each new reply in threads will make a form of which replies in that specific thread you created the reply in?
We have a special section on our forums which requires custom forms that the user is required to fill in. However, this section only works on new thread forms, and posting it in a specific thread. What I need is when a user is replying in a thread a user has made, it shows up a list of required forms of which will also be posted in the users thread, rather than a specific one.
Fields
03-05-2015, 04:57 PM
I get the following error when trying to submit a form:
Please complete both the subject and message fields.
Do you know how to fix it? :)
EDIT: Fixed it, PHP 5.4 caused the error.
Skyrider
03-14-2015, 02:20 PM
Anyone? *See my post above.
Hi,
Loaded upload and ran, imported the xml file, and got the easy forms in the options.
Changed as said to do..
... No add form button in quick links or navbar???
--- how do a create a form?
Anyone know what I did wrong?
uploaded files wrong?
Just want to do a simple form
Judy of it is I don't think it installed right. Put the contents of upload folder into Forum .... some went into
client script
and
includes
Then loaded xml file
Ok Sorta got it to work....
I have a form and it connects with a button i made but you have to log in again it drops the cookie.
In the cpannel you cannot make the links for the forum button or in quick links
Any ideas?
stevieb
04-14-2015, 08:41 PM
Ok Sorta got it to work....
I have a form and it connects with a button i made but you have to log in again it drops the cookie.
In the cpannel you cannot make the links for the forum button or in quick links
Any ideas?
To access forms you literally visit www.yourforum.com/forms.php
From there (/forms.php) you click "add / edit" etc
SaN-DeeP
04-15-2015, 07:00 PM
Awesome modification..
Never expected vbulletin can do this kind of stuff, gives me more ideas.
Thanks.. trying this code on few sites now..
To access forms you literally visit www.yourforum.com/forms.php
From there (/forms.php) you click "add / edit" etc
I did get the form made.
When a user click on the form button he has to log in again.
For some reason it drops the cookie.
In the Cpannel it would not let me make the button or quck link but i was able to link it up mys elf.
Any ideas :confused:
Fields
04-20-2015, 01:32 PM
I did get the form made.
When a user click on the form button he has to log in again.
For some reason it drops the cookie.
In the Cpannel it would not let me make the button or quck link but i was able to link it up mys elf.
Any ideas :confused:
I had the same issue and that fixed it:
https://vborg.vbsupport.ru/showpost.php?p=2531562&postcount=1949
Maybe this could help you :)
HM666
05-09-2015, 05:32 PM
I get the following error when trying to submit a form:
Please complete both the subject and message fields.
Do you know how to fix it? :)
EDIT: Fixed it, PHP 5.4 caused the error.
And how did you fix it exactly??? Upgrade PHP, downgrade what did you have to do?
Fields
05-10-2015, 06:22 AM
And how did you fix it exactly??? Upgrade PHP, downgrade what did you have to do?
My hoster provides an option to choose between PHG 5.4 and PHP 5.3. Choosing PHP 5.3 fixed the issue for me :)
HM666
05-10-2015, 01:36 PM
My hoster provides an option to choose between PHG 5.4 and PHP 5.3. Choosing PHP 5.3 fixed the issue for me :)
Hmmm ok I'll check to see if that is possible or not. Thanks for the info.
Insta-Gator
05-11-2015, 10:24 PM
Looking to create a form that would allow specific Usergroups the ability to pull a member list for their state that included User Name, first & last name, email, join date, etc. Could this be done within the Form Hooks somehow and then output?
vBulletin 4.2.1
Easy Forms 4.3.0
Any thoughts would be appreciated.
Thanks
V8Owner
05-26-2015, 08:38 AM
Im running VB 4.2.2 and just installed Easy Forms 4.3.0
I have triple checked that all files have been uploaded to the correct directories.
Have set all the options in my adminCP and have the following problems.
1. No navbar or quick links links appear.
2. If i fill in a test form via the direct url and submit the form only the text in the "Custom Form Output" is posted in a new thread.
Any clues please ???
Cheers :)
xorlof
05-29-2015, 01:11 PM
In the admin panel, I have the option "All registered users can view/edit/delete their own form results saved to database."set to "Yes".
However when somebody tries to delete one of his own entries, he gets permission denied.
Replying to a very old question, but I had the same one and spotted the problem. It appears there is a bug and you need to find this line in forms.php:
if (($candeleteformresult && !is_member_of($vbulletin->userinfo, $candeleteformresult)) AND (!$canmanageownformresults OR $vbulletin->userinfo['userid']))
The very last part of that line should read, "OR !$vbulletin->userinfo['userid']))" (without the quotes). Note the addition of the exclamation mark. That's the only change.
2 other questions:
Can I display the delete button also on the form results table?
Is it possible te remove some of the links on top of the results page. So when somebody is watching the form results, there is no link to the tables,poll page, etc
I suspect we are using the product in a similar way. I also came up with template edits to do this, but given how your question is a few years old I doubt you're still interested. I only posted the above because it was a genuine bug and if there is ever a new release the fix should be included.
Fields
06-23-2015, 06:31 AM
I now upgraded to vBulletin 4.2.3 and it requires PHP 5.4, but this mod has compatibility issues with PHP 5.4. When I try to submit a form, I get the following message:
Please complete both the subject and message fields.
It all worked fine with vB 4.2.2 and PHP 5.3, does anyone know how to fix it?
Fields
07-03-2015, 07:13 AM
blind-eddie found out, that there's a problem with special characters in thread titles under vB 4.2.3 and PHP 5.4. German umlauts like ?, ? and ? cause the following error message when trying to submit the form:
Please complete both the subject and message fields.
Could you fix that?
line89
08-15-2015, 08:12 AM
nvm found the solution, user error, thanks for the work
Cla75
09-11-2015, 12:22 PM
Hi support,
Also on my forum since I upgraded to vb 4.2.3 which requires minimum PHP 5.4, I have problems to publish the form (error: message too short), while filling in all fields correctly.
is an incompatibility with PHP 5.4, with version 5.3 everything works but I would have to remain in place on vb 4.2.2
Solutions?
Thanks for your help
Cla75
09-21-2015, 02:09 PM
no one knows how to solve this problem (error: message too short) ?
Dragonsys
09-23-2015, 07:12 AM
Hi support,
Also on my forum since I upgraded to vb 4.2.3 which requires minimum PHP 5.4, I have problems to publish the form (error: message too short), while filling in all fields correctly.
is an incompatibility with PHP 5.4, with version 5.3 everything works but I would have to remain in place on vb 4.2.2
Solutions?
Thanks for your help
Works fine on VB 4.2.3 & PHP 5.6. I would double check your questions and make sure you are inputting at least the minimum characters.
Dragonsys
09-23-2015, 07:15 AM
I apologize if this has been asked & answered already, but with over 100 pages it is difficult to search them all.
On the View Form Results Table page, can the headers query be removed?
How can I add a Date/Time field?
Cla75
09-25-2015, 08:45 AM
Works fine on VB 4.2.3 & PHP 5.6. I would double check your questions and make sure you are inputting at least the minimum characters.
i have vBulletin 4.2.3 & PHP 5.4.41-0+deb7u1, this can be a problem?
the minimun characters is OK in all fields BUT I get the error when compiling some fields using accented letters or symbols (?, $, etc)
vBulletin Message
Form failed to submit. The following error(s) occured:
Full is the subject field that the message field.
The message you entered is too short. Lengthen your message to at least 4 characters.
I filled in all fields, including the word (in Italian): perch?
writing perche' (instead of perch?) the post is published without problems
Scan Cape Cod
10-03-2015, 05:18 PM
Quick question. What is the proper format for sending email to two email addresses, or is it possible? I've tried separating them with a comma and a space. With a comma it got sent to the second email address only. With a space neither worked.
Apologies in advance if the question has been asked before; I did a search but didn't find an answer or missed it. Thanks.
Scott
wolfey
10-09-2015, 10:04 AM
You can do validation with php via the: Form PHP Hooks -> Form Hook: Before Submit:
If its not asking too much, can you help me with code I can use?
to check date submitted is at least 2 weeks in advance from todays date
Thank you much.
Chris.
wolfey
10-15-2015, 05:18 PM
Quick question. What is the proper format for sending email to two email addresses, or is it possible? I've tried separating them with a comma and a space. With a comma it got sent to the second email address only. With a space neither worked.
Apologies in advance if the question has been asked before; I did a search but didn't find an answer or missed it. Thanks.
Scott
I also use this function, a comma is all that's needed between addresses
wolfey
10-17-2015, 09:53 AM
If its not asking too much, can you help me with code I can use?
to check date submitted is at least 2 weeks in advance from todays date
Thank you much.
Chris.
OK got this code and an error displays if less than 2 weeks date selected,
Question: How do I display text on the output instead of preventing the form from being submitted when less than 2 weeks?
$nowDate=new DateTime();
$nowMDY=$nowDate->format('j F Y');
$twoWeekdOutDate=new DateTime($nowMDY);
$twoWeekdOutDate->add(new DateInterval('P14D'));
$twoWeekdOutDate->format('j F Y');
try{
$inputDate=new DateTime($qo[88]);
}catch(Exception $e){
standard_error("Invalid date: " . $qo[88]); //should never come here
}
if($inputDate>=$twoWeekdOutDate){
//good
}else{
standard_error("Please enter a date 2 weeks or more in advance - " . $qo[88]);
}
HM666
11-13-2015, 10:31 PM
I have a question. I have used this mod for quite some time on a site and we've had a form intact and it works just fine, but recently I was asked to change the options where the user who submitted the form can change the information submitted in the form they submitted by using the edit button in the thread the form started. I found this option: "Users Can Manage their own Form Results - All registered users can view/edit/delete their own form results saved to database." and I have ticked it to "Yes", but for those who have already submitted the form they still cannot edit the thread/post it made. I've tried to "Rebuild Thread Information" from the update area in the AdminCP but that did not seem to make it where the old thread can be edited by the person who submitted them. Am I just doomed to have Admins be PM'ed for changes here lol?
blind-eddie
11-13-2015, 11:17 PM
Check the forum permissions of the forum the form is being submitted to make sure the usergroups can edit post.:up:
HM666
11-13-2015, 11:55 PM
Check the forum permissions of the forum the form is being submitted to make sure the usergroups can edit post.:up:
Uh yep they all can edit that forum area.
blind-eddie
11-14-2015, 12:19 AM
Odd..
HM666
11-14-2015, 06:47 AM
Yeah pretty weird. I have no idea. I'm guessing that I'll just have to tell them to have members send a PM when they need changes to the old threads.
HM666
02-16-2016, 01:41 AM
Another question...How do i make a form highlight to a tab in the built in navigation other than the Forums tab?
EDIT: I have solved this myself with the following plugin code for those who might want to do this in the future. :)
if ($GLOBALS['fid'] == '1') $root = 'tab_abc_123';
Be sure to put the correct form id number where I have the number one & make sure that your tab_abc_123 is the tab of the tab you want to be highlighted.
IggyP
02-16-2016, 03:02 AM
vb5 maybe almost ready...would love to see something like this for that
HM666
02-16-2016, 03:51 AM
vb5 maybe almost ready...would love to see something like this for that
Don't hold your breath. bananalive rarely comes on here these days.
wolfey
04-04-2016, 09:57 AM
I want to make a start of day checklist, that must be completed before user can view forum
Basically unless each answer equals "Yes" user will be banned status not able to proceed,
Once all questions "Yes" banned would be removed.
Can someone direct me to the hooks I would use?
ne_one
06-17-2016, 03:14 PM
I've scanned through the message history but haven't been able to find any hints for this:
Is it possible to pre-populate the selected value of a dropdown or date using the hooks?
audzilla
06-23-2016, 03:47 PM
Out of nowhere, I've recently had a form that started giving the following error:
Form failed to submit. The following error(s) occured:
Please complete both the subject and message fields.
More specifics about behavior:
* I'm running 4.2.3 patch 1, php5.4, and the current version of Easy Forms
* If I fill out a form entirely with the word "test" it succeeds; if I use huge blocks of Lorem Ipsum it's fine; if I use "real" content (which is not in any way weird, but is pasted from google docs and potentially carrying formatting tags?) I get the error.
* There is no conflict in {q_*} tags between different forms, unless something has gotten scrambled on the back end and reassigned numbers around.
* This just started happening in the last week when my webhost depricated php5.3 and pushed us to 5.4.
Update: It chokes on copied characters from text editors such as fancy "smart quotes" or a condensed ellipses. It used to handle these gracefully but no longer!
bananalive
06-26-2016, 06:23 PM
Out of nowhere, I've recently had a form that started giving the following error:
Form failed to submit. The following error(s) occured:
Please complete both the subject and message fields.
More specifics about behavior:
* I'm running 4.2.3 patch 1, php5.4, and the current version of Easy Forms
* If I fill out a form entirely with the word "test" it succeeds; if I use huge blocks of Lorem Ipsum it's fine; if I use "real" content (which is not in any way weird, but is pasted from google docs and potentially carrying formatting tags?) I get the error.
* There is no conflict in {q_*} tags between different forms, unless something has gotten scrambled on the back end and reassigned numbers around.
* This just started happening in the last week when my webhost depricated php5.3 and pushed us to 5.4.
Update: It chokes on copied characters from text editors such as fancy "smart quotes" or a condensed ellipses. It used to handle these gracefully but no longer!
Try attached.
bananalive
06-26-2016, 06:27 PM
I've scanned through the message history but haven't been able to find any hints for this:
Is it possible to pre-populate the selected value of a dropdown or date using the hooks?
Form Hook: Form Start:
if (!$qo)
{
$q['70'] = "Yes";
$qo['70'] = "Yes";
$qa['70'] = "Yes";
}
ne_one
07-11-2016, 06:12 PM
Out of nowhere, I've recently had a form that started giving the following error:
Form failed to submit. The following error(s) occured:
Please complete both the subject and message fields.
More specifics about behavior:
* I'm running 4.2.3 patch 1, php5.4, and the current version of Easy Forms
* If I fill out a form entirely with the word "test" it succeeds; if I use huge blocks of Lorem Ipsum it's fine; if I use "real" content (which is not in any way weird, but is pasted from google docs and potentially carrying formatting tags?) I get the error.
* There is no conflict in {q_*} tags between different forms, unless something has gotten scrambled on the back end and reassigned numbers around.
* This just started happening in the last week when my webhost depricated php5.3 and pushed us to 5.4.
Update: It chokes on copied characters from text editors such as fancy "smart quotes" or a condensed ellipses. It used to handle these gracefully but no longer!
Can you confirm if the update addressed this issue?
I've just encountered the same problem when special characters are used for quotes.
Note: I attempted to drop in the same updated code with my existing form and it resulted in a database error.
Ov3rrun
07-13-2016, 06:15 PM
Hi, great mod! Is there a way to make compatible with mobile style?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.