Giving selected users permissions [PHX]

NSA

sudo apt-get thefuckout.tar.gz
Dec 9, 2011
715
86
Hello,

I'm having trouble giving users permissions.
Instead of ranking someone, I'm going into permissions_users and giving them selected ones.
Leaving the ones they won't have with a '0'.
However, when they reload they don't have the set perms and when I talk I disconnected.

What's with this?
 

NSA

sudo apt-get thefuckout.tar.gz
Dec 9, 2011
715
86
Can't do update permissions due to the talking bug.
Also, I've emptied it and still getting D/C.
 

NSA

sudo apt-get thefuckout.tar.gz
Dec 9, 2011
715
86
4/7/2013 4:09:15 AM: Error: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at (Object , UInt32 )
at A..(Object , UInt32 )
at A..(UInt32 )
at A..()
at A..( , String , Boolean )
at A. .( , 
)
at A..(Byte[]& )

Both me and other users.

EDIT: I even gave my emu a reload and it didn't give any errors.
I still can't talk.
Does anyone have a fix ASAP?
 

vRory

Unemployed.
May 4, 2011
447
69
Yes did you index your database, if your using navicat goto chatlogs table and there should be an option in a dropdown box to design table when doing so give id as 'KEY' so click the key on id row 
delete your chatlogs table and try this

PHP:
/*
Navicat MySQL Data Transfer
 
Source Server        : localhost_3306
Source Server Version : 50610
Source Host          : localhost:3306
Source Database      : phx
 
Target Server Type    : MYSQL
Target Server Version : 50610
File Encoding        : 65001
 
Date: 2013-04-07 18:47:35
*/
 
SET FOREIGN_KEY_CHECKS=0;
 
-- ----------------------------
-- Table structure for `chatlogs`
-- ----------------------------
DROP TABLE IF EXISTS `chatlogs`;
CREATE TABLE `chatlogs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `room_id` int(10) unsigned NOT NULL,
  `hour` int(11) NOT NULL,
  `minute` int(11) NOT NULL,
  `full_date` varchar(120) NOT NULL,
  `timestamp` double NOT NULL,
  `message` text NOT NULL,
  `user_name` varchar(100) NOT NULL DEFAULT 'Unknown User',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`) USING BTREE,
  KEY `room_id` (`timestamp`),
  KEY `room_id_2` (`room_id`,`timestamp`)
) ENGINE=MyISAM AUTO_INCREMENT=84736 DEFAULT CHARSET=latin1;
 

Users who are viewing this thread

Top