Jump to content

[Resolved] XAMPP


Wilson Dmello

Recommended Posts

Welcome Wilson Dmello! Glad to see you made it to the forums.

This could happen if you had a gateway or plugin installed and enabled in one installation of CubeCart, then started using another installation of CubeCart (maybe a newer version), but having this second installation use the same database, while not having the same modules and plugins installed in the second installation.

That is, CubeCart-A has recorded in the database the existence and configuration of 2Checkout. Then, CubeCart-B sees the database records for 2Checkout and wants to "initialize" that gateway. But the 2Checkout module is not present in CubeCart-B.

Link to comment
Share on other sites

Please put the language folders back where they were.

In my previous response, I implied that you may have had a previous installation, or may have a separate active installation of Cubecart using a pre-existing database.

Is this the case?

 

Link to comment
Share on other sites

  • 2 weeks later...

Discovered the problem: a recent change to accommodate the case where if admin appears anywhere in the path, such as:
/modules/plugins/enhanced_admin_order_entry/
the removal of admin will corrupt the path. The fix was to put a slash in front of certain key words. This is a literal slash and will not solve the issue correctly on a Windows server - which uses the backslash - and, in fact, makes opening any module's control panel in admin result in a white screen.

In /classes/module.class.php, near line 420:

Find:
$drop = array('/admin', '/classes', '/skin', '/language');
Change to:
$drop = array(CC_DS.'admin', CC_DS.'classes', CC_DS.'skin', CC_DS.'language'); // array('/admin', '/classes', '/skin', '/language');

This applies specifically to CC607 and CC608. Hopefully, the code will be adjusted in CC609.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...