761
Lance_
Re: Customer Support Module
  • 2004/3/23 0:45

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


If you plan on moduling a ticket system, do look at osticket. It was started just don't think it was finished. In any case, this is a product I am quite interested in.

https://xoops.org/modules/newbb/viewtopic.php?topic_id=14336&forum=4#forumpost58222


Cheers.



762
Lance_
Re: Install...
  • 2004/3/22 3:20

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


If you have acces to the windows box, then all you need to do is check off the Read-Only box in properties.

Unfortunately I can't access my server on FTP, so can't help on the permissions from there. However I use Ace-FTP Freeware and it works great, very easy to change permissions.



763
Lance_
Re: Languages????
  • 2004/3/22 1:02

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


https://xoops.org/general/download.php#xoops2

Spanish is there.

And yes you must have the Spanish language packs for each module you need.



764
Lance_
Re: newbb import in database problem
  • 2004/3/22 0:27

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


Here's a portion of the SQLDump.
Thanks.


# phpMyAdmin SQL Dump
# version 2.5.6-rc1
#http://www.phpmyadmin.net
#
# Host: localhost
# Generation Time: Mar 21, 2004 at 06:40 PM
# Server version: 4.0.18
# PHP Version: 4.2.3
#
# Database : `gdl_xoopsdb`
#

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_categories`
#

CREATE TABLE `gdl_bb_categories` (
`cat_id` smallint(3) unsigned NOT NULL auto_increment,
`cat_title` varchar(100) NOT NULL default '',
`cat_order` varchar(10) default NULL,
PRIMARY KEY (`cat_id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;

#
# Dumping data for table `gdl_bb_categories`
#

INSERT INTO `gdl_bb_categories` VALUES (1, 'Archives', '1');
INSERT INTO `gdl_bb_categories` VALUES (2, 'Member Clan Private Forums', '2');

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_forum_access`
#

CREATE TABLE `gdl_bb_forum_access` (
`forum_id` int(4) unsigned NOT NULL default '0',
`user_id` int(5) unsigned NOT NULL default '0',
`can_post` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`forum_id`,`user_id`)
) TYPE=MyISAM;

#
# Dumping data for table `gdl_bb_forum_access`
#

INSERT INTO `gdl_bb_forum_access` VALUES (2, 1, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 35, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 32, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 100, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 31, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 25, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 34, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 30, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 43, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 28, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 29, 1);
INSERT INTO `gdl_bb_forum_access` VALUES (2, 3, 1);

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_forum_mods`
#

CREATE TABLE `gdl_bb_forum_mods` (
`forum_id` int(4) unsigned NOT NULL default '0',
`user_id` int(5) unsigned NOT NULL default '0',
KEY `forum_user_id` (`forum_id`,`user_id`)
) TYPE=MyISAM;

#
# Dumping data for table `gdl_bb_forum_mods`
#

INSERT INTO `gdl_bb_forum_mods` VALUES (1, 1);
INSERT INTO `gdl_bb_forum_mods` VALUES (2, 25);
INSERT INTO `gdl_bb_forum_mods` VALUES (2, 29);

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_forums`
#

CREATE TABLE `gdl_bb_forums` (
`forum_id` int(4) unsigned NOT NULL auto_increment,
`forum_name` varchar(150) NOT NULL default '',
`forum_desc` text,
`forum_access` tinyint(2) NOT NULL default '1',
`forum_moderator` int(2) default NULL,
`forum_topics` int(8) NOT NULL default '0',
`forum_posts` int(8) NOT NULL default '0',
`forum_last_post_id` int(5) unsigned NOT NULL default '0',
`cat_id` int(2) NOT NULL default '0',
`forum_type` int(10) default '0',
`allow_html` enum('0','1') NOT NULL default '0',
`allow_sig` enum('0','1') NOT NULL default '0',
`posts_per_page` tinyint(3) unsigned NOT NULL default '20',
`hot_threshold` tinyint(3) unsigned NOT NULL default '10',
`topics_per_page` tinyint(3) unsigned NOT NULL default '20',
`allow_attachments` varchar(100) default NULL,
`attach_maxkb` int(10) NOT NULL default '1000',
`attach_ext` text NOT NULL,
PRIMARY KEY (`forum_id`),
KEY `forum_last_post_id` (`forum_last_post_id`),
KEY `cat_id` (`cat_id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;

#
# Dumping data for table `gdl_bb_forums`
#

INSERT INTO `gdl_bb_forums` VALUES (1, 'The Lions\'s Den :: Archives forum', 'Archived Forum August 2003 to March 2004', 3, NULL, 0, 0, 0, 1, 0, '0', '1', 50, 25, 50, '', 2000, 'zip');
INSERT INTO `gdl_bb_forums` VALUES (2, '|AeX| American eXcessive :: Private Forum', 'For Clan Info:http://aex-clan.gdl-web.com\r\n', 1, NULL, 141, 1570, 6299, 2, 1, '0', '1', 25, 25, 25, '', 2000, 'zip');

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_posts`
#

CREATE TABLE `gdl_bb_posts` (
`post_id` int(8) unsigned NOT NULL auto_increment,
`pid` int(8) NOT NULL default '0',
`topic_id` int(8) NOT NULL default '0',
`forum_id` int(4) NOT NULL default '0',
`post_time` int(10) NOT NULL default '0',
`uid` int(5) unsigned NOT NULL default '0',
`poster_ip` varchar(15) NOT NULL default '',
`subject` varchar(255) NOT NULL default '',
`nohtml` tinyint(1) NOT NULL default '0',
`nosmiley` tinyint(1) NOT NULL default '0',
`icon` varchar(25) NOT NULL default '',
`attachsig` tinyint(1) NOT NULL default '0',
`attachment` varchar(255) default NULL,
PRIMARY KEY (`post_id`),
KEY `uid` (`uid`),
KEY `pid` (`pid`),
KEY `subject` (`subject`(40)),
KEY `forumid_uid` (`forum_id`,`uid`),
KEY `topicid_uid` (`topic_id`,`uid`),
KEY `topicid_postid_pid` (`topic_id`,`post_id`,`pid`),
FULLTEXT KEY `search` (`subject`)
) TYPE=MyISAM AUTO_INCREMENT=6300 ;

#
# Dumping data for table `gdl_bb_posts`
#

INSERT INTO `gdl_bb_posts` VALUES (4, 4, 4, 2, 37840, 3, '66.163.1.6', 'This is a Private Section', 0, 0, '', 0, '');
INSERT INTO `gdl_bb_posts` VALUES (6, 4, 4, 2, 37848, 25, '64.252.16.56', 'RE: THis is a Private Section', 0, 0, '', 0, '');
INSERT INTO `gdl_bb_posts` VALUES (7, 4, 4, 2, 37852, 25, '64.252.21.159', 'RE: This is a Private Section', 0, 0, '', 0, '');

# --------------------------------------------------------

#
# Table structure for table `gdl_bb_posts_text`
#

CREATE TABLE `gdl_bb_posts_text` (
`post_id` int(8) unsigned NOT NULL auto_increment,
`post_text` text,
PRIMARY KEY (`post_id`),
FULLTEXT KEY `search` (`post_text`)
) TYPE=MyISAM AUTO_INCREMENT=6300 ;

#
# Dumping data for table `gdl_bb_posts_text`
#

INSERT INTO `gdl_bb_posts_text` VALUES (4, 'testing');
INSERT INTO `gdl_bb_posts_text` VALUES (6, 'Yo!');
INSERT INTO `gdl_bb_posts_text` VALUES (7, '"I m on ventrillo trying to explain the ini editing to Digger so he can add his flamethrower , did you already save all the tutorials from the other site? I cant find them and dont have copies..."');
INSERT INTO `gdl_bb_posts_text` VALUES (36, '"at gamesnet.net there is asection in the forum to recruit clan\r\ncan you go there pete or lance and leave a nice message about \r\nEOL and invite them on our SERVER to try EO!\r\n"');


Tis bumped...



765
Lance_
newbb import in database problem
  • 2004/3/21 23:25

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


Hello all,

I am trying to manually transfer my forum from my old ASP/Access forum. I will spare you the details in transferring.

Once I have done running the SQL script to INSERT the topics, I check the forum but cannot see the forums appearing on screen. When I run the the sync it correctlys reports the number of topics in the forum, but nothing appears when I go on the forum.

Anyone have any ideas as to what might be the problem?

I am running version 2.0.6 and Samuel's newbb pro modified newbb.

Thanks.




766
Lance_
Re: Newbb Pro (attachments, mark read ...)
  • 2004/3/6 13:57

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


/templates/newbb_thread.html

Line 26 text:"Grupos" is hardcoded.

To change to a variable in Language.



767
Lance_
Re: How to have the Login outside the XOOPS install??
  • 2004/2/21 1:42

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


Actually tried that, and although I get the Thank you for lOgin in message and then redirected to the XOOPS home page as specified in the code, I am still not logged in.

Wondering if I am missing something obvious? Cookie problem of some type?

Thanks for the help.

/edit

Got it workin', sessionID error on my part. I think I copied the html from the wrong XOOPs install.



768
Lance_
How to have the Login outside the XOOPS install??
  • 2004/2/20 22:14

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


Hello,

mydomain.com/cms/ is where the XOOPS files are.

I wish to add the Login block to my index page at mydomain.com

Is this possible? How to proceed??

Thanks.



769
Lance_
Re: OSTicket - port this to xoops?
  • 2004/2/20 3:18

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


Any chance anyone get the port of OSTicket done.


I am using it on my site along with XOOPS. Would be nice if they'd work together.

I agree with it looking fairly simle and a codemaster should be able to port it without much trouble.

Cheers



770
Lance_
Re: Need to Setup my own Linux/APache server for testing
  • 2004/1/17 3:46

  • Lance_

  • Home away from home

  • Posts: 983

  • Since: 2004/1/12


If this is just for testing...you might want to take a look at EasyPHP, it is an inclusive Apache/PHP/MySQL package to run on Windows. Or I've installed on another machine each package for Windows individually.

I am using it myself to run some tests, as I figure out how to actually get my Linux box working. lol




TopTop
« 1 ... 74 75 76 (77) 78 »



Login

Who's Online

159 user(s) are online (106 user(s) are browsing Support Forums)


Members: 0


Guests: 159


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits