Help please?

Heaplink

Developer & Designer
Nov 9, 2011
510
173
By learning MySQL.

But joke aside;

What you need is to create a web_build column in a table. I don't know what table is the problem, you would have to either give me that information or debug it yourself.

When you've found your table, you can also make a query:

ALTER TABLE (your table) ADD web_build VARCHAR(255)

Of course change (your table) to the table that needed this column. Now in that column add whatever web build is needed.
 

42u

New Member
Aug 19, 2013
14
0
If heaplink's post didn't help, refer to mine.

You'll need to run this query
PHP:
DROP TABLE IF EXISTS `site_config`;
CREATE TABLE `site_config` (
  `maintenance` enum('0','1') NOT NULL DEFAULT '0',
  `webbuild` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
-- ----------------------------
-- Records of site_config
-- ----------------------------
INSERT INTO `site_config` VALUES ('0', '63_1dc60c6d6ea6e089c6893ab4e0541ee0/1962');

Make sure to create a backup before deleting your site_config, just in case.
 

Users who are viewing this thread

Top