Quote Originally Posted by stellarweb View Post
I noticed that the file it is LOOKING for does not include the sub-directory of the store - it is seeking the file in the root directory and admin folder. For Example:

/admin/qbi_config.php was not found on this server.

The file is in the root/shop/admin/ directory.

Can someone tell me what file(s) that I need to edit that will make the script start looking in the shop directory? I have tried several different things and so far no luck
Hi,

QBI does not set the admin directory itself -- it just reads your Zen Cart setup, so you should check that Zen Cart is set up correctly (there are the constants DIR_WS_ADMIN and DIR_FS_ADMIN).

If you really need to set the QBI directories separately, you can do so in the file /admin/includes/qbi_app_top.php by replacing the DIR_WS_ADMIN and DIR_FS_ADMIN constants, but again you shouldn't need to if Zen Cart is set up correctly, so you should check how these constants are set in Zen Cart first.

// QBI location
define('DIR_QBI_WS', DIR_WS_ADMIN); // (full web path from www root)
define('DIR_QBI_FS', DIR_FS_ADMIN); // (full virtual file path)

Thanks,
Adam