Page Index Toggle Pages: 1 ... 6 7 [8]  Send TopicPrint
Very Hot Topic (More than 25 Replies) Extended Profiles for SP1.1 (Read 49974 times)
bordeglobal
God Member
*****
Offline


Only the Best Posters
Survive!

Posts: 1837
Location: Trinidad, West Indies
Joined: Sep 30th, 2002
Gender: Male
Re: Extended Profiles for SP1.1
Reply #105 - Oct 25th, 2003 at 2:59am
Print Post  
Ok, nevermind, I believe I solved this through another code. Thanks.
  

Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Extended Profiles for SP1.1
Reply #106 - Oct 25th, 2003 at 1:06pm
Print Post  
Well it's the same thing, simply add a text field instead of a dropdown box and leave the "http://www.yourpage.com/YourImageDir/" part out of the code Wink
  

The Administrator.
Back to top
WWW  
IP Logged
 
bordeglobal
God Member
*****
Offline


Only the Best Posters
Survive!

Posts: 1837
Location: Trinidad, West Indies
Joined: Sep 30th, 2002
Gender: Male
Re: Extended Profiles for SP1.1
Reply #107 - Oct 26th, 2003 at 5:49pm
Print Post  
http://boardmod.yabbforum.com/yabb/YaBB.pl?board=newssp13;action=display;num=104...
I tried adding the above code to version 1.1 but it still diid not hide the blank field. Also it does not allow the blank field to be created
« Last Edit: Oct 27th, 2003 at 4:36am by bordeglobal »  

Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Extended Profiles for SP1.1
Reply #108 - Nov 2nd, 2003 at 12:13pm
Print Post  
Well all I can say is that it works for me Undecided
  

The Administrator.
Back to top
WWW  
IP Logged
 
bordeglobal
God Member
*****
Offline


Only the Best Posters
Survive!

Posts: 1837
Location: Trinidad, West Indies
Joined: Sep 30th, 2002
Gender: Male
Re: Extended Profiles for SP1.1
Reply #109 - Nov 2nd, 2003 at 8:47pm
Print Post  
If you look at the 1.3 board and the thread about this mod you will see some other users have this same problem to. It could possibly be a bug?
  

Back to top
WWW  
IP Logged
 
Ron
Junior Member
**
Offline


I'm SquisHED ;-)

Posts: 62
Location: Grand Rapids
Joined: Feb 8th, 2004
Gender: Male
Re: Extended Profiles for SP1.1
Reply #110 - Apr 21st, 2004 at 3:08pm
Print Post  
Michael, I have a small problem at present (but LOVE the mod!)

I want some extended data to show up in profile and on the side of posts. (no problem there) but in options it says list users (to mane to list) or list groups.  Many of my groups have a space in them. Example

special member,advanced member,Associate Instructor etc...

When I enter these group names into the options for that extended profile item, and click save it takes the space out and the item doesn't show up as desired. I also tried to insert a _ in the space area and that doesn't work. Is there a way around this? Changing my membergroup names would be a major chore as I'd have to adjust the name in each members profile.

I wondered if I could go into the data file (not sure where it is) and add the space to the string of membergroups used by your mod. But seems easier to just adjust the code to allow a space or to allow me to enter a % or some character to represent a space.
  
Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Extended Profiles for SP1.1
Reply #111 - Apr 24th, 2004 at 11:03pm
Print Post  
Oh I didn't realize that spaces were allowed in member groups. The spaces   automatically get deleted to prevent typos Roll Eyes

Anyway here is the fix:
open ExtendedProfiles.pl and look for
Code
Select All
	$FORM{'v_users'} =~ s/ //g;
	$FORM{'v_groups'} =~ s/ //g;
	$FORM{'p_users'} =~ s/ //g;
	$FORM{'p_groups'} =~ s/ //g;
	$FORM{'m_users'} =~ s/ //g;
	$FORM{'m_groups'} =~ s/ //g; 


