vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - Roaming Threads - Mobile Image Uploads Directly To Forum (https://vborg.vbsupport.ru/showthread.php?t=225629)

pjcnlv 10-23-2009 07:43 PM

AWESOME! This will be installed tonight!

Trigr 10-24-2009 12:19 AM

installed but I dont see the Roaming thread button anywhere.

images uploaded, using Imageshack to host, entered all my KEY's. Not showing in custom templates OR Default VB template.

Help? Would love to use this.

crowdgather 10-24-2009 01:30 AM

Quote:

Originally Posted by Trigr (Post 1905114)
installed but I dont see the Roaming thread button anywhere.

images uploaded, using Imageshack to host, entered all my KEY's. Not showing in custom templates OR Default VB template.

Help? Would love to use this.

There are a couple of reasons why they are not showing up:
1. The functionality is not enabled on the main Roaming Threads options page.
2. Your style has changed the default location for button images.
3. Your templates were modified, and the install code could not find the proper location to place the buttons.
4. Permissions were not properly assigned.

Here are a couple of things to check for each scenario:
1. Admincp -> Roaming Threads -> Roaming Threads Options. Make sure that the 'Roaming Threads Enabled?' option is set to 'Yes'. This is set to 'No' by default.
2. Admincp -> Styles & Templates -> Style Manager -> Edit All Stylevars -> Image Paths. Verify that roaming_thread.gif and roaming_post.gif were placed in this directory.
3. Admincp -> Styles & Templates -> Style Manager -> Edit Templates -> FORUMDISPLAY (under Forum Display Templates) or SHOWTHREAD (under Show Thread Templates). We have added the buttons right after the new thread and reply code. Search for 'roaming' in either of these template, and you should jump to the button code that was added.
4. If you are using usergroup based permissions (recommended), Admincp -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Roaming Threads Permissions. This value should be set to 'Yes' to allow this usergroup to use the Roaming Threads functionality.

Hopefully, it is one of the easier issues to fix (1, 2 or 4). If it is #3, let us know, and we will give you the exact template code and location for the buttons. :)

Trigr 10-24-2009 02:04 AM

Quote:

Originally Posted by crowdgather (Post 1905245)
There are a couple of reasons why they are not showing up:
1. The functionality is not enabled on the main Roaming Threads options page.
2. Your style has changed the default location for button images.
3. Your templates were modified, and the install code could not find the proper location to place the buttons.
4. Permissions were not properly assigned.

Here are a couple of things to check for each scenario:
1. Admincp -> Roaming Threads -> Roaming Threads Options. Make sure that the 'Roaming Threads Enabled?' option is set to 'Yes'. This is set to 'No' by default.
2. Admincp -> Styles & Templates -> Style Manager -> Edit All Stylevars -> Image Paths. Verify that roaming_thread.gif and roaming_post.gif were placed in this directory.
3. Admincp -> Styles & Templates -> Style Manager -> Edit Templates -> FORUMDISPLAY (under Forum Display Templates) or SHOWTHREAD (under Show Thread Templates). We have added the buttons right after the new thread and reply code. Search for 'roaming' in either of these template, and you should jump to the button code that was added.
4. If you are using usergroup based permissions (recommended), Admincp -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Roaming Threads Permissions. This value should be set to 'Yes' to allow this usergroup to use the Roaming Threads functionality.

Hopefully, it is one of the easier issues to fix (1, 2 or 4). If it is #3, let us know, and we will give you the exact template code and location for the buttons. :)

#3 - nothing in either template.

1,2 & 4 are all correct.

I appreciate the help.

I checked the Default template also and nothing in either of those.

crowdgather 10-24-2009 03:47 AM

Quote:

Originally Posted by Trigr (Post 1905279)
#3 - nothing in either template.

1,2 & 4 are all correct.

I appreciate the help.

I checked the Default template also and nothing in either of those.

Ok. Thats what I was afraid of, but its not a big deal. :) Here is what you will need to add:

in FORUMDISPLAY you will need to add this between the closing link tag that is wrapped around your new thread button (</a>) and the vb conditional else tag (<else />):
Code:

<!-- roaming threads area --><if condition="$show['roaming_threads']">&nbsp;<a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]&amp;roaming_thread=1" rel="nofollow"><img src="$stylevar[imgdir_button]/roaming_thread.gif" alt="" border="0" /></a></if><!-- / roaming threads area -->

SHOWTHREAD is very similar. You will need to add this between the new reply image and the conditional else tag:
Code:

<!-- roaming threads area --><if condition="$show['roaming_threads']">&nbsp;<a href="roaming.php?$session[sessionurl]do=issuekey&t=$threadinfo[threadid]" rel="nofollow"><img src="$stylevar[imgdir_button]/roaming_post.gif" alt="" border="0" /></a></if><!-- / roaming threads area -->

This will make each button show next to the new thread button on the forum view and the new reply button on the thread view.

You may also want to check your newreply and newthread templates to be sure those were modified properly too. Those should have a new section between the subject and body area for submitting the user's mobile address and to agree to the Roaming Threads TOS.

Trigr 10-24-2009 08:05 PM

Quote:

Originally Posted by crowdgather (Post 1905408)
Ok. Thats what I was afraid of, but its not a big deal. :) Here is what you will need to add:

in FORUMDISPLAY you will need to add this between the closing link tag that is wrapped around your new thread button (</a>) and the vb conditional else tag (<else />):
Code:

<!-- roaming threads area --><if condition="$show['roaming_threads']">&nbsp;<a href="newthread.php?$session[sessionurl]do=newthread&amp;f=$foruminfo[forumid]&amp;roaming_thread=1" rel="nofollow"><img src="$stylevar[imgdir_button]/roaming_thread.gif" alt="" border="0" /></a></if><!-- / roaming threads area -->

SHOWTHREAD is very similar. You will need to add this between the new reply image and the conditional else tag:
Code:

<!-- roaming threads area --><if condition="$show['roaming_threads']">&nbsp;<a href="roaming.php?$session[sessionurl]do=issuekey&t=$threadinfo[threadid]" rel="nofollow"><img src="$stylevar[imgdir_button]/roaming_post.gif" alt="" border="0" /></a></if><!-- / roaming threads area -->

This will make each button show next to the new thread button on the forum view and the new reply button on the thread view.

You may also want to check your newreply and newthread templates to be sure those were modified properly too. Those should have a new section between the subject and body area for submitting the user's mobile address and to agree to the Roaming Threads TOS.


Perfect.

Thank you.

hyeteck 10-25-2009 12:58 AM

Great plugin, Thanks!

crowdgather 10-28-2009 10:21 PM

Thanks to everyone that has downloaded and installed the plugin!

crowdgather 10-29-2009 08:45 PM

v1.0.1: Fixed minor issue with non-urlencoded characters in image captions.

Please reupload roaming.php to your forum home directory to update your install.

realdx 10-30-2009 01:00 AM

Nice hack! Tagged! But one question, from the description sounds like that we can send 99 emails with no limit on the number of attachments per mail. While on your site you clearly state that only 1 attachment per mail is allowed. What is right? Thank you again for this!! :)


All times are GMT. The time now is 08:28 PM.

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.01044 seconds
  • Memory Usage 1,751KB
  • 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
  • (4)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (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