News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Ultimate Profile

Started by JovanT, March 12, 2009, 12:14:40 PM

Previous topic - Next topic

Yağız...

Quote from: snyperthugs on May 21, 2010, 02:07:06 PM
OK Im having a few problems. The admin can add photos to their profile, but uses cannot, There is no Media sections, and the buddies sections doesn't work..... Anybody know what I can do to fix this?  Thanks in advance
Did you enabled permission for normal users? (Admin > Permissions)

snyperthugs

Quote from: Yağız... on May 21, 2010, 02:14:35 PM
Quote from: snyperthugs on May 21, 2010, 02:07:06 PM
OK Im having a few problems. The admin can add photos to their profile, but uses cannot, There is no Media sections, and the buddies sections doesn't work..... Anybody know what I can do to fix this?  Thanks in advance
Did you enabled permission for normal users? (Admin > Permissions)

Ok That fixed the Pictures part and thanks.  But the "MEDIA" and "BUDDIES" section still are not working
www.4mydjs.com - Get Your Music Heard!

Yağız...

You should enable them from Admin > Features And Options > Ultimate Profile.

snyperthugs

#2123
Quote from: Yağız... on May 21, 2010, 02:25:19 PM
You should enable them from Admin > Features And Options > Ultimate Profile.

I did that but still doesn't show up .............. Anybody know what can be causing the "Media" part to not show? and the buddies to not work???
www.4mydjs.com - Get Your Music Heard!

truhe

Quote from: Yağız... on May 21, 2010, 01:13:27 PM
Jovan removed the file from his server :/ I don't have it for SMF 1.1.x versions, but I should have it somewhere :)
I'm glad to hear this. If you should find it it would be nice to post it here.

enCyde

Quote from: enCyde on May 10, 2010, 01:59:08 PM
okey. I think it worked I have no errors now in my error log, and i can see Ultimate profile in the profile menu, I added some text to test and enable the mod. But nothing is showing up on my profile. I have set all permissions enable. But nothing is showing up on my profile that i typed in the text boxes, "hobbys" et.c

please help.


thanks

anyone?

dannbass

I've been searching but couldn't find... is there a new version of the profile-redirect.php?
<?php
/*
* profile-redirect.php
* Version 1.0
* Tested on SMF 1.1.x
*
* Author: Jovan Turanjanin
*
* This file accepts member's username as input and redirect to appropriate profile page.
* If you want to use Display Name instead of a Username just replace memberName with the realName in the query below.
*/

require_once './SSI.php';


$username addslashes ($_GET['user']);
$sql db_query ('SELECT ID_MEMBER FROM ' $db_prefix 'members WHERE memberName = "' $username '"'__FILE____LINE__);

if (
mysql_num_rows ($sql) < 1)
fatal_error ('Unknown user.'false);

list (
$user_id) = mysql_fetch_row ($sql);

redirectexit ('action=profile;u=' $user_id);

?>

I still don't know my way into the $smcFunc to port this one to structure of 2.0
Thank you!

Yağız...

<?php
/*
* profile-redirect.php
* Version 1.0
* Tested on SMF 1.1.x
*
* Author: Jovan Turanjanin
*
* This file accepts member's username as input and redirect to appropriate profile page.
* If you want to use Display Name instead of a Username just replace member_name with the real_name in the query below.
*/

require_once './SSI.php';


