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)
-   -   Administrative and Maintenance Tools - Global & Cross-Posted Stickies (https://vborg.vbsupport.ru/showthread.php?t=290575)

Eosian 11-11-2012 11:00 PM

Global & Cross-Posted Stickies
 
1 Attachment(s)
This mod allows you to specify threads that are stickied across multiple forums, including universally and set a limit on how long this remains in effect.

Nirjonadda 11-12-2012 06:14 PM

Does not work on 4.1.10 ? Get database error on when clik Crosspost Sticky Thread

Database error in vBulletin 4.1.10:

Invalid SQL:

SELECT f.*, t.title
FROM vbthread_global_stickies AS f inner join vb thread AS t on t.threadid = f.threadid
ORDER BY read_order ASC;

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS t on t.threadid = f.threadid
ORDER BY read_order ASC' at line 2
Error Number : 1064
Request Date : Tuesday, November 13th 2012 @ 01:10:36 AM
Error Date : Tuesday, November 13th 2012 @ 01:10:36 AM

MySQL Error : Table 'user_database.vbthread_global_stickies' doesn't exist
Error Number : 1146

Eosian 11-12-2012 06:33 PM

It works on 4.1.10.
There was an extra space in the query by the TABLE_PREFIX. It's been corrected in the zip or you can just manauly remove it from your version.

Line 119:
Code:

FROM " . TABLE_PREFIX . "thread_global_stickies AS f inner join " . TABLE_PREFIX . " thread AS t on t.threadid = f.threadid
Should be:
Code:

FROM " . TABLE_PREFIX . "thread_global_stickies AS f inner join " . TABLE_PREFIX . "thread AS t on t.threadid = f.threadid

Nirjonadda 11-12-2012 06:37 PM

Does not fixed ? get database error on new zip file.
MySQL Error : Table 'user_database.vbthread_global_stickies' doesn't exist
Error Number : 1146

Eosian 11-12-2012 06:46 PM

Similar issue with the install routine, it had a ` mark that conflicted with your prefix.

Should work if you reinstall now.

osix 11-13-2012 04:04 AM

will this be working on 4.2 pl2 -

Eosian 11-13-2012 11:29 AM

Quote:

Originally Posted by osix (Post 2380715)
will this be working on 4.2 pl2 -

Are you somehow under the impression that it does not?

Gemma 11-14-2012 08:17 PM

Thanks, this could come in handy. I'll give this a try :)

patrick91 11-14-2012 08:31 PM

Thanx! Will try this soon. It's nice to see that there still being devs making addons for vb4:D

Eosian 11-14-2012 09:14 PM

Quote:

Originally Posted by patrick91 (Post 2381116)
It's nice to see that there still being devs making addons for vb4:D

More that I'm releasing things I've been sitting on forever. I have so much built into my installation that I take for granted that it's a pain to export addons that rely on things the rest of vBulletin doesn't have but always should've.

datoneer 11-15-2012 07:23 PM

Where is Global Stickies Manager i don't see that??

Eosian 11-15-2012 07:38 PM

Quote:

Originally Posted by datoneer (Post 2381344)
Where is Global Stickies Manager i don't see that??

Under Threads & Posts in the admin contral panel. See last screenshot.

sticky 11-17-2012 04:49 AM

Can this be made to work with regular threads as well?

Eosian 11-17-2012 05:16 AM

Quote:

Originally Posted by sticky (Post 2381800)
Can this be made to work with regular threads as well?

As there is no requirement for a thread to have already been a sticky somewhere question is moot. But if you don't make it sticky in the forum it's actually in, it's not going to be sticky in that forum, obviously.

sticky 11-17-2012 05:31 AM

Quote:

Originally Posted by Eosian (Post 2381803)
As there is no requirement for a thread to have already been a sticky somewhere question is moot. But if you don't make it sticky in the forum it's actually in, it's not going to be sticky in that forum, obviously.

Ok so if I understand this correctly it will work with any thread.

Does this make the thread function in the same manner as the original thread? Shows with views/replies? Last post on the forum index? Everything the exact same?

Just basically works as a redirect right?

Eosian 11-17-2012 05:44 AM

There is no difference between this and normal stickying of a thread beyond the fact it appears in more than one forum, or a forum other than where it actually resides.

It's not really a redirect because it does exactly what any other threadbit does; Shows a thread and takes you there if you click it. It just happens to be showing a thread that is cross-posted to more than one forum.

sticky 11-17-2012 07:34 AM

Quote:

Originally Posted by Eosian (Post 2381810)
There is no difference between this and normal stickying of a thread beyond the fact it appears in more than one forum, or a forum other than where it actually resides.

It's not really a redirect because it does exactly what any other threadbit does; Shows a thread and takes you there if you click it. It just happens to be showing a thread that is cross-posted to more than one forum.

Could I see a demo of this in action?

datoneer 11-17-2012 12:52 PM

Thanks it works now

Eosian 11-17-2012 02:04 PM

Quote:

Originally Posted by sticky (Post 2381826)
Could I see a demo of this in action?

You are severely over thinking. Install it and test it to your heart's content. This is not rocket science. It does not require a demo. It's not a massive life decision that will forever alter the world.

sticky 11-18-2012 05:59 AM

Quote:

Originally Posted by Eosian (Post 2381908)
You are severely over thinking. Install it and test it to your heart's content. This is not rocket science. It does not require a demo. It's not a massive life decision that will forever alter the world.

umm relax please.

I've been wanting something like this and just want to see if it works how I pictured it. I don't necessarily just install anything as I like to make sure others are using it without issue.

I just have questions. If you made this to help the community why not take questions from the community constructively?

I'll install it and try it out. Was hoping if it there were tweaks or changes to suggest you would be willing to work on them but you seem hostile.

Eosian 11-28-2012 01:00 PM

Quote:

Originally Posted by sticky (Post 2382118)
you seem hostile.

You'll have to forgive me for not being able to understand what part of 'it makes a sticky visible in more than one location' is so complex that it required you three posts and a request for a demo when stickies are a native concept to vbulletin and you should already be pretty clear on what they look like and not being able to explain it any clearer than stating what it does.

JesWhite 02-07-2016 11:18 AM

not working 4.2.3
there is database error.

RichieBoy67 02-11-2016 02:01 AM

Does anyone have this working on 4.2?

RichieBoy67 02-25-2016 01:27 AM

Quote:

Originally Posted by JesWhite (Post 2564393)
not working 4.2.3
there is database error.

What is the error? I would like to try to fix this. Thanks

JesWhite 02-25-2016 01:33 PM

Quote:

Originally Posted by RichieBoy67 (Post 2565545)
What is the error? I would like to try to fix this. Thanks

thanks for your supports..
i deleted but again i will install...


All times are GMT. The time now is 07:33 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.01227 seconds
  • Memory Usage 1,768KB
  • 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
  • (2)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (25)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete