vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   End-User Options - Fast(in)visible v1.1 (https://vborg.vbsupport.ru/showthread.php?t=135452)

efc9 01-02-2007 10:00 PM

Fast(in)visible v1.1
 
This hack doesn't work and has been removed.

brvheart 01-03-2007 08:51 PM

nice *install* :)

lovelypk 01-03-2007 08:51 PM

cool mod.

brvheart 01-03-2007 08:58 PM

I would make one change....I would make the navbar edit reversed meaning:

Have it say the status of what you are IE.

Currently if you are visible it says invisible then you click it and it changes to visible

I would have it say visible when you are visible then click it to change yourself to invisible and it would then state that you are invisible

make sense?

efc9 01-03-2007 09:04 PM

hmmm.. I did ask my members on that and they felt (in the majority) that having the link saying what it'd do was better..

you can easily change this for yourself though by editing the "Fast(in)visible v1" global_start plugin and..

change:
Code:

if ($vbulletin->userinfo['invisible']) {$fastinvisible='<a href="'.$vbulletin->options['bburl'].'/misc.php?do=visible">Go Visible</a>';}
else {$fastinvisible='<a href="'.$vbulletin->options['bburl'].'/misc.php?do=invisible">Go Invisible</a>';}

to:
Code:

if ($vbulletin->userinfo['invisible']) {$fastinvisible='<a href="'.$vbulletin->options['bburl'].'/misc.php?do=visible">You are Invisible</a>';}
else {$fastinvisible='<a href="'.$vbulletin->options['bburl'].'/misc.php?do=invisible">You are Visible</a>';}


brvheart 01-03-2007 09:07 PM

thank you :)

Ramsesx 01-04-2007 01:00 AM

Thanks for this, but I get a database error if clicking on visible or invisible:
PHP Code:

Database error in vBulletin 3.6.4:

Invalid SQL:
UPDATE user SET options=options 512 WHERE options 512 AND userid=1;

MySQL Error  Table 'db156670001.user' doesn't exist
Error Number : 1146 

And if using cmps it's pointing to www.mydomain.com/misc.php instead of www.mydomain.com/forum/misc.php even if I put "misc.php" into the navbar replacement menue on the vbacmps acp settings.

Hornstar 01-04-2007 01:10 AM

Clever idea, nice work.

efc9 01-04-2007 01:24 AM

Quote:

Originally Posted by Ramsesx (Post 1150299)
Thanks for this, but I get a database error if clicking on visible or invisible:
PHP Code:

Database error in vBulletin 3.6.4:

Invalid SQL:
UPDATE user SET options=options 512 WHERE options 512 AND userid=1;

MySQL Error  Table 'db156670001.user' doesn't exist
Error Number : 1146 

And if using cmps it's pointing to www.mydomain.com/misc.php instead of www.mydomain.com/forum/misc.php even if I put "misc.php" into the navbar replacement menue on the vbacmps acp settings.

do you have a table prefix? I've just noticed looking at that error it's not setup for table prefixs..

also the cmps error is probably due to the link being dynamic.. hmm don't use cmps myself but will edit it to see if I can fix these problems..

efc9 01-04-2007 01:25 AM

Quote:

Originally Posted by hornstar1337 (Post 1150305)
Clever idea, nice work.

Thanks, I really appreciate the compliment :)

Franck 01-04-2007 09:23 AM

I have installed the plugin (and upgraded today) but I'm having problems with it. The modification seems to have changed my User CP settings in other ways:

- Threads are now sorted newest first (I always had them oldest post first)
- Coppa warnings have appeared (I had it disabled)
- Worst of all, when I visit my User CP, the page gets stuck in a loop: Updating DST...
- When I try to save any option, nothing happens (including changing to visible / invisible).

I'd appreciate any help!

brvheart 01-04-2007 11:31 AM

Updated I like the text better :) well done efc9 :)

efc9 01-04-2007 02:02 PM

Quote:

Originally Posted by Franck (Post 1150493)
I have installed the plugin (and upgraded today) but I'm having problems with it. The modification seems to have changed my User CP settings in other ways:

- Threads are now sorted newest first (I always had them oldest post first)
- Coppa warnings have appeared (I had it disabled)
- Worst of all, when I visit my User CP, the page gets stuck in a loop: Updating DST...
- When I try to save any option, nothing happens (including changing to visible / invisible).

I'd appreciate any help!

I've not experienced any of these issues in my own testings.. but the hack does work by changing the options so I guess it could cause these errors, could you pm me your site url, and test account details and I'll look into the problem more for you..

efc9 01-04-2007 02:02 PM

Quote:

Originally Posted by brvheart (Post 1150551)
Updated I like the text better :) well done efc9 :)

Thanks :)

bashy 01-04-2007 03:16 PM

I am already using a hack like this but the 1 i use, uses the online and invisible icons, see images :)

Snake 01-04-2007 04:39 PM

Very nice! :)

efc9 01-04-2007 05:24 PM

Quote:

