Author |
Message |
daltoniko
Regular


Joined: Dec 19, 2004
Posts: 61
|
Posted:
Sun Dec 19, 2004 5:37 pm |
|
I have 2 site powered with nuke 7.3.
The differents are: first site have phpbb 2.0.8 and it is not fixed with chatserv patch. CNB 44b2 it's ok.(but when user logout it didn't delete the forums cookies)
The second site have phpbb 2.0.11 and the chatserv patch installed.
I ve got 2 problem here!!.
The logout without forums logout, and very strange, i can't update user profile. ERROR invalid email ...???
AND:
If i update user from forum pannel... update is ok but when i go in the ya user cp i see near the user real neme some ' <---
Help.
Sorry for my english thx. |
|
|
|
 |
chatserv
Member Emeritus

Joined: May 02, 2003
Posts: 1389
Location: Puerto Rico
|
Posted:
Mon Dec 20, 2004 10:44 pm |
|
Not sure i understand what you mention about the second site's logout function but as for errors on the edit user part of the forum i have double checked it on several BBtoNuke 2.0.11/Nuke Patched powered sites and it worked on all, i would have to wonder if the related files would need editing to match any new/changed fields that may belong to CNB. |
|
|
|
 |
sixonetonoffun
Spouse Contemplates Divorce

Joined: Jan 02, 2003
Posts: 2496
|
Posted:
Tue Dec 21, 2004 8:18 am |
|
It is probably because of these lines being commented out in the logout function of Your_Account index.php. But I'm not sure why this was done...
//$db->sql_query("DELETE FROM ".$prefix."_bbsessions WHERE session_user_id='$r_uid'");
//$db->sql_query("OPTIMIZE TABLE ".$prefix."_bbsessions"); |
_________________ [b][size=5]openSUSE 11.4-x86 | Linux 2.6.37.1-1.2desktop i686 | KDE: 4.6.41>=4.7 | XFCE 4.8 | AMD Athlon(tm) XP 3000+ | MSI K7N2 Delta-L | 3GB Black Diamond DDR
| GeForce 6200@433Mhz 512MB | Xorg 1.9.3 | NVIDIA 270.30[/size:2b8 |
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 8:23 am |
|
yes i drop the comment ...it's ok. but why invalid mail when i update an user? |
|
|
|
 |
sixonetonoffun

|
Posted:
Tue Dec 21, 2004 8:49 am |
|
No idea on that one I'm not able to reproduce that issue from the modify user page. Are there any odd chars or is the email domain listed in the block list by chance? |
|
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 8:59 am |
|
ok. 10 minuts, i create an user test password test.
and i give you my link, so you can try and see the problem ... |
|
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 9:08 am |
|
|
|
 |
sixonetonoffun

|
Posted:
Tue Dec 21, 2004 9:38 am |
|
Try setting in users configuration validate email changes to off and see if that makes a difference. |
|
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 9:44 am |
|
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 10:03 am |
|
and.. if i set Doublecheck email at registration yes... It's reset in no. WHY!!! uaaaahahhhh... |
|
|
|
 |
daltoniko

|
Posted:
Tue Dec 21, 2004 8:51 pm |
|
ok i found!!! It's the Gender mod for nuke 6.5 I don't know where...but this mod is in conflict with CNB |
|
|
|
 |
sixonetonoffun

|
Posted:
Tue Dec 21, 2004 9:09 pm |
|
Well that was my next guess lol j/k
Be sure to go through the known bugs thread too if you haven't ie: doublecheck issue and a few others. |
|
|
|
 |
chatserv

|
Posted:
Tue Dec 21, 2004 9:31 pm |
|
That mod adds a user_gender field to the user's table (at least the one i use does). |
|
|
|
 |
sixonetonoffun

|
Posted:
Tue Dec 21, 2004 10:26 pm |
|
spcdata has the cnb ya files for gender mod thats compatable with the forum one I think. |
|
|
|
 |
daltoniko

|
Posted:
Wed Dec 22, 2004 5:25 am |
|
Doublecheck email at registration don't work? |
|
|
|
 |
sixonetonoffun

|
Posted:
Wed Dec 22, 2004 9:21 am |
|
|
|
 |
daltoniko

|
Posted:
Wed Dec 22, 2004 1:44 pm |
|
im sorry... i speak very litle english! Thx for your patience, i haven't see the fix before.  |
|
|
|
 |
daltoniko

|
Posted:
Wed Dec 22, 2004 5:04 pm |
|
Im here again...!!!!!!
I have deleted all my root.. deleted my db and I have installed nuke73. STOP
I have installed CNB ... and ...ERROR: Invalid Email !!!!
I try to use the same configuration site in my local pc... ALL WORK GOOD!!!!
The original your account module work fine in my remote site.
So... Can be my an hosting problem?
http://www.babynuke.org |
|
|
|
 |
sixonetonoffun

|
Posted:
Wed Dec 22, 2004 5:10 pm |
|
We know there are some issues with register globals off and with magic quotes off. Other then those 2 configuration issues I can't think of any good reason it should behave differently from one server to another. |
|
|
|
 |
daltoniko

|
Posted:
Wed Dec 22, 2004 6:25 pm |
|
look what happen when i try to update an user... |
|
|
|
 |
sixonetonoffun

|
Posted:
Wed Dec 22, 2004 7:36 pm |
|
In modules/Your_Account/includes/functions.php
Find:
function ya_fixtext
Replace it with this:
Code:
function ya_fixtext($ya_fixtext, $html_param="") {
if ($ya_fixtext == "") {
return $ya_fixtext;
}
if($html_param == 'html') {$ya_fixtext = check_html($ya_fixtext);
}else{$ya_fixtext = check_html($ya_fixtext, 'nohtml');}
$ya_fixtext = addslashes($ya_fixtext);
return $ya_fixtext;
}
|
Let me know if this doesn't help. If you have access to htaccess you can add the line:
php_flag magic_quotes_gpc on
If it is allowed on your server this will take care of several other issues in this version of CNB YA. |
|
|
|
 |
daltoniko

|
Posted:
Thu Dec 23, 2004 4:55 am |
|
ok thx! it's perfect now. But for my .htaccess i don't know... wihch file htaccess? I have more files... In your_account includes? I have to see in my php configurations for magic_quotes swiched? |
|
|
|
 |
sixonetonoffun

|
Posted:
Thu Dec 23, 2004 7:43 am |
|
In you nuke base directory would be best. |
|
|
|
 |
|