vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - Easy Forms v4.x - Create a form or multiple forms without php or html knowledge (https://vborg.vbsupport.ru/showthread.php?t=234385)

ErikTheRed 07-07-2011 10:37 PM

Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.

It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.

HolyKiller 07-09-2011 09:35 AM

Quote:

Originally Posted by Elenna (Post 2217589)
I installed this on 4.1.4, but my administrator account(s) receive the "No Permission" error when trying to view the forms listing. Any ideas?

Admin CP -> Settings -> Options -> Easy Forms Options -> Set up permissions for every action/group. Default is "Noone can do anything", so you need to set it how it should work :]

Quote:

Originally Posted by ErikTheRed (Post 2217943)
Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.

It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.

iframe for example?

Elenna 07-09-2011 01:15 PM

1 Attachment(s)
Quote:

Originally Posted by HolyKiller (Post 2218467)
Admin CP -> Settings -> Options -> Easy Forms Options -> Set up permissions for every action/group. Default is "Noone can do anything", so you need to set it how it should work :]

Options were already checked-off for me, with Administrator being allowed access to everything.

See attachment for my Options screen.

Elenna 07-09-2011 01:16 PM

Scratch the reply, above. I had to give Registered Users access to view the Form List. Now my Administrator has access.

autostick 07-10-2011 04:45 PM

Quote:

Originally Posted by ErikTheRed (Post 2217943)
Can a form created with this mod be placed in a sidebar in the forums and/or CMS? I tried searching for my answer but couldn't find anything related.

It appears, from screenshots, that users would have to visit a specific URL to submit the form, but I'd like a small one available on most or all pages for users to submit.

Yes indeedy, I am also in needy of this function. Hope to hear if there is a sidebar option or a direct URL reference for an easy form.

ascroft 07-13-2011 04:56 AM

Just to be clear it works fine for the forum it gets moved to, but the forum it was posted in in the first place still shows the header detail for the post that is no longer there...

Thanks

Mark

Quote:

Originally Posted by ascroft (Post 2217319)
Hi there Dom.

The refresh of what was the last post in a forum using a plugin seems to have stopped working probably due to another change I made using arrays to have the thread prefix working. The move itself to the correct forum is fine but not the forum details update - keen to have this working again. (think it is at the bottom of the code below)

We added a plugin that moved the thread to the correct forum (newthread_post_complete) and it has the following:

