cancel
Showing results for 
Search instead for 
Did you mean: 

I think there's something wrong with my site.

I think there's something wrong with my site.

Hi,

 

I'm not sure if anyone could help. I think that something is going wrong with my site. I'm using magento 2. It started with not be able to save any changed made to products. Now I can't seem to import anything and we haven't had any sales for days.

 

Our hosting people had a look, but couldn't see anything wrong.

 

Does anyone have any idea what's gone wrong. I'm really new to development and I'm completely baffled. 

 

Thanks,

 

Bev. 

1 REPLY 1

Re: I think there's something wrong with my site.

Please clarify with the following information:

1. What Magento 2 version do you use? Check your version in the cli with the next command:

php bin/magento --version

2. How do you determine, that you cannot save product data? Do you get any errors or exceptions? Please check files under the /var/log folder. 

3. If it is your development environment, then change your magento installation to the developer mode with the next command:

php bin/magento deploy:mode:set developer

4. If you get any 500 errors, then in the file 
(magento installation)/app/bootstrap.php uncomment line 11. Change 

#ini_set('display_errors', 1);

to 

ini_set('display_errors', 1);

But do it only if it is NOT you production environment but only developer. If you don't have developer environment of your website, then create the copy of your website, which nobody access but only you, it will be useful, as you will be able to test all your new changes and customizations there.