Posts: 69
Threads: 17
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Aug 2011
Reputation:
0
Quiet literally as the title suggest needs a direction(Note Im not saying link me to anything) to the location of the ep2 server's post.sql database file do not really care where the hell it comes from just need a direction.
Cause... in all honesty google is about as useful as a fat kid eatting cake who cant touch the ground with his legs in a running competition!
NOW WITH 99.9% more SPAM!!!
Posts: 610
Threads: 13
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
I tried to recreate it but so far no luck, maybe you'll have more, open the subhelper with a hexeditor and find the SQL queries in it, that'll at least give you tables/fields names.
Posts: 335
Threads: 22
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Aug 2011
Reputation:
0
to get the tables and fields naems you can use a simple hex editor to thats how i did it to create it
Posts: 610
Threads: 13
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
to get the tables and fields naems you can use a simple hex editor to thats how i did it to create it
Well i'm pretty sure i got all the tables but i still get the post error 700, so i guess i got something wrong in there lol
Posts: 1,163
Threads: 160
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
Yea I'm also looking for this maybe will take the hex route
Posts: 282
Threads: 5
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Oct 2012
Reputation:
0
-- Table structure for `postoffice`
-- ----------------------------
DROP TABLE IF EXISTS `postoffice`;
CREATE TABLE `postoffice` (
`index` int(5) NOT NULL DEFAULT '0',
`msgtype` int(5) DEFAULT NULL,
`msgcategory` int(5) DEFAULT NULL,
`recvdate` int(10) DEFAULT NULL,
PRIMARY KEY (`index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Work for me
Posts: 610
Threads: 13
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
well got that too, maybe not the correct int type, i'll see
Posts: 108
Threads: 2
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
-- Table structure for `postoffice`
-- ----------------------------
DROP TABLE IF EXISTS `postoffice`;
CREATE TABLE `postoffice` (
`index` int(5) NOT NULL DEFAULT '0',
`msgtype` int(5) DEFAULT NULL,
`msgcategory` int(5) DEFAULT NULL,
`recvdate` int(10) DEFAULT NULL,
PRIMARY KEY (`index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Work for me
where does this go?, should i create new db the query it under there? or...
Posts: 610
Threads: 13
Thanks Received:
0 in 0 posts
Thanks Given: 0
Joined: Jun 2011
Reputation:
0
where does this go?, should i create new db the query it under there? or...
Create a db called newproject_post and run that query