Welcome on Index

Modifications for phpBB3. Try the Mods here and share Your own Mods
There is no support here! Only Read Access!
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Locked
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post 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
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Welcome on Index

Post by Stoker »

I need to see your index.php and index_body.html
Board rules! No PM support
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post by kevinviet »

Thanks Stoker :)
Last edited by kevinviet on 11 Aug 2010, 03:09, edited 1 time in total.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Welcome on Index

Post 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.
Board rules! No PM support
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post 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.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Welcome on Index

Post by Stoker »

Did you remember to remove the edit to includes/functions.php when uninstalling the old mod?
Board rules! No PM support
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post by kevinviet »

Opps maybe not, can i have the old install instruction so i can remove all of it ?

Thanks stoker
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Welcome on Index

Post 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']),
Board rules! No PM support
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post 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
User avatar
kevinviet
BBCoder III
BBCoder III
Posts: 123
Joined: 06 Mar 2010, 04:52

Re: Welcome on Index

Post by kevinviet »

Did you meant to remove all statement above stoker ?

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