| Author |
Message |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Sun Apr 18, 2010 4:23 am |
|
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 |
|
|
|
 |
jakec Site Admin

Joined: Feb 06, 2006 Posts: 3028 Location: United Kingdom
|
Posted:
Sun Apr 18, 2010 5:51 am |
|
Sorry can you explain what the AUC mod is? |
|
|
|
 |
spasticdonkey RavenNuke(tm) Development Team

Joined: Dec 02, 2006 Posts: 1251 Location: Texas, USA
|
Posted:
Sun Apr 18, 2010 7:34 am |
|
I'm guessing... Advanced Username Color?
never tried this and don't know what version of phpbb2 it was designed for, but have fun  |
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Sun Apr 18, 2010 8:07 am |
|
| spasticdonkey wrote: | I'm guessing... Advanced Username Color?
never tried this and don't know what version of phpbb2 it was designed for, but have fun |
Yes i mean Advanced Username Color..
Oke will give that one a try.
Thanks buddy! |
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Sun Apr 18, 2010 10:22 am |
|
Okay got it working and showing up in the Admin menu of the forums !
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 ?
Ow never mind i got it!
You have to use the user id.. (Not the Username )
Greetings PhoeniX |
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Sun Apr 18, 2010 10:37 am |
|
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
Greetings PhoeniX |
|
|
|
 |
spasticdonkey RavenNuke(tm) Development Team

Joined: Dec 02, 2006 Posts: 1251 Location: Texas, USA
|
Posted:
Sun Apr 18, 2010 11:56 am |
|
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: 2403 Location: Pennsylvania
|
Posted:
Sun Apr 18, 2010 12:10 pm |
|
There should have been a define for the "COLOR_GROUPS_TABLE " table. Probably in constants.php which appears to be missing. |
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Sun Apr 18, 2010 12:37 pm |
|
| 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


Joined: Aug 12, 2008 Posts: 58
|
Posted:
Sun Apr 18, 2010 1:09 pm |
|
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 |
|
|
|
 |
snype Regular


Joined: Aug 12, 2008 Posts: 58
|
Posted:
Sun Apr 18, 2010 7:08 pm |
|
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
|
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Mon Apr 19, 2010 7:42 am |
|
| 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
|
Thanks M8!
Will try this one asap. |
|
|
|
 |
phoenix_nl New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Tue Apr 20, 2010 7:55 am |
|
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 Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Tue Apr 20, 2010 8:10 am |
|
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 New Member


Joined: Apr 18, 2010 Posts: 8
|
Posted:
Tue Apr 20, 2010 9:00 am |
|
| 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


Joined: Jan 17, 2009 Posts: 268 Location: Missouri
|
Posted:
Wed Feb 02, 2011 5:46 pm |
|
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. |
|
|
|
 |
Palbin Site Admin

Joined: Mar 30, 2006 Posts: 2403 Location: Pennsylvania
|
Posted:
Thu Feb 03, 2011 6:21 am |
|
The link in the second post works for me.
It would depend on how in-depth the mod is. |
|
|
|
 |
unicornio Involved


Joined: Aug 13, 2009 Posts: 410
|
Posted:
Sat Feb 12, 2011 7:32 am |
|
Link is not working anymore
|
|
|
|
 |
horrorcode Involved


Joined: Jan 17, 2009 Posts: 268 Location: Missouri
|
Posted:
Fri Feb 18, 2011 4:48 pm |
|
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: 16976 Location: Kansas
|
Posted:
Fri Feb 18, 2011 10:41 pm |
|
| 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. |
|
|
|
 |
horrorcode Involved


Joined: Jan 17, 2009 Posts: 268 Location: Missouri
|
Posted:
Sun Feb 20, 2011 1:29 am |
|
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 Involved


Joined: Jan 17, 2009 Posts: 268 Location: Missouri
|
Posted:
Wed Jan 04, 2012 11:25 pm |
|
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 Site Admin/Owner

Joined: Aug 27, 2002 Posts: 16976 Location: Kansas
|
Posted:
Fri Jan 06, 2012 1:21 am |
|
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 Involved


Joined: Jan 17, 2009 Posts: 268 Location: Missouri
|
Posted:
Mon Jan 09, 2012 6:00 pm |
|
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
I do hope to show eventual gratitude towards the other parties responsible for maintaining this ship. |
|
|
|
 |
|
|
|
|