vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   avatar on a non vb page (https://vborg.vbsupport.ru/showthread.php?t=153010)

jeramie78 07-22-2007 06:34 AM

avatar on a non vb page
 
hey all,

ok consider me a noob but this is my code to try to get a avatar to display on a non vb page but nothing i seem to do works. some help would realy be appreciated. i get no errors but i dont get any data output either.

PHP Code:

<?
$userid = "1";
function fetch_avatar_url($userid)
{
    global $vbulletin;

    if ($avatarinfo = mysql_queary("
        SELECT user.avatarid, user.avatarrevision, avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline,
            customavatar.width, customavatar.height
        FROM " . TABLE_PREFIX . "user AS user
        LEFT JOIN " . TABLE_PREFIX . "avatar AS avatar ON avatar.avatarid = user.avatarid
        LEFT JOIN " . TABLE_PREFIX . "customavatar AS customavatar ON customavatar.userid = user.userid
        WHERE user.userid = $userid"))
    {
        if (!empty($avatarinfo['avatarpath']))
        {
            return array($avatarinfo['avatarpath']);
        }
        else if ($avatarinfo['hascustom'])
        {
            $avatarurl = array('hascustom' => 1);

            if ($vbulletin->options['usefileavatar'])
            {
                $avatarurl[] = $vbulletin->options['avatarurl'] . "/avatar{$userid}_{$avatarinfo['avatarrevision']}.gif";
            }
            else
            {
                $avatarurl[] = "image.php?u=$userid&amp;dateline=$avatarinfo[dateline]";
            }

            if ($avatarinfo['width'] AND $avatarinfo['height'])
            {
                $avatarurl[] = " width=\"$avatarinfo[width]\" height=\"$avatarinfo[height]\" ";
            }
            return $avatarurl;
        }
        else
        {
            return '';

        }
    }
}
?>

<table>
<td><img src="./images/<? echo "$avatarinfo"; ?>"></td></table>


nexialys 07-22-2007 01:49 PM

mysql_queary >> mysql_query

from the html snippet, you added ./images/ in it, but the vbulletin avatarurl usually contain it...

what is the output of your code?

jeramie78 07-22-2007 06:30 PM

Thanks for pointing out the typo ....i however did manage to get it working but only for VB avatars if someone has a custom one it will not work :( So if you can think of a way to get custom urls too i would greatly appreciate it.

PHP Code:

<?
    $avatarinfo = mysql_query("
        SELECT user.avatarid, user.avatarrevision, avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline,
            customavatar.width, customavatar.height
        FROM vb_user AS user
        LEFT JOIN vb_avatar AS avatar ON avatar.avatarid = user.avatarid
        LEFT JOIN vb_customavatar AS customavatar ON customavatar.userid = user.userid
        WHERE user.userid = $userid");

               $query_row=mysql_fetch_array($avatarinfo);

echo "<img src=\"forums/$query_row[avatarpath]\">";
?>



All times are GMT. The time now is 03:17 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.00962 seconds
  • Memory Usage 1,720KB
  • 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_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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