Originally Posted by bashy (Post 1150662)
I am already using a hack like this but the 1 i use, uses the online and invisible icons, see images :)

I personally feel the large image unbalances the navbar there, but well whatever works for you bud.. I'm semi certain the hack you use though wasn't released here so I don't feel I'm stepping on toes..

bashy 01-04-2007 05:48 PM

Hi m8 yeah it was released here, bit i think it was 3.5, i tried a search but cannot find it now lol,

efc9 01-04-2007 08:36 PM

Quote:

Originally Posted by bashy (Post 1150750)
Hi m8 yeah it was released here, bit i think it was 3.5, i tried a search but cannot find it now lol,

Ain't that always the way.. I do wish there was a better way to search the hacks here..

brvheart 01-04-2007 09:36 PM

well if you installed it and clicked install....you can view your installed hacks via the quick links.... ;) then you dont have to search :D

efc9 01-05-2007 12:03 AM

true, that's an easy way to find hacks.. again..

but sometimes finding them in the first place can be a problem, the search keywords seem very hit and miss..

Ramsesx 01-05-2007 12:16 AM

Quote:

Originally Posted by efc9 (Post 1150319)
do you have a table prefix? I've just noticed looking at that error it's not setup for table prefixs..

also the cmps error is probably due to the link being dynamic.. hmm don't use cmps myself but will edit it to see if I can fix these problems..

Now it's fine, thanks a lot, yes was the table prefix.

stomph 01-05-2007 01:07 AM

Thank you!

efc9 01-05-2007 02:13 AM

Quote:

Originally Posted by Ramsesx (Post 1151010)
Now it's fine, thanks a lot, yes was the table prefix.

Great.. It's always something I forget about :( but oh well least it got fixed in the end..

Quote:

Originally Posted by stomph (Post 1151047)
Thank you!

Thanks, it's a simple thank you that makes the time spent creating and fixing the hack worthwhile..

Dexter_kcd 01-11-2007 05:12 PM

Installed this the other day. Only Staff can use the invisible option at my forum. Since installing this, random staff members who have clicked the Go Visible / Invisible link have had their "Enable Private Messages" option randomly disabled in their User CP. I suspect this mod may be causing that, anyone else having the same problem?

I am going to try disabling this and see if the problem continues.

Dexter...

Dexter_kcd 01-11-2007 05:45 PM

Confirmed that if you click Go Invisble / Visible enough times, it actually changed the state of my receive PM option. And it also changed the state of my PM Email notification. I have that turned off normally, as I get a lot of PMs and am on the site often enough that I don't need email notification of PMs. Clicking the Fast Invisible link a bunch of times enabled email notifications. It seems that the hack is bumping into other options when changing the invisibility option.

*clicks uninstall for now.

Dexter...

bashy 01-30-2007 04:21 PM

You having a giraffe? I have well over 200 hacks/mods installed pmsl...

Quote:

Originally Posted by efc9 (Post 1151006)
true, that's an easy way to find hacks.. again..

but sometimes finding them in the first place can be a problem, the search keywords seem very hit and miss..


deezelpope 03-06-2007 04:34 PM

Installed...thanks bunches!!!:up:

:( Uninstalled...messed with my Mood Manager...bummer.

EDIT: Works GREAT away from Mood Manager! Re-installed! Thank you!

deezelpope 04-09-2007 01:56 PM

Quote:

Originally Posted by Dexter_kcd (Post 1156374)
Installed this the other day. Only Staff can use the invisible option at my forum. Since installing this, random staff members who have clicked the Go Visible / Invisible link have had their "Enable Private Messages" option randomly disabled in their User CP. I suspect this mod may be causing that, anyone else having the same problem?

I am going to try disabling this and see if the problem continues.

Dexter...

Quote:

Originally Posted by Dexter_kcd (Post 1156403)
Confirmed that if you click Go Invisble / Visible enough times, it actually changed the state of my receive PM option. And it also changed the state of my PM Email notification. I have that turned off normally, as I get a lot of PMs and am on the site often enough that I don't need email notification of PMs. Clicking the Fast Invisible link a bunch of times enabled email notifications. It seems that the hack is bumping into other options when changing the invisibility option.

*clicks uninstall for now.

Dexter...

Same story here...changed my PM options...unfortunately has to click uninstall.:erm:

alfaowner 04-09-2007 10:10 PM

Quote:

Originally Posted by deezelpope (Post 1223293)
Same story here...changed my PM options...unfortunately has to click uninstall.:erm:

Same for me too! I didnt get as far as clicking install :(

denyil 04-12-2007 06:01 PM

Yeah. it causes to change the PM options. I think there is a mistake to calculating the number of 512. It should be something else.

PinkDaisy 04-26-2007 11:09 AM

I'm having it change my options to, I may consider to uninstall til' there is a fix for this since my members are famous for asking questions.


All times are GMT. The time now is 06:59 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.01836 seconds
  • Memory Usage 1,810KB
  • 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
  • (2)bbcode_php_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (32)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