Version: 4.3.0, by bananalive
Developer Last Online: Nov 2023
Category: New Posting Features -
Version: 4.0.x
Rating:
Released: 01-27-2010
Last Update: 10-04-2011
Installs: 1410
DB Changes Uses Plugins Auto-Templates
Additional Files Translations
No support by the author.
Easily create forms with no HTML or PHP knowledge. Questions can be made compulsory and are checked before the form is submitted. Forms can be previewed. (You can create multiple forms)
Screenshots
There are two posts full of screenshots of this modification
Upload the contents of upload folder to forum root (Allow Overwrite "YES" for overwrite) clientscript\easyforms.css -> \clientscript\
clientscript\easyforms.js -> \clientscript\
I have duplicated my live site domain/vb to a test site domain/vbtest and upgrade from vB 4.1.11 to vB 4.2.0pl2. I have also created a new database and restored a backup of the live site to the test database. I adjusted the config settings so the test site is functioning as expected, with one exception. The Forms tab and the Forms Quicklinks menu item are missing. The form processing is working as expected, and I can get to the forms.php page when needed to modify the forms. In my live site I access the forms through redirects based on code examples you provided. That also is working in the test site. The only thing failing is the Forms tab and the Forms Quicklinks menu.
I uninstalled and reinstalled with no change. Any ideas? Is this related to the upgrade?
I've recently updated to 4.3.0 and found a couple of bugs which it would be great to get fixed:
[Major] After submission as unregistered user in "verification stage" fields which are marked guest only are removed. This can prevent submission if they are marked compulsory
"Allow attachments" causes non-existent verification image to be checked at submission for unregistered users
Styling is broken on human verification field if label is hidden
I have a problem that I have been banging my head on the wall with. I currently have it set up that users are assigned different usergroup based on what options they pick. I would like to take it a step further and based on these same options it PM's a predefined usergroup or users. Here is my try. I believe the field for PM is incorrect possibly even the code.
PHP Code:
if ($complete)
{
if (strpos($qo['12'], "Counter-Strike") !== false)
{
$form['userfield_txt'] .= ';user1';
if ($complete)
{
if (strpos($qo['12'], "SWTOR") !== false)
{
$form['userfield_txt'] .= ';user2';
So for every additional option selected it should add more users to the PM. Would like it to be a usergroup since its always changing ,but can live with individual users.
I have a problem that I have been banging my head on the wall with. I currently have it set up that users are assigned different usergroup based on what options they pick. I would like to take it a step further and based on these same options it PM's a predefined usergroup or users. Here is my try. I believe the field for PM is incorrect possibly even the code.
PHP Code:
if ($complete)
{
if (strpos($qo['12'], "Counter-Strike") !== false)
{
$form['userfield_txt'] .= ';user1';
if ($complete)
{
if (strpos($qo['12'], "SWTOR") !== false)
{
$form['userfield_txt'] .= ';user2';
So for every additional option selected it should add more users to the PM. Would like it to be a usergroup since its always changing ,but can live with individual users.
Form failed to submit. The following error(s) occured: The string you entered for the image verification did not match what was displayed
I am getting this error everytime my member tried to submit a form, even though i have put Human Verification Captcha inside the Form, and they type it correctly.
This problem occurs after i tried to turning on Captcha Required before Posting. because too many spam bots on my forum.
Hey bananalive, I was wondering if there is a way to add something in the link to auto-select certain things, so say I have a question about a recruiter or something, and I want a link like:
Heya, I'm trying to get it so that when a user submits a form, they can only see their own results saved on the database, and no one elses. Any way of doing this? Thanks