Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

LiveSupport_v14.. Need help wih table..


OCZ

Recommended Posts

Posted

LiveSupport_v1.4..

 

Need help wih table..

 

Where can I put in the table info??

 

# Table structure for table `ls_conversations`

#

 

CREATE TABLE ls_conversations (

id int(11) NOT NULL auto_increment,

guest varchar(255) NOT NULL default '',

tech varchar(255) NOT NULL default '',

session_id varchar(255) NOT NULL default '',

message varchar(255) NOT NULL default '',

tech_reply tinyint(1) NOT NULL default '0',

PRIMARY KEY (id)

) TYPE=MyISAM;

 

#

# Dumping data for table `ls_conversations`

#

 

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

 

#

# Table structure for table `ls_techs`

#

 

CREATE TABLE ls_techs (

tech_id int(11) NOT NULL auto_increment,

support_tech varchar(20) NOT NULL default '',

password varchar(25) NOT NULL default '',

support_group varchar(255) NOT NULL default '',

status varchar(10) default NULL,

helping varchar(255) NOT NULL default '',

PRIMARY KEY (tech_id),

UNIQUE KEY yech_id (tech_id)

) TYPE=MyISAM;

 

#

# Dumping data for table `ls_techs`

#

 

INSERT INTO ls_techs VALUES (1, 'Sales', '', 'Sales', 'no', '');

 

CREATE TABLE ls_status (

id int(255) NOT NULL auto_increment,

session_id varchar(255) NOT NULL default '',

status tinyint(1) NOT NULL default '1',

PRIMARY KEY (id)

) TYPE=MyISAM;

 

 

From: Tor-Oskar Salomonsen

 

Webshop: http://www.audiopart.no

Posted

You need to open up your database with phpmyadmin. Click on SQL at the top. Insert the text and the click OK.

Other great Open Source (Free) programs: (Free as in free speech not free beer)

The Gimp - An image program. | Firefox - All you have to do is add the Web Developer add-on to make this web browser complete. | FileZilla - An ftp program. | Inkscape - A good program to create images with. | Thunderbird - An email program. | Openoffice.org - An office suite that is compatible with MS Office. | Abiword - Another office suite. | Audacity - A sound recording tool. | ddp's Picks | Wordpress - An easy to use blogging software. | Joomla - An easy to use CMS that has ecommerce plug-ins. | Drupal - Another CMS

How do I find these programs? Google Search!

Posted
You need to open up your database with phpmyadmin. Click on SQL at the top. Insert the text and the click OK.

 

 

Table alredy exist..

 

 

What can I do?

 

 

Tor

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...