Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> v2.3 RN Feedback/Suggestions
Author Message
phoenix_nl
New Member
New Member



Joined: Apr 18, 2010
Posts: 8

PostPosted: Sun Apr 18, 2010 4:23 am Reply with quote

Hello Guys..

First at all thanks for the great system Raven Nuke!

Currently i am using version v2.30.01 i don't want to upgrade to an newer version because mine is heavy modified..

I am looking for an AUC Mod like the one that's in Php Nuke Evolution..

I hope you can help me out.

Greetings PhoeniX
 
View user's profile Send private message
jakec
Site Admin



Joined: Feb 06, 2006
Posts: 3048
Location: United Kingdom

PostPosted: Sun Apr 18, 2010 5:51 am Reply with quote

Sorry can you explain what the AUC mod is?
 
View user's profile Send private message
spasticdonkey
RavenNuke(tm) Development Team



Joined: Dec 02, 2006
Posts: 1693
Location: Texas, USA

PostPosted: Sun Apr 18, 2010 7:34 am Reply with quote

I'm guessing... Advanced Username Color? [ Only registered users can see links on this board! Get registered or login! ]

never tried this and don't know what version of phpbb2 it was designed for, but have fun Smile
 
View user's profile Send private message Visit poster's website
phoenix_nl







PostPosted: Sun Apr 18, 2010 8:07 am Reply with quote

spasticdonkey wrote:
I'm guessing... Advanced Username Color? [ Only registered users can see links on this board! Get registered or login! ]

never tried this and don't know what version of phpbb2 it was designed for, but have fun Smile


Yes i mean Advanced Username Color..

Oke will give that one a try.

Thanks buddy!
 
phoenix_nl







PostPosted: Sun Apr 18, 2010 10:22 am Reply with quote

Okay got it working and showing up in the Admin menu of the forums Smile!

But..

When i create an group and i try to add an new user to it..

The user is not added to that group still empty..

Any idea how i could fix this Smile?

Ow never mind i got it!

You have to use the user id.. (Not the Username Smile )

Greetings PhoeniX
 
phoenix_nl







PostPosted: Sun Apr 18, 2010 10:37 am Reply with quote

Okay now its working i have found another problem..

Error querying the users table.

DEBUG MODE

SQL Error : 1146 Table 'pbosch_raven.COLOR_GROUPS_TABLE' doesn't exist

SELECT group_id, group_name FROM COLOR_GROUPS_TABLE

Line : 145
File : admin_color_groups.php

I am gettings this when i go to the Forum Admin.

And than to Group Admin > Color Groups

Hope you can help me out Smile

Greetings PhoeniX
 
spasticdonkey







PostPosted: Sun Apr 18, 2010 11:56 am Reply with quote

do you follow all the edits and instructions in the text file?

keep in mind some of the edits reference files in the includes/ directory, and in RN they have been moved to modules/Forums/includes/

includes/functions.php
includes/page_header.php
should be
modules/Forums/includes/functions.php
modules/Forums/includes/page_header.php
and so on..
 
Palbin
Site Admin



Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania

PostPosted: Sun Apr 18, 2010 12:10 pm Reply with quote

There should have been a define for the "COLOR_GROUPS_TABLE " table. Probably in constants.php which appears to be missing.

_________________
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. 
View user's profile Send private message
phoenix_nl







PostPosted: Sun Apr 18, 2010 12:37 pm Reply with quote

spasticdonkey wrote:
do you follow all the edits and instructions in the text file?

keep in mind some of the edits reference files in the includes/ directory, and in RN they have been moved to modules/Forums/includes/

includes/functions.php
includes/page_header.php
should be
modules/Forums/includes/functions.php
modules/Forums/includes/page_header.php
and so on..


Yup i have followed all the instructions..

The only thing i have done in another way is this one.

Quote:

CREATE TABLE `nuke_bbadvanced_username_color` (
`group_id` int(10) unsigned NOT NULL auto_increment,
`group_name` varchar(255) NOT NULL default '',
`group_color` varchar(6) NOT NULL default '',
`group_weight` smallint(2) NOT NULL default '',
PRIMARY KEY (`group_id`)
) TYPE=MyISAM ;

