Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help regarding New FAQ system..


Guest

Recommended Posts

Hi,

I just installed the latest version of FAQ system i.e with zz_faq.

Now I downloaded all the files and done according to the instructions.

Now when I add the lines // include local zz_column_left.php

require('includes/local/zz_column_left.php'); in admin/column_left.php this gives me an error.

My file column_left.php file is as follows:-

[/code]

if (tep_admin_check_boxes('administrator.php') == true) {

require(DIR_WS_BOXES . 'administrator.php');

}

if (tep_admin_check_boxes('configuration.php') == true) {

require(DIR_WS_BOXES . 'configuration.php');

}

if (tep_admin_check_boxes('catalog.php') == true) {

require(DIR_WS_BOXES . 'catalog.php');

}

if (tep_admin_check_boxes('modules.php') == true) {

require(DIR_WS_BOXES . 'modules.php');

}

if (tep_admin_check_boxes('customers.php') == true) {

require(DIR_WS_BOXES . 'customers.php');

}

if (tep_admin_check_boxes('taxes.php') == true) {

require(DIR_WS_BOXES . 'taxes.php');

}

if (tep_admin_check_boxes('localization.php') == true) {

require(DIR_WS_BOXES . 'localization.php');

}

if (tep_admin_check_boxes('reports.php') == true) {

require(DIR_WS_BOXES . 'reports.php');

}

if (tep_admin_check_boxes('tools.php') == true) {

require(DIR_WS_BOXES . 'tools.php');

}

Now how should I add the above line in this.

I tried using this

if (tep_admin_check_boxes('tools.php') == true) {

require(DIR_WS_LOCAL_BOXES . 'zz_column_left.php');

 

but when I add this line my admin section hangs up. There is no display on admin.

I also tried other way around i.e

if (tep_admin_check_boxes('tools.php') == true) {

require('includes/local/zz_column_left.php');

 

then also I can't see anything on my admin section.

 

I don't know how to fix it, if somebody can help I will appreciate that.

Thanks

SS

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...