if ($fid == 1)
{
$forumid = $q['forumid'];
$dataman =& datamanager_init('Thread', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$dataman->set_existing($threadinfo);
$dataman->setr('forumid', $forumid);
$dataman->pre_save();
if (count($dataman->errors) > 0)
{
foreach ($errors as $error)
{
$errorss .= $error. "<br />";
}
$errormessage = "Form failed to submit. The following error(s) occured: <br /> ".$errorss;
eval(standard_error($errormessage));
}
else
{
$dataman->save();
$foruminfo = fetch_foruminfo($forumid);
$threadinfo = fetch_threadinfo($newpost['threadid']);
mark_thread_read($threadinfo, $foruminfo, $vbulletin->userinfo['userid'], TIMENOW);
build_thread_counters($newpost['threadid']);
build_forum_counters($forumid);
}
}


I have pasted below the code for the custom question from the form that I think is related:

$newarray = array(
158 => $vbulletin->forumcache['158'],
160 => $vbulletin->forumcache['160'],
161 => $vbulletin->forumcache['161'],
162 => $vbulletin->forumcache['162'],
163 => $vbulletin->forumcache['163'],
165 => $vbulletin->forumcache['165'],
167 => $vbulletin->forumcache['167'],
168 => $vbulletin->forumcache['168'],
169 => $vbulletin->forumcache['169'],
170 => $vbulletin->forumcache['170'],
172 => $vbulletin->forumcache['172'],
174 => $vbulletin->forumcache['174'],
175 => $vbulletin->forumcache['175'],
177 => $vbulletin->forumcache['177'],
179 => $vbulletin->forumcache['179'],
181 => $vbulletin->forumcache['181'],
61 => $vbulletin->forumcache['61'],
182 => $vbulletin->forumcache['182'],
183 => $vbulletin->forumcache['183'],
184 => $vbulletin->forumcache['184'],
186 => $vbulletin->forumcache['186'],
188 => $vbulletin->forumcache['188'],
190 => $vbulletin->forumcache['190'],
191 => $vbulletin->forumcache['191'],
193 => $vbulletin->forumcache['193'],
56 => $vbulletin->forumcache['56'],
194 => $vbulletin->forumcache['194'],
195 => $vbulletin->forumcache['195'],
197 => $vbulletin->forumcache['197'],
);
$answer = "<select name=\"$formbit[id]\" id=\"q_" . $formbit[id] . "\">";
foreach ($newarray AS $forumid => $forum)
{
if ($qo['forumid']==$forumid)
{
$forum['selected'] = ' selected="selected"';
}
$answer .= "<option value=\"$forumid\"$forum[selected]>$forum[title]</option>";
}
$answer .= "</select>";


I have also pasted the code for the newthread_form_start -

if (in_array($forumid, array(158,160,161,162,163,165,167,168,169,170,172, 174,175,177,179,181,61,182,183,184,186,188,190,191 ,193,56,194,195,197)))
{
header('Location: /listings/misc.php?do=form&fid=1');
}

Can you advise please?

Thank you

Mark


rootsxrocks 07-19-2011 02:12 AM

Upgraded to 4.14 and some parts of this use the forum editor and have no way to enter text if you select those, such as a description.

I have disabled until a solution is reached .

autostick 07-19-2011 02:53 AM

Is there any way to establish a link to a form from the CMS home page? Or maybe a dropdown list?

rootsxrocks 07-19-2011 03:37 AM

you could do that with a widget

Crotan 07-19-2011 03:43 AM

Quote:

Originally Posted by rootsxrocks (Post 2222271)
Upgraded to 4.14 and some parts of this use the forum editor and have no way to enter text if you select those, such as a description.

I have disabled until a solution is reached .

Yea :( I'm still waiting for a fix with 4.1.4's ck editor too, last thing I saw was his test version 4.2.7 isn't working for everybody. Me included

Quote:

Originally Posted by autostick (Post 2222281)
Is there any way to establish a link to a form from the CMS home page? Or maybe a dropdown list?

each form you create has a unique url path, so you should be able to link them anywhere, or create navbits with any of the navbar mods out there

rootsxrocks 07-19-2011 05:19 AM

I think this has potential to work for entering listings that can be verified and then promoted to "articles" for a business review. the tricky part Will be to fill out a bunch of forms from a data base.

I was able to create most of the Fields I could probity do without the ckeditor if i was creative.

ChuanSE 07-19-2011 12:30 PM

I was wondering what regular expression is commonly used to check emailaddresses.

more specific, a regexp that allows x.x@x.x.x.tld

wampforum 07-19-2011 01:32 PM

installed on 4.1.4 works great cheers bananalive another great mod

Hendrik83 07-20-2011 05:44 PM

I uninstalled it but it was a nice mod.

Used it only with the vB editor.

It stopped working with 4.1.4 and the update did not fix the vB editor.
No errors it just quickly shows the outline of the editor and then nothing.

I removed all mods but no luck. :mad:

Crotan 07-20-2011 07:10 PM

Quote:

Originally Posted by Hendrik83 (Post 2222964)
I uninstalled it but it was a nice mod.

Used it only with the vB editor.

It stopped working with 4.1.4 and the update did not fix the vB editor.
No errors it just quickly shows the outline of the editor and then nothing.

I removed all mods but no luck. :mad:

did you try his 4.2.7 version? vb editor was supposedly working for some people on 4.1.4 with it?

I'm still waiting for an update, until then I'm back to multiline text field sadly.

It's kinda a bummer too because the full editor was such a nice feature

Hendrik83 07-20-2011 07:24 PM

Yes.

Other plugins with the new editor are working except this one.
I don't want to use multi line text fields.

Crotan 07-20-2011 07:38 PM

Well it's the same deal as the other mods that had to fix this, functions_wysiwyg.php was depreciated in vb 4.1.4, and is no longer distributed with vb files.

To work correctly it should be making use of the new ckeditor.php

EDIT: Looking at the 4.2.7 xml, it's still making use of the old editor, and I'm guessing people that claimed it working still have the depreciated files on their server:

Quote:

Removed Files:
clientscript/cms_textedit.js
includes/class_editor_override.php
includes/functions_wysiwyg.php
packages/vbcms/bbcodehelper
packages/vbcms/bbcode/wysiwyg.php
packages/vbcms/controller/editor.php
packages/vbcms/editor
packages/vbcms/route/editor.php
packages/vbcms/wysiwyghtmlparser.php
and those that do not have it working are either on a new install or removed the depreciated files, as far as I can tell Easy Forms 4.2.7 does not make use of the ckeditor

Hendrik83 07-20-2011 07:47 PM

He said that its fixed except for some the new editor just won't show.

http://prntscr.com/2dce8

Crotan 07-20-2011 07:56 PM

Quote:

Originally Posted by Hendrik83 (Post 2222998)
He said that its fixed except for some the new editor just won't show.

http://prntscr.com/2dce8

Sorry see my last post after I edited it.

If I had to guess those who have it working with 4.2.7 still have functions_wysiwyg.php on their servers, and those who don't do not (which is why it is blank). functions_wysiwyg is not the new editor and is a depreciated file and is not distributed with vbulletin files anymore.

TalkVirginia 07-23-2011 12:10 AM

This is an awesome addon! only one thing I have to ask. What would it cost me to get some sort of documentation with perhaps some examples on using the forms and setting them up.

Any one else willing to share parts of their forms?

Thanks

Dozer826 07-27-2011 07:10 PM

I have 4.2.5 and updated to 4.1.4 pl2 and it still works fine, only thing that changed is the spacing between questions/answers?

anyone know a quick fix for that?

bryanb 07-28-2011 01:25 PM

Does this work with vB 4.1.5? Getting ready to upgrade and I'd really like to know. Thanks!

djbaxter 07-28-2011 02:02 PM

None of the text fields seem to work since the introduction of CKEditor in 4.1.4 and 4.1.5.

Can you update this add-on to work with 4.1.4 and later?

rootsxrocks 08-01-2011 07:16 PM

I have it disabled until the editor is updated, I suppose you could create a limited form without the type of entries that are broken, I did not examine the possibility beyond that limit.
I just assumed that it would also use the editor to create a post and that would use the CK editor and that is critical to the purpose I have.

However I am interested in paying the developer to build me a custom Mod that works similar to this.

Or I will Invest in a shared propritory pro version that meets my exclusive custom specs.:D

zushiba 08-01-2011 09:34 PM

I'm having problems deleting an entry. I'm in Form results, click delete, pops up confirmation box, click okay, formresults reloads but that entry is still there.

Using latest version.

Za4a Tuner 08-03-2011 05:29 AM

Hello;
i've got a question to the "form_output_styling".

How can i use the "<vb:if>"-conditional for questions like grid or radio-button?
I'd like to have it that the question and answer is only shown, when the user answerd the question.
I tried:
Code:

<vb:if condition="$q[13]">{qn_13}[list]{q_13}[/list]<vb:else /></vb:if>
But this does'nt work, the question and answer is allways shown :(
How can i get my form to show only answerd questions?

kr Chris

ahmedipa 08-06-2011 10:09 PM

1 Attachment(s)
thank you for new product but I have problems with styling

need you to fix it as soon as



the last version the style is better than the second

you can look at the size

I hope to solve the problem

https://vborg.vbsupport.ru/attachmen...1&d=1312672074

waiting for reply

bryanb 08-08-2011 01:12 PM

Quote:

Originally Posted by bryanb (Post 2226020)
Does this work with vB 4.1.5? Getting ready to upgrade and I'd really like to know. Thanks!

Works fine on 4.1.5

djbaxter 08-08-2011 01:22 PM

Quote:

Originally Posted by bryanb (Post 2230872)
Works fine on 4.1.5

For some people, reportedly. For many others, text fields do not work with the new editor. Why not is unclear.

Text fields are not working for me at all in 4.1.4 or 4.1.5.

Crotan 08-08-2011 02:43 PM

Quote:

Originally Posted by djbaxter (Post 2230873)
For some people, reportedly. For many others, text fileds do not work with the new editor. Why not is unclear.

Text fields are not working for me at all in 4.1.4 or 4.1.5.

As to why, I believe it is because of what I outlined in this post
https://vborg.vbsupport.ru/showpost....postcount=1417

Guthatron 08-08-2011 04:41 PM

IS there a way to add an editable field on the output table?

So that I could use it for other mods to use the form, then I can add an answer to the output table later?

IE. they leave the last question blank, and i add that later?

EDIT: Just found out that you can edit form results. So i will just add a question to be left blank, and i can add in there later.

Thanks

djbaxter 08-08-2011 06:17 PM

Quote:

Originally Posted by Crotan (Post 2230903)
As to why, I believe it is because of what I outlined in this post
https://vborg.vbsupport.ru/showpost....postcount=1417

Quote:

Originally Posted by Crotan (Post 2222997)
Well it's the same deal as the other mods that had to fix this, functions_wysiwyg.php was depreciated in vb 4.1.4, and is no longer distributed with vb files.

To work correctly it should be making use of the new ckeditor.php

EDIT: Looking at the 4.2.7 xml, it's still making use of the old editor, and I'm guessing people that claimed it working still have the depreciated files on their server:

Quote:

Removed Files:
clientscript/cms_textedit.js
includes/class_editor_override.php
includes/functions_wysiwyg.php
packages/vbcms/bbcodehelper
packages/vbcms/bbcode/wysiwyg.php
packages/vbcms/controller/editor.php
packages/vbcms/editor
packages/vbcms/route/editor.php
packages/vbcms/wysiwyghtmlparser.php
and those that do not have it working are either on a new install or removed the depreciated files, as far as I can tell Easy Forms 4.2.7 does not make use of the ckeditor

Nope. The includes/functions_wysiwyg.php file is still there and the mod still isn't working.

Hendrik83 08-09-2011 07:11 AM

I had that file also and no editor.
We do not get it fixed because it works for the one making this mod.

No errors: This is how it looks like on 4.1.5

I have tried to remove all mods and styles but still not working.

Baja 08-10-2011 06:36 AM

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.

leia 08-13-2011 11: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:
PHP Code:

if (stristr($qo['88'], "Large")) {
$form['forumid'] = 112;
}
elseif (
stristr($qo['88'], "Mini") ) {
$form['forumid'] = 113;
}
elseif(
stristr($qo['88'], "Tiny")) {
$form['forumid'] = 114;


I haven't changed anything else (and other parts of the same before submit are working)... how can I fix this?

ETA: Fixed it... changing the $form['forumid'] to just $forumid seems to have corrected it. Can anyone tell me why this happened? I'm happy to have figured it out through trial and error, but I would love to learn.

3clipse 08-13-2011 06:51 PM

Hi great mod and thanks, however, I've got a particular task I need to do that I cannot seem to do currently within this mod. What I am trying to do is change the forumid selection on the form edit page to allow multiple locations for an output on the one response, currently it only allows for the selection of one location. An example of what I am trying to do is shown below:

User Completes form and submits >>> forums a, b and c are selected as destination forums for a thread >>> the responses are put into a new thread in forums a, b and c

any assistance would be appreciated.

leia 08-16-2011 01:04 AM

3clipse, that's what the bit I posted in the comment directly above yours is for. You can just paste that into the Before Submit box, then change the search text and the forumids. :) (Don't forget to change $form['forumid'] to just $forumid.

3clipse 08-16-2011 12:11 PM

Quote:

Originally Posted by leia (Post 2233978)
3clipse, that's what the bit I posted in the comment directly above yours is for. You can just paste that into the Before Submit box, then change the search text and the forumids. :) (Don't forget to change $form['forumid'] to just $forumid.

I've tried this with some adjustments to remove the search filtering as i'm not trying to add a filter to direct a form response to a certain response, what i'm trying to do is get an exact duplicate of the thread across 3 forums as users with various permissions need to comment on responses to the form. After removing the search filter the problem i come across is that it sends to 1 forum, shows up in the second but redirects to the first then the third location it does not show up at all.

SpikedRocker 08-18-2011 01:31 PM

Upon Updating to 4.1.5 we've noticed on forms that redirect people to any link on completion of the form no longer works. It says it is an invalid URL and does not go on from there. We've even gone on to test this with directing to a well known URL such as google.com and we get the same problem.

Any help would be great!

vBNinja 08-20-2011 04:41 AM

I just upgraded to 4.1.5 PL1 and I'm having trouble with my "Field using vBulletin editor" questions because users are not able to type in the box, they box is grated out and therefore my users can't complete and submit their applications

Any fix for this?
Thank you


All times are GMT. The time now is 10:52 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04442 seconds
  • Memory Usage 1,856KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete