I did the install multiple times but when i try to access or store front i get all this :
Any help?
Ur database have the table?
run sql to check:
SHOW TABLES LIKE '%store_website%';
Check logs in va/log and va/report, verify if have additional info.
Can be some relation with ur database, do u have a raw Magento database?
Hello @nikolaevaladc5,
The error you're encountering (SQLSTATE[42S02]: Base table or view not found: 1146 Table 'vibestore.store_website' doesn't exist) indicates that the Magento installation is missing the store_website table, which is crucial for the store to function.
Verify if the table store_website and other core tables exist in your database.
If missing, check if the database import or installation process was interrupted. You can try re-running the bin/magento setup:upgrade command to reapply the database schema.
If the store_website table and other critical tables are missing, a fresh database installation may be necessary.
Drop the current Magento database.
Recreate a new, empty database.
Reinstall Magento using bin/magento setup:install with appropriate parameters.
Make sure that the installation completes successfully without errors.
Review the var/log/system.log and var/log/exception.log files for any related errors during the installation process.
Check if there were any issues during the database creation.
If the issue will be resolved, Click Kudos & Accept as a Solution.