Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> CNB Your Account
Author Message
daltoniko
Regular
Regular



Joined: Dec 19, 2004
Posts: 61

PostPosted: Sun Dec 19, 2004 5:37 pm Reply with quote

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 ...??? Question
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 Smile thx.
 
View user's profile Send private message Visit poster's website
chatserv
Member Emeritus



Joined: May 02, 2003
Posts: 1389
Location: Puerto Rico

PostPosted: Mon Dec 20, 2004 10:44 pm Reply with quote

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.
 
View user's profile Send private message Visit poster's website
sixonetonoffun
Spouse Contemplates Divorce



Joined: Jan 02, 2003
Posts: 2496

PostPosted: Tue Dec 21, 2004 8:18 am Reply with quote

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 
View user's profile Send private message
daltoniko







PostPosted: Tue Dec 21, 2004 8:23 am Reply with quote

yes i drop the comment ...it's ok. but why invalid mail when i update an user?
 
sixonetonoffun







PostPosted: Tue Dec 21, 2004 8:49 am Reply with quote

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







PostPosted: Tue Dec 21, 2004 8:59 am Reply with quote

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







PostPosted: Tue Dec 21, 2004 9:08 am Reply with quote

[ Only registered users can see links on this board! Get registered or login! ]

ok try with user test pasword test
 
sixonetonoffun







PostPosted: Tue Dec 21, 2004 9:38 am Reply with quote

Try setting in users configuration validate email changes to off and see if that makes a difference.
 
daltoniko







PostPosted: Tue Dec 21, 2004 9:44 am Reply with quote

the same...
 
daltoniko







PostPosted: Tue Dec 21, 2004 10:03 am Reply with quote

and.. if i set Doublecheck email at registration yes... It's reset in no. WHY!!! uaaaahahhhh...
 
daltoniko







PostPosted: Tue Dec 21, 2004 8:51 pm Reply with quote

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







PostPosted: Tue Dec 21, 2004 9:09 pm Reply with quote

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







PostPosted: Tue Dec 21, 2004 9:31 pm Reply with quote

That mod adds a user_gender field to the user's table (at least the one i use does).
 
sixonetonoffun







PostPosted: Tue Dec 21, 2004 10:26 pm Reply with quote

spcdata has the cnb ya files for gender mod thats compatable with the forum one I think.
 
daltoniko







PostPosted: Wed Dec 22, 2004 5:25 am Reply with quote

Doublecheck email at registration don't work?
 
sixonetonoffun







PostPosted: Wed Dec 22, 2004 9:21 am Reply with quote

[ Only registered users can see links on this board! Get registered or login! ]
Installer missing config for double check email on new users reg page.
INSERT INTO nuke_cnbya_config VALUES ('doublecheckemail', '1');
 
daltoniko







PostPosted: Wed Dec 22, 2004 1:44 pm Reply with quote

im sorry... i speak very litle english! Thx for your patience, i haven't see the fix before. Smile
 
daltoniko







PostPosted: Wed Dec 22, 2004 5:04 pm Reply with quote

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?
[ Only registered users can see links on this board! Get registered or login! ]
 
sixonetonoffun







PostPosted: Wed Dec 22, 2004 5:10 pm Reply with quote

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







PostPosted: Wed Dec 22, 2004 6:25 pm Reply with quote

Image

look what happen when i try to update an user...
 
sixonetonoffun







PostPosted: Wed Dec 22, 2004 7:36 pm Reply with quote

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







PostPosted: Thu Dec 23, 2004 4:55 am Reply with quote

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







PostPosted: Thu Dec 23, 2004 7:43 am Reply with quote

In you nuke base directory would be best.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> CNB Your Account

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©