Ultimate Profile

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

Previous topic - Next topic

hcfwesker

#1880
Ok, do i have to uninstall the previous MOD.  Cause when i click to unintsall it, I'm getting erros in 2 files, which I'm sure those were just some editing I did on my part.

Will members lose all their content they already filled out under their U-Profile?  Like buddies, pictures, and media?

I just downloaded this MOD less than 2 weeks ago, and you're saying there's already been an update :(

I couldn't just replace the new 0.9.1 UltimateProfile.php file over the old one :(


EDIT .....

That's exactly what I did, and it worked.  I even got to move the custom profile info where I wanted it on the profile summary page :)

There's still a few problems, like getting rid of the custom profile titles from diplaying, I just want the info the member's fill out to display.





TAB004

I would like to be able to uninstall.

rebornishard

Quote from: TAB004 on March 24, 2010, 02:27:31 AM
I would like to be able to uninstall.
me to
my profil page becoming mess
because smf trader already there  :'(

Evilcyber

We recently migrated with our forum to another server and in the process reinstalled the forum from scratch. After installing Ultimate Profile we moved the contents of profile_pictures to the same folder at the new host.

The problem now is that all pictures that have been uploaded before the move will show up, but no new ones will be created. The software downloads the new image, but then can't create a renamed image and thumb in profile_pictures.

The error shown is this

2: rename(profile_pictures/tmp_3_thumb,profile_pictures/3_1269697436.jpg) [<a href='function.rename'>function.rename</a>]: No such file or directory
File: /home/bitsy/public_html/Sources/ProfilePictures.php
Line: 175

I already tried setting the folder to 777, 775 and 755, but it won't help.

Any help would be much appreciated!

distante

Quote from: distante on March 23, 2010, 01:34:49 AM
Anyone know how to put the list of "items" bought using SMF SHOP ?

In a RC2 forum

Yağız...

Quote from: distante on March 27, 2010, 07:31:09 PM
Quote from: distante on March 23, 2010, 01:34:49 AM
Anyone know how to put the list of "items" bought using SMF SHOP ?

In a RC2 forum
Find in ./Sources/Profile-View.php:
// Are there things we don't show?
Add before:
// Show users' items on their profile
$result = $smcFunc['db_query']('', '
SELECT it.image, it.name
FROM {db_prefix}shop_inventory AS inv
LEFT JOIN {db_prefix}shop_items AS it ON (it.id = inv.itemid)
WHERE inv.ownerid = {int:id}',
array(
'id' => $memID,
)
);
$context['up_shop_inventory'] = array();
while ($row = $smcFunc['db_fetch_assoc']($result))
{
global $boardurl;
$context['up_shop_inventory'][] = array(
'image' => '<img src="' . $boardurl . '/Sources/shop/item_images/' . $row['image'] . '" alt="' . $row['name'] . '"  alt="' . $row['name'] . '" width="' . $modSettings['shopImageWidth'] . '" height="' . $modSettings['shopImageHeight'] . '" />',
'name' => $row['name'],
);
}
$smcFunc['db_free_result']($result);


Find in ./Themes/default/UltimateProfile.template.php:
'buddies',
Add after:
'inventory',

Find:
function up_block_pictures() {
Add before:
function up_block_inventory() {
global $settings, $txt, $context, $scripturl, $modSettings;

if (!empty($context['up_shop_inventory'])) {
echo '
<div id="up_shop_inventory">
<h3 class="catbg">
<span class="left"></span>
My Inventory
</h3>
<div class="windowbg creator">
<span class="topslice"><span></span></span>
<div class="content">
<table width="100%">
<tr>';

if (!empty($context['up_shop_inventory'])) {
$i = 1;
foreach ($context['up_shop_inventory'] as $item) {
$i = $i + 1;
echo '
<td align="center" valign="top" style="clear: both;">
', $item['image'], '<br />
', $item['name'], '
</td>';

if ($i == 4)
echo '
</tr>
<tr>';
}
}
else
echo '
<td>I do not have any items on my inventory.</td>';

echo '
</tr>
</table>
</div>
<span class="botslice"><span></span></span>
</div>
</div>';
return true;
} else
return false;
}


Quote from: Evilcyber on March 27, 2010, 10:13:47 AM
We recently migrated with our forum to another server and in the process reinstalled the forum from scratch. After installing Ultimate Profile we moved the contents of profile_pictures to the same folder at the new host.

The problem now is that all pictures that have been uploaded before the move will show up, but no new ones will be created. The software downloads the new image, but then can't create a renamed image and thumb in profile_pictures.

The error shown is this

2: rename(profile_pictures/tmp_3_thumb,profile_pictures/3_1269697436.jpg) [<a href='function.rename'>function.rename</a>]: No such file or directory
File: /home/bitsy/public_html/Sources/ProfilePictures.php
Line: 175

I already tried setting the folder to 777, 775 and 755, but it won't help.

Any help would be much appreciated!
Check these settings if they are correct:
Admin > Modification Settings > Ultimate Profile > Pictures path and Pictures URL

Hitakashi

Does anyone know if the SMF 2 RC3 version of this works? and what does it looks like if it does.

Yağız...

Quote from: Hitakashi on March 27, 2010, 08:48:16 PM
Does anyone know if the SMF 2 RC3 version of this works? and what does it looks like if it does.
It works. It looks like a new profile page :P

[-Trogan-]

How can I make this modification compatible with the     Custom Profile Field Mod version 3.20

Please help

Evilcyber

Quote from: Yağız... on March 27, 2010, 08:18:33 PM
Check these settings if they are correct:
Admin > Modification Settings > Ultimate Profile > Pictures path and Pictures URL

Well, previously uploaded pictures show, so I assume the paths are correct.

When I try to upload a new image it will create an entry for it in the profile, but there is no image, only the name I entered.

Yağız...

Quote from: [-Trogan-] on March 27, 2010, 11:17:06 PM
How can I make this modification compatible with the     Custom Profile Field Mod version 3.20

Please help
http://www.simplemachines.org/community/index.php?topic=298641.msg2551471#msg2551471

Quote from: Evilcyber on March 28, 2010, 10:07:42 AM
Quote from: Yağız... on March 27, 2010, 08:18:33 PM
Check these settings if they are correct:
Admin > Modification Settings > Ultimate Profile > Pictures path and Pictures URL

Well, previously uploaded pictures show, so I assume the paths are correct.

When I try to upload a new image it will create an entry for it in the profile, but there is no image, only the name I entered.
Check Pictures Path.

[-Trogan-]

Quote from: [-Trogan-] on March 27, 2010, 11:17:06 PM
How can I make this modification compatible with the     Custom Profile Field Mod version 3.20

Please help

Yağız...

Answered in my previous post ;)

Evilcyber

Quote from: Yağız... on March 28, 2010, 10:13:20 AM
Check Pictures Path.

I tried all possible versions of the pictures path.

[-Trogan-]

Quote from: Yağız... on March 28, 2010, 10:25:22 AM
Answered in my previous post ;)
Now what about another problem I just now had......
Getting the modification "Personalpad" to work with it.

