The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
Easy Forms v4.x - Create a form or multiple forms without php or html knowledge Details »» | |||||||||||||||||||||||||||||
Easy Forms v4.x - Create a form or multiple forms without php or html knowledge
Developer Last Online: Nov 2023
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
Download Now
Show Your Support
|
19 благодарности(ей) от: | ||
Alex@bulletin, Baja, Bannec, beduino, Black Snow, Cadellin, CvP, Daniel, eviljoker7075, imported_polygrinder, Karma, Life Revived, line89, madness85, Mastar, Master Of Unive, pandaplush, pcmwebmaster, SaN-DeeP |
Comments |
#1692
|
|||
|
|||
thx for getting back to me, just done it again and I am now able to create the form, but still no sign of the nav bar or quick links option, how am I going to be able to make it visible for my members?
|
#1693
|
||||
|
||||
Quote:
Product : Easy Forms Target URL : forms.php Active : Yes Display Order : Up to you where you want it to appear. (i have 70 here) Hit save. :up: |
#1694
|
|||
|
|||
Many thanks all sorted now, I think vb need cach clearing or something along those lines
|
#1695
|
|||
|
|||
Thanks for that - worked well.
Mark Quote:
|
#1696
|
|||
|
|||
Same here, attachment function is broken.
Create new thread, checked. Allow attachment, checked. User groups can make new threads with attachment, without Easy Form. Any fixed? |
#1697
|
|||
|
|||
Has anyone ever figured out how (or even IF), you can save a field to a customfield in the user profile?
|
#1698
|
|||
|
|||
Thanks for your Good Mod.
How can I export Form Result to Excel with UTF-8 charset? |
#1699
|
|||
|
|||
Allright, i just installed Easy Forms, and know that i go to the directory of the forms.php i get this message
Code:
Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/14/9675814/html/forms.php on line 73 Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/local/php5_3/lib/php') in /home/content/14/9675814/html/forms.php on line 73 |
#1700
|
|||
|
|||
How would I go about inserting the answers of a specific form into my database? (Not the default save to databse function)
|
#1701
|
|||
|
|||
During a previous installation, I had a form set up to insert info into the database in the user profile field. If you want it inserted elsewhere, you'll need to modify as necessary. I HIGHLY HIGHLY HIGHLY recommend developing this on a test install because, if you don't know what you're doing, you can royally mess up your database.
Note: This may no longer work, try and use at your own risk. You first need to get the question number where they enter in the info - you get this in the questions list (I believe) or by editing the individual question. Then you need to find the corresponding user profile field ID. This is seen in the "name" field on the profile field manager (i.e. "field34"). There are two basic parts to this, the first is to make the field "play nice" with the database so it doesn't break any code. Replace the $q[###] with the appropriate question number. Repeat this line for each question you have that you want to insert into the database... change the $info# AND $query# so that each line (variable) is unique. Code:
$userid=$vbulletin->userinfo['userid']; $info# = addslashes($q[###]); $query = $db->query_first_slave("UPDATE userfield SET field###='$info1' WHERE userid='$userid' LIMIT 1"); Code:
$userid=$vbulletin->userinfo['userid']; $info1 = addslashes($q[12]); $info2 = addslashes($q[14]); $query1 = $db->query_first_slave("UPDATE userfield SET field30='$info1' WHERE userid='$userid' LIMIT 1"); $query2 = $db->query_first_slave("UPDATE userfield SET field33='$info1' WHERE userid='$userid' LIMIT 1"); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|