$username addslashes ($_GET['user']);
$sql $smcFunc['db_query']('''SELECT id_member FROM {db_prefix}members WHERE member_name = {string:name}', array( 'name' => $username, ) );

if (
$smcFunc['db_num_rows']($sql) < 1)
   
fatal_error ('Unknown user.'false);

list (
$user_id) = $smcFunc['db_num_rows']($sql);

redirectexit('action=profile;u=' $user_id);

?>

dannbass

Thank you Yağız...!! I still need to try it out, but I really appreciate your quick reply!!

ActivePatriot

Hello,

I'm trying to integrate Buy me a Drink into Ultimate Profile.
I would like to put the clickable buy me a drink image directly below the globe image for website in the contact section
What page/file do I edit to include this?

Yağız...

Quote from: ActivePatriot on May 24, 2010, 05:43:16 PM
Hello,

I'm trying to integrate Buy me a Drink into Ultimate Profile.
I would like to put the clickable buy me a drink image directly below the globe image for website in the contact section
What page/file do I edit to include this?
Can you post the link to the mod page please?

ActivePatriot

Quote from: Yağız... on May 24, 2010, 05:47:35 PM
Quote from: ActivePatriot on May 24, 2010, 05:43:16 PM
Hello,

I'm trying to integrate Buy me a Drink into Ultimate Profile.
I would like to put the clickable buy me a drink image directly below the globe image for website in the contact section
What page/file do I edit to include this?
Can you post the link to the mod page please?

Ultimate Profile:
http://custom.simplemachines.org/mods/index.php?mod=1675

Buy Me a Drink:
http://custom.simplemachines.org/mods/index.php?mod=1750


My buy me a drink shows up in regular profile but not in ultimate profile like so:

Regular Profile (I still need to reformat because it overlaps, but at least it shows):
http://activepatriot.org/index.php?action=profile;u=5

Ultimate Profile:
http://activepatriot.org/index.php?action=profile;u=1

On this, I'd like it to show below the globe in the "Contact Me" area

Izzy180

I'm looking to do the same thing but with a different mod, namely the WoW name mod to create Alt names for characters in the UP.

Is it possible?

Yağız...

Quote from: ActivePatriot on May 24, 2010, 06:01:53 PM
Quote from: Yağız... on May 24, 2010, 05:47:35 PM
Quote from: ActivePatriot on May 24, 2010, 05:43:16 PM
Hello,

I'm trying to integrate Buy me a Drink into Ultimate Profile.
I would like to put the clickable buy me a drink image directly below the globe image for website in the contact section
What page/file do I edit to include this?
Can you post the link to the mod page please?

Ultimate Profile:
http://custom.simplemachines.org/mods/index.php?mod=1675

Buy Me a Drink:
http://custom.simplemachines.org/mods/index.php?mod=1750


My buy me a drink shows up in regular profile but not in ultimate profile like so:

Regular Profile (I still need to reformat because it overlaps, but at least it shows):
http://activepatriot.org/index.php?action=profile;u=5

Ultimate Profile:
http://activepatriot.org/index.php?action=profile;u=1

On this, I'd like it to show below the globe in the "Contact Me" area
Forgot to ask, what is your SMF Version?

Quote from: Izzy180 on May 25, 2010, 01:15:24 PM
I'm looking to do the same thing but with a different mod, namely the WoW name mod to create Alt names for characters in the UP.

Is it possible?
Mod link and SMF version please.

Izzy180

The mod is here http://custom.simplemachines.org/mods/index.php?mod=282

My smf version is 1.1.11

I know it seems to only be for the RC but the mod does work in the normal forum part, just can't figure out how to get those 4 fields showing on the UP!

ActivePatriot

Sorry, I forgot

SMF 2 RC3

carsch

I love this mod.  I made changes to my profile on this and clicked the save, but it doesn't look like it's saving what I'm inputting.

Any ideas?

Edit, it's on 1.11

enCyde

Quote from: carsch on May 25, 2010, 10:56:50 PM
I love this mod.  I made changes to my profile on this and clicked the save, but it doesn't look like it's saving what I'm inputting.

Any ideas?

Edit, it's on 1.11

I have the same problem! and I'm still waiting for help

:\

MATTEK

SMF 2.0.1

Like Comics, Books, Movies or T.V. Shows? Read about them here!!

enCyde

ah okey, I got it working and it's running okey! only one thing I've searched for the same problem but didn't really get an answer. I'ts about the buddy list. I've tested to add a buddy and he answered the request, but he don't show up on my buddy list. Any idea how to fix this?

cheers and thanks

Advertisement: