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)
-   -   Forum Home Enhancements - Adds Avatar to Navbar (https://vborg.vbsupport.ru/showthread.php?t=227666)

Kolbi 11-17-2009 04:31 PM

Quote:

Originally Posted by ppatil007 (Post 1915994)
ok i downloaded the entire file again
and just before i rename "config.php.new" to "config.php" and upload to my server i request you to check if it has the required stuff please
thanks

Incredible. The needed lines still don?t exists.
Can you please open a thread on vbulletin.com because I think you?ll get for help from them :)
Normally you only can add temporarly the line: define('DISABLE_HOOKS', 1); to your config.php and after you are finished with uninstalling the plugin remove it.

blaize 11-17-2009 05:12 PM

disable hooks isn't in the config file you have to add it.

Gomjaba on vbulletin.com posted this helpful article quoted below explaining how to disable the plugin system.

Quote:

Disable the plugin/hook system globally

This can be helpfull if you created / installed a plugin or product which has broken your forum and you are not able to access the AdminCP anymore.

To disable the plugin/hook system open your config.php which can be found in your forumroot/includes directory

Just below
Code:

<?php

enter
Code:

define('DISABLE_HOOKS', true);

and save the file.

If you would like to enable the plugin/hook system again, either remove the line again or simply comment that line out. To do so, add two forward slashes " / " so it will look like

Code:

// define('DISABLE_HOOKS', true);

Next time you would like to disable the plugin/hook system again
you simply have to remove those two " / ".

If you are able to access your AdminCP go to

AdminCP -> vBulletin Options -> vBulletin Options -> Plugin/Hook System

And set it to No to disable.


Kolbi 11-17-2009 05:40 PM

Quote:

Originally Posted by blaize (Post 1916033)
disable hooks isn't in the config file you have to add it.

In the German version these lines are included original :)

Kolbi 11-17-2009 05:41 PM

Quote:

Originally Posted by ppatil007 (Post 1916051)
Thanks a ton "blaize" my forum is back i have uninstall-ed the plugin , also spl thanks to KOLBI for spending so much time and replying all my question you guys are great this forum is very good and all are so helpful
thanks again

Sounds good :)
Can you tell me which plugin caused the crash?

Kolbi 11-17-2009 06:03 PM

Quote:

Originally Posted by ppatil007 (Post 1916072)
can i bother you for more help please ?
i was looking for 2 features for my forum i dont know where and how to get them

1) when someone hits my webpage i dont what them to see anything other than log-in screen for eg
look at this site http://www.freesports4u.com/ you are forced to login in no guests how do we do this ?

2) in vb.org under every first topic of a thread we see list of similar threads (similar mod) how do i do that in my site ?

I think your question should be placed here: http://www.vbulletin.com/forum/forum...roubleshooting
:)
Quote:

sorry it say it was your plugin "product-kolbi4.xml" it was uploaded by another admin i dont know if it was his mistake or some problem with the plug in i am calling him now to find out what actually he did
What other plugins have you installed?

parveznpt 11-19-2009 09:11 AM

Nice hack, working!! Thanks and installed

mradlin 11-21-2009 04:33 AM

Works great!! Installed!!

Kolbi 11-21-2009 08:12 AM

Quote:

Originally Posted by parveznpt (Post 1917119)
Nice hack, working!! Thanks and installed

Please click install ;)

aus360 11-28-2009 09:23 PM

<font color="Red">SOLVED!!!, got this working by disabling the following product "Navbar Additions + ShareThis"</font>

Installed but nothing appears on navbar, im using the version without TMS and i added the line:
<td class="alt1"><a href="$vboptions[bburl]/profile.php?do=editavatar">$navbaravatar</a></td>

above:
==================================
<else />

<td class="alt2" nowrap="nowrap" style="padding:0px">

<!-- login form -->
==================================

but no use...
ive been trying for 2 days now, so can anyone help me? i will pm you my navbar template if you want, im using the style called simpleblue.

thanks in advance

Kolbi 11-29-2009 04:36 PM

I´m glad to hear that you could resolve the issue your own.

SEW810 11-30-2009 03:51 AM

uninstalled, didn't work and i've got no time to read about solutions.
Anyway, thnx

Kolbi 11-30-2009 11:40 AM

If you send me additional information and the URL to your board perhaps I can help you to resolve this problem and get it work.

cheech47 12-16-2009 08:21 PM

Quote:

Originally Posted by Kolbi (Post 1913515)
@mulle and @cheech47 What do you have selected under vBadvanced Global Options?

Do you mean the Global vBadvanced Settings>Navbar Replacements?

Kolbi 12-17-2009 10:30 AM

Yes...

Lustikus 12-17-2009 01:19 PM

I also need help pls, vba does not show the avatar...

Kolbi 12-18-2009 01:38 PM

What do you have selected under vBadvanced Global Options?
And it also would be great if you can post your url...

Lustikus 12-19-2009 03:29 AM

navbaravatar, as written in another Thread. The mod is still working, but the avatar is not there - maybe the path of the avatar need to be adjusted in vbadvanced.

I´ll send you acount informations separated since you need to be registered to see the avatar in navbar;-)

mattpist 12-23-2009 07:41 AM

this is a nice little hack, but seriously, is it worth having your credits on the bottom of my site? i don't think so. uninstalled.

ravenfaust 12-31-2009 07:13 PM

remove this if ($vbulletin->userinfo['avatarid'])
{
// using a predefined avatar
$avatar = $db->query_first("SELECT avatarpath FROM " . TABLE_PREFIX . "avatar WHERE avatarid = " . $vbulletin->userinfo['avatarid'] . "");
$avatarid = $avatar['avatarid'];
$navbaravatar = "<img src=\"" . $vbulletin->options['bburl'] . "/" . $avatar['avatarpath'] ."\" alt=\"Your Avatar\" height=\"". $vbulletin->options['navbarwithavatar_height'] ."\" border=\"0\" />";
}
else
{
// not using a predefined avatar, check for custom
if ($avatar = $db->query_first("SELECT dateline, userid FROM " . TABLE_PREFIX . "customavatar WHERE userid = " . $vbulletin->userinfo['userid'] . ""))
{
// using a custom avatar
$navbaravatarurl = ($vbulletin->options['usefileavatar']) ? "" . $vbulletin->options['avatarurl'] . "/avatar$avatar[userid]_" . $vbulletin->userinfo['avatarrevision'] . ".gif" : "" . $vbulletin->options['bburl'] . "/image.php?u=" . $vbulletin->userinfo['userid'] . "&amp;dateline=" . $avatar['dateline'] . "";
$navbaravatar = "<img src=\"$navbaravatarurl\" alt=\"Your Avatar\" height=\"". $vbulletin->options['navbarwithavatar_height'] ."\" border=\"0\" />";
}
else
{
// no avatar specified
$nouseavatarchecked = HTML_CHECKED;
$avatarchecked[0] = '';
$navbaravatar = "<img src=\"" . $vbulletin->options['navbarwithavatar_default'] ."\" alt=\"Your Avatar\" height=\"". $vbulletin->options['navbarwithavatar_height'] ."\" border=\"0\" />"; // "<span class=\"smallfont\">No Avatar<br/ >Specified</span>";
}
}
if (strpos($vbulletin->options['copyrighttext'], 'Navbar mit Avatar von <a href="http://www.2-wheel-planet.de" target="_blank" rel="follow">Kolbi</a>') === false)
{
$vbulletin->options['copyrighttext'] .= 'Navbar mit Avatar von <a href="http://www.2-wheel-planet.de" target="_blank" rel="follow">Kolbi</a>';
}

Jamie107 11-14-2010 03:41 PM

Nice mod just installed and trying hard to remove the copyright from the bottom of my forum

any chance you can tell me how to remove it? its kind of old mod now so would be nice and good thing for you to do.

I remove that @ravenfaust and no avatars show anymore?

Cla75 12-03-2010 08:58 AM

hi,
I installed this mod and it is very beautiful.
only one problem:
does not work on vBadvanced CMPS, leaving empty space :-(

Why?
thanks for the support

haytham 12-03-2010 10:11 AM

Installed and worked easily.

E110 12-04-2010 01:41 PM

tnx, installed ;)

Kolbi 12-04-2010 02:05 PM

Quote:

Originally Posted by Cla75 (Post 2128751)
hi,
I installed this mod and it is very beautiful.
only one problem:
does not work on vBadvanced CMPS, leaving empty space :-(

Why?
thanks for the support

I can have a look if you?ll send me url and an admin account.

But I guess I can remember that there was an issue with CMPS templates...

gsmlover4u 12-13-2010 04:51 AM

how to remove kolbi from footer ?

Kolbi 12-13-2010 05:18 AM

Just PM me for further details on it...

E110 01-29-2011 08:01 AM

Quote:

Originally Posted by Kolbi (Post 2129215)
I can have a look if you?ll send me url and an admin account.

But I guess I can remember that there was an issue with CMPS templates...

is there a solving for this problem?

Kolbi 01-30-2011 08:28 AM

As far as I know the problem was that CMPS uses a custom template.

If someone can provide me access to a developement site with both hacks installed, I would like to work s.th. out.

EnigmaVariation 02-13-2011 09:29 PM

Installed this mod and it works well. I just need to know how to remove the Navbar with Avatar by Kolbi from the footer. I have sent a PM. Thanks.

Max Taxable 02-13-2011 09:43 PM

Quote:

Originally Posted by EnigmaVariation (Post 2162295)
Installed this mod and it works well. I just need to know how to remove the Navbar with Avatar by Kolbi from the footer. I have sent a PM. Thanks.

Wasn't it nice of them to delete my previous message about that?

EnigmaVariation 02-13-2011 10:34 PM

Quote:

Originally Posted by Max Taxable (Post 2162306)
Wasn't it nice of them to delete my previous message about that?

Max, I am still tinkering and trying to get rid of it. No luck yet. I have been able to modify it though to my own text and link so far. You have to modify the xml product file in WordPad where you see Kolbi and the link to his website. Then save it and install the product as an overwrite.

Kolbi, if removing your unwelcome advertisement from the bottom of my forum will put me in violation of using your product, please notify me ASAP and I will remove your product immediately and will not use any of your future products. Thanks.

Max Taxable 02-13-2011 11:37 PM

Quote:

Originally Posted by EnigmaVariation (Post 2162324)
Max, I am still tinkering and trying to get rid of it. No luck yet. I have been able to modify it though to my own text and link so far. You have to modify the xml product file in WordPad where you see Kolbi and the link to his website. Then save it and install the product as an overwrite.

Kolbi, if removing your unwelcome advertisement from the bottom of my forum will put me in violation of using your product, please notify me ASAP and I will remove your product immediately and will not use any of your future products. Thanks.

The script installs this in your footer template script. Find and remove:

$vboptions[copyrighttext]

Which has been installed right under:

<div class="smallfont" align="center">
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->

It installs this in the same place on ALL of your styles, by the way.

EnigmaVariation 02-14-2011 12:00 AM

Quote:

Originally Posted by Max Taxable (Post 2162345)
The script installs this in your footer template script. Find and remove:

$vboptions[copyrighttext]

Which has been installed right under:

<div class="smallfont" align="center">
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->

It installs this in the same place on ALL of your styles, by the way.

I tried your suggestion but that deletes the copyright text that I want to have on there too though. :(

Max Taxable 02-14-2011 12:06 AM

Quote:

Originally Posted by EnigmaVariation (Post 2162357)
I tried your suggestion but that deletes the copyright text that I want to have on there too though. :(

It shouldn't have done that. Here is correct part of the footer code, with his added material in bold:

<div align="center">
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->
</div>

<div class="smallfont" align="center">
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->

$vboptions[copyrighttext]
</div>
</div>

</form>

Remove only the bolded part. $vbphrase is vBulletin's copyright, $vboptions is, his option.

EnigmaVariation 02-14-2011 12:34 AM

Quote:

Originally Posted by Max Taxable (Post 2162365)
It shouldn't have done that. Here is correct part of the footer code, with his added material in bold:

<div align="center">
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
$vbphrase[powered_by_vbulletin]
<!-- Do not remove this copyright notice -->
</div>

<div class="smallfont" align="center">
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->

$vboptions[copyrighttext]
</div>
</div>

</form>

Remove only the bolded part. $vbphrase is vBulletin's copyright, $vboptions is, his option.

That is what I did and it still removes all of my vBulletin's copyright info too. I also have Quick User Switch installed and maybe there is something going on between this mod and that mod that doesn't like it when I remove that part. I don't know.

Thanks for trying though. I appreciate your time and help, Max. I am hoping Kolbi uploads a new xml file that has his advertisement footer info removed completely.

Max Taxable 02-14-2011 12:57 AM

Quote:

Originally Posted by EnigmaVariation (Post 2162371)
That is what I did and it still removes all of my vBulletin's copyright info too. I also have Quick User Switch installed and maybe there is something going on between this mod and that mod that doesn't like it when I remove that part. I don't know.

Thanks for trying though. I appreciate your time and help, Max. I am hoping Kolbi uploads a new xml file that has his advertisement footer info removed completely.

In my opinion he should have at least told us about it up front.

Did you fix your footer script back the way it was?

EnigmaVariation 02-14-2011 01:13 AM

Quote:

Originally Posted by Max Taxable (Post 2162382)
In my opinion he should have at least told us about it up front.

Did you fix your footer script back the way it was?

Agreed. And yes I did, thanks. :)

dutchbb 02-27-2011 07:06 PM

How can I make the avatar URL absolute instead of relative? Since the avatar doesn't show up in Photopost or Reviewpost now.

Kolbi 03-30-2011 12:15 PM

Would you be so kind to explain me in which way it should be relative?

I can't really understand there's the issue. :)

Thank you!

Alfa1 04-10-2011 08:46 PM

Many of my members have rectangle (standing or laying) avatars. These gets resized to squares, which squashes the images and looks very ugly.

What can I do to resolve this?

Quote:

Originally Posted by dutchbb (Post 2167633)
How can I make the avatar URL absolute instead of relative? Since the avatar doesn't show up in Photopost or Reviewpost now.

It shows well in Photopost Pro for me. But not in vbadvanced.


All times are GMT. The time now is 01:02 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.02896 seconds
  • Memory Usage 1,840KB
  • 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
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (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