PHP Nuke and SMF Integration ready for download!

Started by spottedhog, November 09, 2007, 09:47:24 PM

Previous topic - Next topic

spottedhog

Finally....  I have PHP Nuke integrated with SMF.  Get it in the Downloads module on the home site:

http://www.smf-nuke.com

This integration is NOT a bridge.  It fully uses only the SMF members tables.  One login for both users and admin.

The integration uses SMF Themes using the ssi_layers system.

SSI.php is fully used in Nuke, allowing for SMF permissions etc. to work smoothly.

The PHP Nuke part has a Group system, using SMF Membergroups, so that group permissions can be set for all blocks, messages, and modules.

Take a look.  :)


spottedhog

...so sorry.   In the initial downloads I had the wrong News module.  Go here to download it.

http://www.smf-nuke.com/files/News_Replace.zip

spottedhog

I just uploaded theme changes for about 25 themes.  There is also a tutorial on how to make changes to a SMF Theme so it can be used in SMF-Nuke.

thanks...


dottore 46

ok,nice,but i dont get the way to install this thing... what do i have to do?? download it,upload it to my server install, and then uninstall the orginal smf? i just dont get it,please explain this because im a newbie and still dont get it lol

spottedhog

There is a file included that tells you how to do it.

For problems, enter your issue here:

http://www.smf-nuke.com/forum/index.php?board=29.0

glaberge

Just curious but I got an error while importing the mysql file. I'll snag it when I get home from work but, essentially it didn't like line 9 of the nuke_message portion. Something about an invalid format...

I am curious what version of mysql would be ideal for installing this?

spottedhog

I have MySQL 5.0.45...  I would think anything over 4.0 would be ok.

Do you have an existing Nuke install? 

glaberge

#8
Nope. Not in this database.

Error

SQL query:

# --------------------------------------------------------
#
# Estructura de tabla para la tabla `nuke_message`
#
CREATE TABLE nuke_message(
mid int( 11 ) NOT NULL AUTO_INCREMENT ,
title varchar( 100 ) NOT NULL default '',
content text NOT NULL ,
date varchar( 14 ) NOT NULL default '',
expire int( 7 ) NOT NULL default '0',
active int( 1 ) NOT NULL default '1',
groups text NOT NULL VIEW int( 1 ) NOT NULL default '1',
mlanguage varchar( 30 ) NOT NULL default '',
PRIMARY KEY ( mid ) ,
UNIQUE KEY mid( mid )
) TYPE = MYISAM ;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'view int(1) NOT NULL default '1',
  mlanguage varchar(30) NOT NULL default '',
' at line 9

Loki

in the sql file find that section of code and replace it with this one.

DROP TABLE IF EXISTS `nuke_message`;
CREATE TABLE `nuke_message` (
  `mid` int(11) NOT NULL auto_increment,
  `title` varchar(100) NOT NULL default '',
  `content` text NOT NULL,
  `date` varchar(14) NOT NULL default '',
  `expire` int(7) NOT NULL default '0',
  `active` int(1) NOT NULL default '1',
  `view` int(1) NOT NULL default '1',
  `groups` text NOT NULL,
  `mlanguage` varchar(30) NOT NULL default '',
  PRIMARY KEY  (`mid`),
  UNIQUE KEY `mid` (`mid`)
) TYPE=MyISAM;
hxxp:www.nukeplanet.com [nonactive]

glaberge



Rumbaar

Nice concept.  I've used/use php-nuke on 3 of my sites.  Though as php-nuke comes with phpBB already I guess this is just another forum module option for php-nuke installations.  Might have to install a test install and see how it goes.

Note did get an error viewing the Blog module on your main site, you might want to check that out.
"An important reward for a job well done is a personal sense of worthwhile achievement."

[ Themes ]

spottedhog

hmmmmm.....  I cannot find an error in the "Blog" mod anywhere....   

thanks for taking a look.

Rumbaar

Running Firefox 2.0.0.9

Here is a screenshot of the error I get, it's at the top of the page:
"An important reward for a job well done is a personal sense of worthwhile achievement."

[ Themes ]

spottedhog

thanks for the pic.....   

I just cannot replicate that error to save my butt.   However, I did find old code in that javascript file which I removed.  It was a script to call the avatar from the old phpbb forum.

If you get a chance, could you see if you get that error again?

thanks...

Rumbaar

Nope that didn't solve the error message I'm getting.

But that being said, it could be from where I'm accessing your site from.  I think the proxy and authentication methods used where I'm at can cause some issues with php-nuke.  I know I've got similar duplicate declaration errors on another php-nuke site I run that I get when accessing from here.

So it's probably a specific error with the combination of software used here to monitor traffic and content.

I'll try to access it from my home and see if I get the same message.
"An important reward for a job well done is a personal sense of worthwhile achievement."

[ Themes ]



spottedhog

geezz....  sorry... another file got into the mix.  Download this to replace the modules/Web_Links/index.php file

http://www.smf-nuke.com/filz/WebLinksIndex.zip

Advertisement: