Author |
Message |
barney
New Member


Joined: Jan 02, 2003
Posts: 4
|
Posted:
Sat Nov 15, 2008 2:39 pm |
|
hi all ,
first of all
many thank's to all team for the last ravennuke release
i just wish install a nice adress book modules
i ve test many now but all does'nt work ;o(
if somebody can help me for a better choice
i wish to have a adress book module for my members
Thank you |
|
|
|
 |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Sat Nov 15, 2008 4:47 pm |
|
If you see one your like and it doesn't work on Raven Nuke just post it here and maybe I or someone else can make it work. |
|
|
|
 |
Susann
Moderator

Joined: Dec 19, 2004
Posts: 3191
Location: Germany:Moderator German NukeSentinel Support
|
Posted:
Sat Nov 15, 2008 5:05 pm |
|
Tthe most address books module are very old and not created for Nuke 7.6 I suppose they use the old $dbi instead of $db and thats the reason why they didn´t worked.
Turn error reporting on and post your errors. |
|
|
|
 |
barney

|
Posted:
Sat Nov 15, 2008 10:42 pm |
|
|
|
 |
barney

|
Posted:
Sun Nov 16, 2008 4:21 am |
|
i create the table nuke_4naddress_book with phpmyadmin
CREATE TABLE nuke_4naddress_book (
tid int(10) NOT NULL auto_increment,
eid int(10) DEFAULT '0' NOT NULL,
title varchar(255) NOT NULL,
celltel varchar(15),
tel varchar(15),
fax varchar(15),
email varchar(50),
web varchar(255),
company varchar(150),
role varchar(150),
address varchar(255),
zip varchar(20),
area varchar(255),
city varchar(250),
state varchar(250),
text text NOT NULL,
counter int(10) DEFAULT '0' NOT NULL,
author int(11) DEFAULT '0' NOT NULL,
access varchar(50) NOT NULL,
PRIMARY KEY (tid)
)
then i ve replace in all scripts of this module
$dbi by $db
but always the same problem
i can't administrate this adress book  |
|
|
|
 |
Susann

|
Posted:
Mon Nov 17, 2008 10:38 am |
|
Mine works more or less and I can administrate this thing !
I only had to uncomment two lines in mainfile.php
Quote: |
* The following two lines of code were moved and commented out in RN 2.30.00 to "test the waters" on
* finding out what old modules/blocks/hacks/etc. are still using this SQL layer that is so
* old it should be obsoleted. If you really need these back, uncomment them back. We will keep this
* code this way for one more major release as well as keep the includes/sql_layer.php script.
*/
@require_once(INCLUDE_PATH.'includes/sql_layer.php');
$dbi = sql_connect($dbhost, $dbuname, $dbpass, $dbname); |
Because of security reasons I do not recommend to use this old module in RavenNuke without security check. It was made for Nuke version 5.5-6.0
Maybe you can find one for Nuke 7.5+ |
|
|
|
 |
barney

|
Posted:
Tue Nov 18, 2008 2:01 pm |
|
Thank you Susann i will try to search another one for 7.5+ |
|
|
|
 |
|