Can't Make ASE work with IIS

Status
Not open for further replies.

Omega

Member
Dec 22, 2011
38
2
Whenever I go to ASE I get a 500 error.I've moved the web.config and then got the error without it it doesn't work either.
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Install Helicon APE ( ) and make sure you have the .htaccess file in the ASE directory.
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Run this query:

Code:
DROP TABLE IF EXISTS `cms_news`;
CREATE TABLE `cms_news` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE latin1_general_ci DEFAULT NULL,
  `shortstory` text COLLATE latin1_general_ci,
  `longstory` text COLLATE latin1_general_ci,
  `published` int(10) NOT NULL DEFAULT '0',
  `image` varchar(255) COLLATE latin1_general_ci DEFAULT '/Public/Images/news/TS_Web60.png',
  `campaign` int(1) NOT NULL DEFAULT '0',
  `campaignimg` varchar(255) COLLATE latin1_general_ci NOT NULL,
  `author` varchar(20) COLLATE latin1_general_ci DEFAULT NULL,
  `facebook` varchar(999) COLLATE latin1_general_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
 
Status
Not open for further replies.

Users who are viewing this thread

Top