|
Page 1 of 2
|
Limun 
Joined: January 2008
Posts: 1334
Location: ![[Censor] (Croatia) croatia.png](images/flags/croatia.png) [Censor]
|
 Wrong Default Profile Option On Registration
from here
http://www.icyphoenix.com/viewtopic.php?f=3&p=29143#p29143
i tryes also to do
ALTER TABLE `phpbb_users` CHANGE `user_allow_pm_in` `user_allow_pm_in` TINYINT(1) NOT NULL DEFAULT '1';
ALTER TABLE `phpbb_users` CHANGE `user_allow_mass_email` `user_allow_mass_email` TINYINT(1) NOT NULL DEFAULT '1';
but i get same as andrea75 (not solved)
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#1 Fri 13 Jun, 2008 20:03 |
|
Sponsors

|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
|
portalpez 
Joined: May 2007
Posts: 197
Location:
|
 Re: Wrong Default Profile Option On Registration
To solve this:
open /includes/usercp_register.php
Search for
Quote: $allowviewonline = ( isset($_POST['hideonline']) ) ? ( ($_POST['hideonline']) ? 0 : true ) : true;
$profile_view_popup = ( isset($_POST['profile_view_popup']) ) ? ( ($_POST['profile_view_popup']) ? true : 0 ) : 0;
$viewemail = ( isset($_POST['viewemail']) ) ? ( ($_POST['viewemail']) ? true : 0 ) : 0;
$allowmassemail = ( isset($_POST['allowmassemail']) ) ? ( ($_POST['allowmassemail']) ? true : 0 ) : 0;
$allowpmin = ( isset($_POST['allowpmin']) ) ? ( ($_POST['allowpmin']) ? true : 0 ) : 0;
$notifyreply = ( isset($_POST['notifyreply']) ) ? ( ($_POST['notifyreply']) ? true : 0 ) : 0;
$notifypm = ( isset($_POST['notifypm']) ) ? ( ($_POST['notifypm']) ? true : 0 ) : true;
$popup_pm = ( isset($_POST['popup_pm']) ) ? ( ($_POST['popup_pm']) ? true : 0 ) : true;
$setbm = ( isset($_POST['setbm']) ) ? ( ($_POST['setbm']) ? true : 0 ) : 0;
$sid = (isset($_POST['sid'])) ? $_POST['sid'] : 0;
And remplace for:
Quote: $allowviewonline = ( isset($_POST['hideonline']) ) ? ( ($_POST['hideonline']) ? 0 : true ) : true;
$profile_view_popup = ( isset($_POST['profile_view_popup']) ) ? ( ($_POST['profile_view_popup']) ? true : 0 ) : 0;
$viewemail = ( isset($_POST['viewemail']) ) ? ( ($_POST['viewemail']) ? true : 0 ) : 0;
$allowmassemail = ( isset($_POST['allowmassemail']) ) ? ( ($_POST['allowmassemail']) ? true : 0 ) : true;
$allowpmin = ( isset($_POST['allowpmin']) ) ? ( ($_POST['allowpmin']) ? true : 0 ) : true;
$notifyreply = ( isset($_POST['notifyreply']) ) ? ( ($_POST['notifyreply']) ? true : 0 ) : true;
$notifypm = ( isset($_POST['notifypm']) ) ? ( ($_POST['notifypm']) ? true : 0 ) : true;
$popup_pm = ( isset($_POST['popup_pm']) ) ? ( ($_POST['popup_pm']) ? true : 0 ) : true;
$setbm = ( isset($_POST['setbm']) ) ? ( ($_POST['setbm']) ? true : 0 ) : 0;
$sid = (isset($_POST['sid'])) ? $_POST['sid'] : 0;
Note:
Dont forget clear the cache.
$notifyreply is in true, this meaning all the users receive a email when in her post receive a reply.
If you want the user do not receibe a email when a receive a reply, You do not modify de source code.
I hope this help you.
Last edited by portalpez on Tue 17 Jun, 2008 15:09; edited 1 time in total |
#2 Tue 17 Jun, 2008 14:17 |
|
portalpez 
Joined: May 2007
Posts: 197
Location:
|
 Re: Wrong Default Profile Option On Registration
I think will be good that the new users receive a email notification of reply in theirs post, because if is a new user probably he dont know manage in a forum, and if he is a experimented user, can change this in her profile.
I think....
|
#3 Tue 17 Jun, 2008 14:27 |
|
KugeLSichA 
Joined: August 2006
Posts: 803
Location:  Dresden
|
 Re: Wrong Default Profile Option On Registration
thanks for sharing...
i´ll test this later
|
#4 Sat 21 Jun, 2008 13:17 |
|
portalpez 
Joined: May 2007
Posts: 197
Location:
|
 Re: Wrong Default Profile Option On Registration
You welcome. Dont forgett say me is run well
|
#5 Sun 22 Jun, 2008 23:51 |
|
Mighty Gorgon 
Luca Libralato
Joined: August 2006
Posts: 7192
Location:  Borgo San Michele
|
 Re: Wrong Default Profile Option On Registration
Yes... your solution is fine.
It was a bug.
Thanks for solving it.
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
#6 Thu 10 Jul, 2008 00:44 |
|
Limun 
Joined: January 2008
Posts: 1334
Location: ![[Censor] (Croatia) croatia.png](images/flags/croatia.png) [Censor]
|
 Re: Wrong Default Profile Option On Registration
You welcome. Dont forgett say me is run well 
thank you...
it worked
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#7 Thu 10 Jul, 2008 01:52 |
|
portalpez 
Joined: May 2007
Posts: 197
Location:
|
 Re: Wrong Default Profile Option On Registration
You welcome!!!
|
#8 Fri 29 Aug, 2008 17:48 |
|
ganesh 
Joined: August 2006
Posts: 221
Location:  Somewhere... over the Rainbow...
|
 Re: Wrong Default Profile Option On Registration
Hi there...
I have the same problem but this trick didn't worked for me...
I don't know what to do... Any ideas?
Also my custom profiles (text areas) are always filled with the ones of a specific user.
If you want to try... http://forum.megabass.it
|
#9 Fri 02 Jan, 2009 10:55 |
|
Limun 
Joined: January 2008
Posts: 1334
Location: ![[Censor] (Croatia) croatia.png](images/flags/croatia.png) [Censor]
|
 Re: Wrong Default Profile Option On Registration
Hi there...
I have the same problem but this trick didn't worked for me...
I don't know what to do... Any ideas?
Also my custom profiles (text areas) are always filled with the ones of a specific user.
If you want to try... http://forum.megabass.it
what version you use ?
Also my custom profiles (text areas) are always filled with the ones of a specific user.
If you want to try... http://forum.megabass.it
what do you mean?
BTW i cant see profiles without login , so an test accound would be ok
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#10 Fri 02 Jan, 2009 11:06 |
|
ganesh 
Joined: August 2006
Posts: 221
Location:  Somewhere... over the Rainbow...
|
 Re: Wrong Default Profile Option On Registration
I have 1.2.0.27
what do you mean?
Just try to register... You should see the problem...
I have 4 text areas that should be empty and are filled with other data (always of the same user).
Curriculum - Bassi - Ampli - Strumentazione passata
If you do need a test account I'll send it in PM, let me know.
|
#11 Fri 02 Jan, 2009 11:15 |
|
Limun 
Joined: January 2008
Posts: 1334
Location: ![[Censor] (Croatia) croatia.png](images/flags/croatia.png) [Censor]
|
 Re: Wrong Default Profile Option On Registration
I have 1.2.0.27
I have 4 text areas that should be empty and are filled with other data (always of the same user).
Curriculum - Bassi - Ampli - Strumentazione passata
ahaa , but this is not this problem from this topic
anyway take a look in your ACP>Users>Add Custom Profile Fields or Edit Custom Profile Fields that is added by you or some admin in your site , you can remove it from there
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#12 Fri 02 Jan, 2009 11:22 |
|
ganesh 
Joined: August 2006
Posts: 221
Location:  Somewhere... over the Rainbow...
|
 Re: Wrong Default Profile Option On Registration
No, wait.
I do have the problem exposed in this topic.
If you register, you still have disabled PM in.
Then... I DO need those custom profiles, but when you register they should be empty!
I know this is a different problem, I only mentioned it because it seems to me that the db is someway "locked" (I don't know how to explain)...
|
#13 Fri 02 Jan, 2009 11:26 |
|
Limun 
Joined: January 2008
Posts: 1334
Location: ![[Censor] (Croatia) croatia.png](images/flags/croatia.png) [Censor]
|
 Re: Wrong Default Profile Option On Registration
No, wait.
I do have the problem exposed in this topic.
If you register, you still have disabled PM in.
ok lets see , activate me please
Then... I DO need those custom profiles, but when you register they should be empty!
I know this is a different problem, I only mentioned it because it seems to me that the db is someway "locked" (I don't know how to explain)...
and this as is different please post in new topic
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#14 Fri 02 Jan, 2009 11:36 |
|
ganesh 
Joined: August 2006
Posts: 221
Location:  Somewhere... over the Rainbow...
|
 Re: Wrong Default Profile Option On Registration
activate me please
Done.
and this as is different please post in new topic
I Think it's related...
Of course, I might be wrong...
|
#15 Fri 02 Jan, 2009 11:48 |
|
|
Page 1 of 2
|
Was this topic useful?
Was this topic useful?
Link this topic |
URL |
|
BBCode |
|
HTML |
|
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events
|
|
|
|