ALTER TABLE nuke_users ADD user_color_gc VARCHAR(6) DEFAULT '';
ALTER TABLE nuke_users ADD user_color_gi TEXT DEFAULT NULL;


Changed to this one:

Because the one that i posted above didn't work..

Quote:
CREATE TABLE `nuke_bbadvanced_username_color` (
`group_id` int(10) unsigned NOT NULL auto_increment,
`group_name` varchar(255) NOT NULL default '',
`group_color` varchar(6) NOT NULL default '',
`group_weight` smallint(2) NOT NULL default '0',
PRIMARY KEY (`group_id`)
) TYPE=MyISAM ;

ALTER TABLE nuke_users ADD user_color_gc VARCHAR(6) DEFAULT '';
ALTER TABLE nuke_users ADD user_color_gi TEXT DEFAULT NULL;


Also i changed this one..





Quote:

#======================================================================= |
#==== Start: == Advanced Username Color ================================ |
#==== v1.0.4 =========================================================== |
#====
function CheckUsernameColor($color, $username)
{
if(strlen($color) < 6)
{
$username = $username;
}
elseif(strlen($color) == 6)
{
$username = "<font color='#". $color ."'><b>". $username ."</b></font>";
}
else
{
$username = $username;
}
return $username;
}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== Advanced Username Color ================================ |
#======================================================================= |


To this one because i read on the forums here that that should be the way..

Quote:
#======================================================================= |
#==== Start: == Advanced Username Color ================================ |
#==== v1.0.4 =========================================================== |
#====
function CheckUsernameColor($color, $username)
{
if(strlen($color) < 6)
{
$username = $username;
}
elseif(strlen($color) == 6)
{
$username = "<font color='#". $color ."'><b>". $username ."</b></font>";
}
else
{
$username = $username;
}
return $username;
}
#====
#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |
#==== End: ==== Advanced Username Color ================================ |
#======================================================================= |


Hope you understand me..

Greetings PhoeniX
 
snype
Regular
Regular



Joined: Aug 12, 2008
Posts: 58

PostPosted: Sun Apr 18, 2010 1:09 pm Reply with quote

If my memory serves me correctly the last time i used this mod it didnt work straight from the box i had to do quite a lot to get it to work fully, I will have a look at it later on to night for you
 
View user's profile Send private message
snype







PostPosted: Sun Apr 18, 2010 7:08 pm Reply with quote

Here is an updated version of it i just done for you just corrected all the search and replace fields and updated some of the sql calls. and i just tested this on 2.3 and the latest release and it worked on my set up

http://phpnuke-install.com/uploads/BBtoNuke_Advanced_Username_Color_1.0.5.zip
 
phoenix_nl







PostPosted: Mon Apr 19, 2010 7:42 am Reply with quote

snype wrote:
Here is an updated version of it i just done for you just corrected all the search and replace fields and updated some of the sql calls. and i just tested this on 2.3 and the latest release and it worked on my set up

http://phpnuke-install.com/uploads/BBtoNuke_Advanced_Username_Color_1.0.5.zip


Thanks M8!

Will try this one asap.
 
phoenix_nl







PostPosted: Tue Apr 20, 2010 7:55 am Reply with quote

Hm..

I tried the one you posted up..

Still getting this:

Error querying the users table.

DEBUG MODE

SQL Error : 1146 Table 'pbosch_raven.COLOR_GROUPS_TABLE' doesn't exist

SELECT group_id, group_name FROM COLOR_GROUPS_TABLE

Line : 145
File : admin_color_groups.php
 
Palbin







PostPosted: Tue Apr 20, 2010 8:10 am Reply with quote

There is no file called "admin_color_groups.php" in the zip file that snype posted. I think you have old files that need to be removed.
 
phoenix_nl







PostPosted: Tue Apr 20, 2010 9:00 am Reply with quote

Palbin wrote:
There is no file called "admin_color_groups.php" in the zip file that snype posted. I think you have old files that need to be removed.


