
Originally Posted by
QuickBooksDev
I removed define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); and now I get the check out screen WITH the credit card info:-):-):-):-):-)
What an ordeal!
I believe that the upgrade procedure was wrong. The update did not provide a configure.php and the doc said to copy the one from the old 1.5.0 which I did and changed the DB, etc.. But it seems that there is more that should be there.
I am kind of worried about define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs'); causing the blank screen. Probably getting some type of error.
But thanks. Now I can relax for the evening.
Umm that's because that is a completely incorrect format for a define:
Code:
define('DIR_FS_LOGS'), 'D:/Inetpub/.../ZenCart154B/logs');
Should be:
Code:
define('DIR_FS_LOGS', 'D:/Inetpub/.../ZenCart154B/logs');
As it has an extra right parenthesis in the wrong location...
All depends on where you look for the directions to install... Unfortunately it would seem that the documents for the ZC 1.5.4 version didn't get a good read thru before initial distribution, but that's also why the forum is here which is to help others with their issue... Speaking of which, there is one that could use your input if it's not too much for you.