• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Nicaw AAC] Nicaw Bulletin Board

I might use Nicaw AAC instead of Gesior... no offense or so. I just want my players to make an account xd and I want a good and safe forum =)

Thanks for this release, I'll use it for sure if I make Nicaw AAC.
 
Rep++

Works nice with Avesta.
Advanced options would be nice, locking boards and whatnot. Making is so only X group Id's can see and board in X boards.

But still,
Simple. Looks good.

Woop!
 
Thanks you all =]
I hope I'll have enough time to release a new version soon.
 
Let's say that I want to make a thread, for example "News and Announcements". I want that only Admins can make a thread in there, but normal users can comment... dunno how to explain rly xD
 
Code:
Warning: require(class/exceptions.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\include.inc.php on line 53

Fatal error: require() [function.require]: Failed opening required 'class/exceptions.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\include.inc.php on line 53

Does not work with Avesta together :eek:
 
Code:
Warning: require(class/exceptions.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\include.inc.php on line 53

Fatal error: require() [function.require]: Failed opening required 'class/exceptions.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\include.inc.php on line 53

Does not work with Avesta together :eek:

Did you downloaded the special version for avesta?

right here:
http://otland.net/536415-post16.html
 
Let's say that I want to make a thread, for example "News and Announcements". I want that only Admins can make a thread in there, but normal users can comment... dunno how to explain rly xD

Ok there's a newer version, much better (DO NOT USE OLD VERSIONS, HAS SOME BUGS):

The sql schema:
Code:
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";




CREATE TABLE IF NOT EXISTS `nicaw_boards` (
  `board_id` int(11) NOT NULL AUTO_INCREMENT,
  `board_name` varchar(64) NOT NULL,
  `board_description` longtext NOT NULL,
  `board_position` int(11) NOT NULL DEFAULT '1',
  `board_can_thread` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`board_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;





CREATE TABLE IF NOT EXISTS `nicaw_posts` (
  `post_id` int(11) NOT NULL AUTO_INCREMENT,
  `post_board_id` int(11) NOT NULL,
  `post_thread_id` int(11) DEFAULT NULL,
  `post_is_thread` tinyint(1) DEFAULT NULL,
  `post_last_post` int(10) NOT NULL,
  `post_is_locked` tinyint(1) DEFAULT NULL,
  `post_is_sticky` tinyint(1) NOT NULL,
  `post_title` varchar(64) DEFAULT NULL,
  `post_content` longtext NOT NULL,
  `post_date` int(11) NOT NULL,
  `post_author_id` int(11) NOT NULL,
  `post_author_name` varchar(100) NOT NULL,
  `post_author_level` int(11) NOT NULL,
  `post_author_magic_level` int(11) NOT NULL,
  `post_author_vocation` int(11) NOT NULL,
  PRIMARY KEY (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;





CREATE TABLE IF NOT EXISTS `nicaw_settings` (
  `name` varchar(64) NOT NULL,
  `value` longtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;


INSERT INTO `nicaw_settings` (`name`, `value`) VALUES
('reply_max_length', '1000'),
('wait_between_posts', '15'),
('thread_min_length', '10'),
('thread_max_length', '2000'),
('thread_title_min_length', '3'),
('thread_title_max_length', '40'),
('reply_min_length', '2'),
('author_info_box_align', 'left'),
('show_statistics_box', 'yes');

ALTER TABLE `nicaw_accounts` ADD `last_post` INT( 10 ) NOT NULL

New version download:
nicaw forum.rar

A lot of bug fixes (tell me if you find any other errors, haven't tested it yet), and I will add a nicaw avesta version tomorrow (gtg now).
 
On the one you sent me, can't post new threads as a user. Just admin

EDIT: on that one too
 
On the one you sent me, can't post new threads as a user. Just admin

EDIT: on that one too

In the forum management panel, every board has a box.
In it's box it has a checkbox, accept/save changes button, delete button, and up/down buttons.

In the box of the board you want to let everyone post new threads, check the checkbox and click save changes.
 
Back
Top