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)

Crotan 06-15-2011 07:54 PM

Quote:

Originally Posted by gr8whtd0pe (Post 2207836)
I had to change mine to a multi-line text box. :(

Quote:

Originally Posted by Shadow09 (Post 2207965)
Same here... Disabled til fix.

Yea i guess we could could go back to the multi line text box, but having the vb editor would be ideal. Hoping for a fix soon!

David Hodgkins 06-17-2011 04:20 PM

re: 4.1.4 incompatability:

I was hoping to install this today. Please let us know the timing of the fix.

bananalive 06-18-2011 06:37 PM

1 Attachment(s)
Attached version should work with vBulletin v4.1.4 (with the new vBulletin editor)

Installation
  1. Import in product file to admincp. (allow overwrite)
  2. No further edits required.

Hendrik83 06-18-2011 06:48 PM

Thanks for the update!

Not working on my forum...

thetgc 06-18-2011 07:05 PM

Quote:

Originally Posted by Hendrik83 (Post 2209550)
Thanks for the update!

Not working on my forum...

+1, updated mine but still not working :(

David Hodgkins 06-18-2011 11:55 PM

Quote:

Originally Posted by Hendrik83 (Post 2209550)
Thanks for the update!

Not working on my forum...


First of all, thank you for jumping on this fix.

I'm going to wait for someone to post a successful install before I attempt this.

Mine will be a first-time install so I'd prefer it go in clean...

:)

ascroft 06-19-2011 01:24 AM

Hi there. I have finally got round to making the change to launch the form for more locations and in my plugin I have the following context, but it doesn't launch the easy form - just the basic std post. Do I have the syntax wrong?

Many thanks.

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

btw, in the custom question on the form, I have the following (don't think it is related) You advised me on this to be able to order the forums in the drop down list the way I wanted.

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

deverill2010 06-19-2011 06:51 AM

Will this be fixed soon? As I need the form for a quiz very soon :(

bananalive 06-19-2011 08:31 AM

Quote:

Originally Posted by thetgc (Post 2209556)
+1, updated mine but still not working :(

Quote:

Originally Posted by deverill2010 (Post 2209759)
Will this be fixed soon? As I need the form for a quiz very soon :(


What isn't working for you? Do you get an error message? What browser are you using?

Which page is it? 'viewing form'?

Tested on vbulletin v4.1.4 in Chrome browser and it's working for me

bananalive 06-19-2011 08:39 AM

Quote:

Originally Posted by ascroft (Post 2209687)
Hi there. I have finally got round to making the change to launch the form for more locations and in my plugin I have the following context, but it doesn't launch the easy form - just the basic std post. Do I have the syntax wrong?

Many thanks.

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

btw, in the custom question on the form, I have the following (don't think it is related) You advised me on this to be able to order the forums in the drop down list the way I wanted.

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

Put a space after Location:

e.g.

PHP Code:

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'); 




All times are GMT. The time now is 04:35 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.03028 seconds
  • Memory Usage 1,765KB
  • 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_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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