March 29 2024 19:12:17
Navigation
· Home
· Articles
· Downloads
· FAQ
· Discussion Forum
· News Categories
· Contact Me
· Search
Demos
· Glossary
Users Online
· Guests Online: 1

· Members Online: 0

· Total Members: 1,892
· Newest Member: skalsted
Last Seen Users
· muscapaul 1 week
· Unforgiven 8 weeks
· Wheeler11 weeks
· batbaru116 weeks
· MM98 weeks
· Zippo119 weeks
· hyperkolyok121 weeks
· Wivern174 weeks
· Sinders293 weeks
· Froberg337 weeks
Support sites
Fusion Sites
PHP-Fusion
View Thread
 Print Thread
Extended Profile v2.xx
GruntZ
Nope.. i can only see 1 field at a time..

here is a screnshoot u can see..

in this ss there are 3 fields.. but u can opnly see the 1 one..

test

the other fields are test 2 and test3 and u cant see those
GruntZ attached the following image:


[27.72kB]
 
GruntZ
Any ideas?
 
muscapaul
Not really. Never heard of this problem before. Make certain that both the fields you enter are unique.
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
GruntZ
they are.. and the fields are also shown in the users profile...

So its preety wierd..
 
muscapaul
Just to be certain, can you download the package again and re-upload the contents of the infusion folder?
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
i like the mod, but i would like to know how to call a certain filleds.

sorry im still learning how to call of the data base still a noooooob
GrinGrinGrin
 
muscapaul
That would be something custom-made. Where do you want to call the fields? You only want some fields to be displayed in profile pages? In that case you need to define the fields but you do not have the possibility to redefine those fields without the need to change your custom-made solution either.
If you provide the necessary information I can create it for you, but you will have to be patient as I have other matters that have rpiority.
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
i want to create a Custom Pages in php so it will pull up just the new field i made the fields i
DB field name ps3_name
Field Display PS3 User Name

i want to show the user_id then what the put in the field right know mine says TEST

so it look like
DOOM Test
Edited by DOOM on 02-01-2008 03:31
 
GruntZ
muscapaul wrote:
Not really. Never heard of this problem before. Make certain that both the fields you enter are unique.


hi again..

i just installed it again using ur files on clean website..

and same error as above....
 
muscapaul
GruntZ wrote:
i just installed it again using ur files on clean website..

and same error as above....
Those were from a freshly downloaded package?
Edited by muscapaul on 02-01-2008 12:25
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
muscapaul
DOOM wrote:
i want to create a Custom Pages in php so it will pull up just the new field i made the fields i
DB field name ps3_name
Field Display PS3 User Name

i want to show the user_id then what the put in the field right know mine says TEST

so it look like
DOOM Test

I'll send you something later on.
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
ok when you get a chance and thanks Wink
 
GruntZ
muscapaul wrote:
GruntZ wrote:
i just installed it again using ur files on clean website..

and same error as above....
Those were from a freshly downloaded package?


yes....
 
muscapaul
Hmm, maybe you can grant me access to your site with limited admin rights and I can see if there is anything that I can do from there. Details in a PM?
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
the same thing with mine when i have 3 or more fields it only shows one at a time.Wink
 
muscapaul
Er..., since you mention '3 or more', does it show when there are two?

BTW: In the latest downloadable version (2.18) I have the same ../infusions/extended_profile/extended_profile_admin.php as on my Diptera.info website and it works perfectly well there, with all four fields displaying in 'Current Fields'.

Can you please both send me your MySQL and PHP versions (see PHP Info in Admin Panel -> System Admin).
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
muscapaul wrote:
Er..., since you mention '3 or more', does it show when there are two?

not even with Two

MYSQL
Download source  Code
mysql
MySQL Support enabled
Active Persistent Links  0 
Active Links  1 
Client API version  4.1.22 
MYSQL_MODULE_TYPE 
MYSQL_SOCKET
MYSQL_INCLUDE 
MYSQL_LIBS 





PHP
Download source  Code
PHP Version 5.2.5


 
muscapaul
Try this code. It will only display for members.
Download source  Code
<?php
if (iMEMBER) {
    $result=dbquery("SELECT * FROM ".$db_prefix."extended_profile_values t1 INNER JOIN  ".$db_prefix."users t2 ON t1.prop_user_id=t2.user_id WHERE prop_name='ps3_name' ORDER BY user_id");
    echo "<table width='100%' cellpadding='0' cellspacing='0' class=''>";
    if (dbrows($result) != 0) {
        while ($data = dbarray($result)) {
            if ($data['prop_value'] != '') {
            echo "<tr><td class='small' align='left'><a href='profile.php?lookup=$data[user_id]' title=''>";
            echo $data['user_name']."</a></td><td>";
            echo stripslashes($data['prop_value'])."</td></tr>";
        }
    }
}
echo "</table>";
}
else { }
?>



To make it display for all, remove the line
if (iMEMBER) {
and remove the } above else { }.
To make it admin only replace iMEMBER by iADMIN or iSUPERADMIN.
Edited by muscapaul on 10-01-2008 20:28
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
DOOM
thank you for this it works great
 
muscapaul
The issue with non-appearing fields seems to be browser related: GruntZ's site does not show these fields using IE (7 in my case) but does show them on Firefox 2. I also tried with a standard theme and then the problem remained.
So, it is not specific to certain themes.

My guess is that it is related to some installed infusions or mods. DOOM, can you send me a list with infusions, so I can check for communality?
Paul

Time flies like an arrow, fruit flies like banana (Groucho Marx)

sites: www.diptera.info (site owner); www.phpfusion-ned... (superadministrator)
 
Jump to Forum:
Donate
Please help to make
muscapaul.com
possible and enable
further improvements!
Login
Username

Password



Forgotten your password?
Request a new one here.
Temporary email addresses
Please note: While activating new accounts I usually check them out. If I notice an account registered with a temporary email address it will be deleted.
Newsletter
Newsletters are for registered members only.
Shoutbox
You must login to post a message.

01/12/2021 16:45
Szép napot

13/06/2021 07:01
I found this site again!

21/04/2020 18:32
Barely...

11/11/2013 00:48
Cool! This site is still around!

18/10/2013 20:28
hey! Smile

25/06/2011 01:40
My name is Andreo, I'm new member Smile

25/06/2011 01:39
Hello Muscapaul, is there anyone here ?

13/09/2010 01:02
nice mod thanks Smile

10/07/2010 15:01
Paul, hows thing?

07/07/2010 03:47
Who becomes the world champion on football? We wil

Render time: 0.15 seconds 9,150,193 unique visits