How would I get so to happen?

Hitakashi


Yağız...

Quote from: Evilcyber on March 28, 2010, 10:32:41 AM
Quote from: Yağız... on March 28, 2010, 10:13:20 AM
Check Pictures Path.

I tried all possible versions of the pictures path.
Then it can be a problem with the server ... I don't know too much about uploading, sorry ...

Quote from: [-Trogan-] on March 28, 2010, 01:59:08 PM
Quote from: Yağız... on March 28, 2010, 10:25:22 AM
Answered in my previous post ;)
Now what about another problem I just now had......
Getting the modification "Personalpad" to work with it.

How would I get so to happen?
Link to mod please?

Quote from: Hitakashi on March 28, 2010, 02:25:59 PM
http://img691.imageshack.us/img691/1919/smf.png

well is it supposed to look like that? lol

(ignore "My Inventory")

[unplugged]

Quote from: Hitakashi on March 28, 2010, 02:25:59 PM
http://img691.imageshack.us/img691/1919/smf.png

well is it supposed to look like that? lol

It doesn't appear to have been enabled yet.

Go to Profile > Modify Profile > Ultimate Profile and check the Enable Ultimate Profile? box.
« Next Edit: Tomorrow at 08:34:45 PM by SunKing »   <---- « someone stole my sig... :o »



[-Trogan-]

Quote from: Yağız... on March 28, 2010, 02:38:59 PM
Quote from: [-Trogan-] on March 28, 2010, 01:59:08 PM
Quote from: Yağız... on March 28, 2010, 10:25:22 AM
Answered in my previous post ;)
Now what about another problem I just now had......
Getting the modification "Personalpad" to work with it.

How would I get so to happen?
Link to mod please?


http://custom.simplemachines.org/mods/index.php?mod=788

Hitakashi

Quote from: SunKing on March 28, 2010, 02:52:14 PM
Quote from: Hitakashi on March 28, 2010, 02:25:59 PM
http://img691.imageshack.us/img691/1919/smf.png

well is it supposed to look like that? lol

It doesn't appear to have been enabled yet.

Go to Profile > Modify Profile > Ultimate Profile and check the Enable Ultimate Profile? box.

Nope its not there

Advertisement: