Oxid 6 Beta - missing database views

Hi there,
I tried to install the new Oxid 6.0 Beta on Mac with MAMP using the suggested composer command:

composer create-project oxid-esales/oxideshop-project oxid_eshop_project dev-b-6.0-beta-ce

Worked fine, configured vhost, created database, went to my_local_url/Setup and went through the setup, all working fine.

However, neither the shop url nor the admin url are working.
In the EXCEPTION_LOG I found this entry:

OxidEsales\EshopCommunity\Core\Exception\StandardException (time: 2016-12-14 12:09:30): [1146]: Table ‘oxid_v6.oxv_oxshops_de’ doesn’t exist

The setup created and filled 65 tables, but did not create any views (as with all the other previous oxid versions)

Any idea what is wrong?
Thanks a lot

Hey @aphid,

we had some issues in setup process when using demo data while regenerating database views. This issue shall be resolved in v6.0.0-beta.2:

Also, it is strongly recommended to avoid any XAMP, MAMP or even WAMP stuff. Best choice seems to be oxvm so far:

Regards

Hi aphid,

edit the config.inc.php:
Add:


/**
* If you can not login to the admin panel, set the parameter temporarily on true
*/
$this->blSkipViewUsage = true;

Login in the backend. Go to Admin > Service > Tools > Press “Update Views”-Button

edit the config.inc.php again:
change


$this->blSkipViewUsage = true;

to


$this->blSkipViewUsage = false;

I did it on a WAMP, and it works.

Regards, Mario