Yup my bad..

Now that one is away..

I can't fix up something like..

Now i have to add users manual per group..

To something more like.

Group Admin.

To add an option there to automatic set the color group of the persons that are in the group i selected?
 
horrorcode
Involved
Involved



Joined: Jan 17, 2009
Posts: 272
Location: Missouri

PostPosted: Wed Feb 02, 2011 5:46 pm Reply with quote

Does anyone perhaps have this file anymore?

On a side note, would a standard phpBB 2.0.23 mod work now, I'm no longer aware of how integrated nuke/bb are in Raven.
 
View user's profile Send private message
Palbin







PostPosted: Thu Feb 03, 2011 6:21 am Reply with quote

The link in the second post works for me.

It would depend on how in-depth the mod is.
 
hicuxunicorniobestbuildpc
The Mouse Is Extension Of Arm



Joined: Aug 13, 2009
Posts: 1122

PostPosted: Sat Feb 12, 2011 7:32 am Reply with quote

Link is not working anymore
[ Only registered users can see links on this board! Get registered or login! ]
 
View user's profile Send private message
horrorcode







PostPosted: Fri Feb 18, 2011 4:48 pm Reply with quote

I'll check out the one in the second post.

I am still curious.

Has nuke finally reached an EOL? Not seen mention of whats going on with a plug-ins system, or Merchant, in going on 2 years now...
 
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Fri Feb 18, 2011 10:41 pm Reply with quote

horrorcode wrote:
I'll check out the one in the second post.

I am still curious.

Has nuke finally reached an EOL? Not seen mention of whats going on with a plug-ins system, or Merchant, in going on 2 years now...


phpnuke - Yes - A long time ago!

RavenNuke(tm) - Definitely Not!

Merchant - The main developer pulled out. It's still viable but not being worked on presently.
 
View user's profile Send private message
horrorcode







PostPosted: Sun Feb 20, 2011 1:29 am Reply with quote

Well, I'll make this short but sweet.

I'm very glad to see a response from you Raven. And on that note.

When I say Nuke these days, in general, I'm referring to RavenNuke, Lol.

I stopped referring to any other *nuke, be it Php-Nuke or not, as a logical means of Content Management long ago(believe it or not). In my eyes Raven was the only thing that came of the whole mess. So in short, I asked if Raven was dead.

I'll leave it at that for now and open a thread to discuss more, I'd love to see this project fulfill what so many others intended to, but indubitably failed as expected.


EDIT: I cant bare to see what I said here and nor should you.
 
horrorcode







PostPosted: Wed Jan 04, 2012 11:25 pm Reply with quote

Not to revive my past arrogance or idiocies, or anything like that, but.

After so many months away I am still seeing little progress in other CMS's, and what I realized after all this time is RN or similar Nuke distros are about as scalable as it gets in the CMS world.

Why does every other cms suck so bad after so long, but RN is still solid lol. I mean that literally. I have looked around for something fresh. Perhaps I don't want to find it. Long live RN.
 
Raven







PostPosted: Fri Jan 06, 2012 1:21 am Reply with quote

RavensScripts

The core support of RN is truly a Team in every sense of the word. That is why RN is still alive and progressing. 2011 was not a very good year for me health-wise but Palbin stepped up to the plate in 2010 to assume the Team lead for the next release of RN, version 2.5, which should be released before the end of the month. Montego had assumed the lead role for the 2.4 release. We can't thank them enough! Version 3.0 is already in the works, but we have to reassess everything after the dust settles on the v2.5 release.

Thanks for being an avid supporter of RN!
 
horrorcode







PostPosted: Mon Jan 09, 2012 6:00 pm Reply with quote

Well after having to drop nCo modified in light of my own financial struggles among other things I really had no choice but to stick with RN, and now it has become basically the only thing I trust enough to use.

And thank you for being the strongest supporter of nuke alive Smile

I do hope to show eventual gratitude towards the other parties responsible for maintaining this ship.
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> v2.3 RN Feedback/Suggestions

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 ©