replace it with
Code
Select All
	$FORM{'v_users'} =~ s/^(\s)*(.+?)(\s)*$/$2/;
	$FORM{'v_groups'} =~ s/^(\s)*(.+?)(\s)*$/$2/;
	$FORM{'p_users'} =~ s/^(\s)*(.+?)(\s)*$/$2/;
	$FORM{'p_groups'} =~ s/^(\s)*(.+?)(\s)*$/$2/;
	$FORM{'m_users'} =~ s/^(\s)*(.+?)(\s)*$/$2/;
	$FORM{'m_groups'} =~ s/^(\s)*(.+?)(\s)*$/$2/; 


  

The Administrator.
Back to top
WWW  
IP Logged
 
Ron
Junior Member
**
Offline


I'm SquisHED ;-)

Posts: 62
Location: Grand Rapids
Joined: Feb 8th, 2004
Gender: Male
Re: Extended Profiles for SP1.1
Reply #112 - Apr 25th, 2004 at 12:27am
Print Post  
thanks! - will punch it in now.
  
Back to top
WWW  
IP Logged
 
Ron
Junior Member
**
Offline


I'm SquisHED ;-)

Posts: 62
Location: Grand Rapids
Joined: Feb 8th, 2004
Gender: Male
Re: Extended Profiles for SP1.1
Reply #113 - Apr 25th, 2004 at 12:37am
Print Post  
Works great - thanks!
  
Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Extended Profiles for SP1.1
Reply #114 - Apr 25th, 2004 at 1:52am
Print Post  
Alright, new version has been released. Small bugfix for your spaces in member groups problem. If you update from v1.2.1 then you only have to upload the new ExtendedProfiles.pl. Smiley
  

The Administrator.
Back to top
WWW  
IP Logged
 
Jungle Jim
God Member
*****
Offline



Posts: 1015
Location: The Fridge
Joined: Apr 7th, 2003
Gender: Male
Re: Extended Profiles for SP1.1
Reply #115 - Apr 25th, 2004 at 3:01pm
Print Post  
So the new link is ..... ?  Theres 8 pages of this topic.....  Hope this mod works on 1.1
  
Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Extended Profiles for SP1.1
Reply #116 - Apr 25th, 2004 at 3:41pm
Print Post  
Well what about looking at the fist post? Wink
oh and yes, there is a SP1.1-compatible .mod file included.
  

The Administrator.
Back to top
WWW  
IP Logged
 
Jungle Jim
God Member
*****
Offline



Posts: 1015
Location: The Fridge
Joined: Apr 7th, 2003
Gender: Male
Re: Extended Profiles for SP1.1
Reply #117 - Apr 26th, 2004 at 12:37am
Print Post  
Hotlinks Mod:

Michael Prager=GOD

Cheesy Ty.

btw: i never goto the first post because some ppl post updates further into the thread, thats a pain cos u gotta read all pages to find any updates.. but TY Smiley
  
Back to top
 
IP Logged
 
Jungle Jim
God Member
*****
Offline



Posts: 1015
Location: The Fridge
Joined: Apr 7th, 2003
Gender: Male
Re: Extended Profiles for SP1.1
Reply #118 - Apr 28th, 2004 at 11:45pm
Print Post  
Hmm, after applying the mod, none of my moderators have their moderator functions available, even thoughthey ARE listed as moderators for their forums....

Any help here ?
  
Back to top
 
IP Logged
 
Jungle Jim
God Member
*****
Offline



Posts: 1015
Location: The Fridge
Joined: Apr 7th, 2003
Gender: Male
Re: Extended Profiles for SP1.1
Reply #119 - Apr 29th, 2004 at 6:18pm
Print Post  
Okm y fault, i missed a bit of the code install.... ignore me, all ok now - hope i didnt give anyone nightmares looking for probs that dont exist - this is really a TOP mod Mike, and Thx for it Muchly Cheesy
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 ... 6 7 [8] 
Send TopicPrint