Page 7 of 11

Re: Welcome on Index

Posted: 10 Aug 2010, 01:14
by kevinviet
No, it 's not a browser issue because I'm able to see my avatar on your board but can't see it on my.
here the demo log in
nick : tester
pass : test123

Thanks Stoker

Re: Welcome on Index

Posted: 10 Aug 2010, 07:10
by Stoker
I need to see your index.php and index_body.html

Re: Welcome on Index

Posted: 10 Aug 2010, 08:27
by kevinviet
Thanks Stoker :)

Re: Welcome on Index

Posted: 10 Aug 2010, 08:44
by Stoker
Looks fine.
Have you installed some kind of Avatar mod? The reason I ask this is that the avatar images is kind of screwed when viewing the Testers profile.

Re: Welcome on Index

Posted: 10 Aug 2010, 09:51
by kevinviet
Yes, before I have old avatar mod from here on the your old board. I think it was Arrow mod. I just uninstalled in and installed this mod 2 days ago.

Re: Welcome on Index

Posted: 10 Aug 2010, 11:59
by Stoker
Did you remember to remove the edit to includes/functions.php when uninstalling the old mod?

Re: Welcome on Index

Posted: 10 Aug 2010, 17:49
by kevinviet
Opps maybe not, can i have the old install instruction so i can remove all of it ?

Thanks stoker

Re: Welcome on Index

Posted: 10 Aug 2010, 17:51
by Stoker
I found this old instructions:

Open includes/functions.php and find:(Some of you might already have this edits, But Most wont. So Just do it, and see if you get a duplicate)
As RMcGirr83 stated, there were some errors with the avatar, so heres how to fix them.
find:

Code: Select all

	// The following assigns all _common_ variables that may be used at any point in a template.
and add after:

Code: Select all

    if (!function_exists('get_user_avatar'))
    {
        include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
    }   

Then find:

Code: Select all

'U_PROFILE'				=> append_sid("{$phpbb_root_path}ucp.$phpEx"),
and add after:

Code: Select all

'U_USERNAME'            =>    get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']),
then find:(Some of you might already have this edits, But Most wont. So Just do it, and see if you get a duplicate)

Code: Select all

'SITENAME'						=> $config['sitename'],
and add after:

Code: Select all

'USER_AVATAR'                    => get_user_avatar($user->data['user_avatar'], $user->data['user_avatar_type'], $user->data['user_avatar_width'], $user->data['user_avatar_height']),

Re: Welcome on Index

Posted: 10 Aug 2010, 18:44
by kevinviet
All the state above was installed, I double check everything correct but the problem still remains. Did i miss some uninstall from Arrow816 mod ? I was use Arrow816 instruction not RMcGirr83.

Thanks

Re: Welcome on Index

Posted: 10 Aug 2010, 18:46
by kevinviet
Did you meant to remove all statement above stoker ?

[edit]Removed all statements above but the problem still not fix .[/edit]