PHP Web Host - Quality Web Hosting For All PHP Applications Just Great Software
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
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 Back to top

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: 3028
Location: United Kingdom

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

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: 1251
Location: Texas, USA

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

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


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
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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


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!
View user's profile Send private message
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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


Joined: Apr 18, 2010
Posts: 8

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

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
View user's profile Send private message
spasticdonkey
RavenNuke(tm) Development Team


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

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

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..
View user's profile Send private message
Palbin
Site Admin


Joined: Mar 30, 2006
Posts: 2403
Location: Pennsylvania

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

There should have been a define for the "COLOR_GROUPS_TABLE " table. Probably in constants.php which appears to be missing.
View user's profile Send private message Visit poster's website
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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


Joined: Aug 12, 2008
Posts: 58

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

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
Regular
Regular


Joined: Aug 12, 2008
Posts: 58

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

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

Only registered users can see links on this board!
Get registered or login to the forums!
View user's profile Send private message
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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

Only registered users can see links on this board!
Get registered or login to the forums!


Thanks M8!

Will try this one asap.
View user's profile Send private message
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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


Joined: Mar 30, 2006
Posts: 2403
Location: Pennsylvania

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

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.
View user's profile Send private message Visit poster's website
phoenix_nl
New Member
New Member


Joined: Apr 18, 2010
Posts: 8

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

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


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

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

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 Visit poster's website MSN Messenger
Palbin
Site Admin


Joined: Mar 30, 2006
Posts: 2403
Location: Pennsylvania

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

The link in the second post works for me.

It would depend on how in-depth the mod is.
View user's profile Send private message Visit poster's website
unicornio
Involved
Involved


Joined: Aug 13, 2009
Posts: 410

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

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


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

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

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...
View user's profile Send private message Visit poster's website MSN Messenger
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16976
Location: Kansas

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

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 Visit poster's website AIM Address Yahoo Messenger
horrorcode
Involved
Involved


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

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

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.
View user's profile Send private message Visit poster's website MSN Messenger
horrorcode
Involved
Involved


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

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

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.
View user's profile Send private message Visit poster's website MSN Messenger
Raven
Site Admin/Owner


Joined: Aug 27, 2002
Posts: 16976
Location: Kansas

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

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!
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger
horrorcode
Involved
Involved


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

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

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.
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:       
Post new topic   Reply to topic

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
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2011 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum