Line 56 in the default installation readsNote the two parameters between the brackets, enclosed by single apostrophes and separated by a comma.PHP Code:define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');
Your equivalent line readsand therefore has just one NULL parameter.define('');
At the very least you should make this read(that's two single apostrophes at the end, rather than one double)PHP Code:define('HEADING_TITLE', '');



