• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Magento 2 plesk compatibility issue

After updating magento 2 package to 2.1 my installation begin to encounter some problems.
Store - Configuration - Catalog page is empty, there are no any settings available.
When I click advanced search I have the error below:
There has been an error processing your request
Exception printing is disabled by default for security reasons.

Error log record number: 1344731904405

Also on front page where I should have a new product list, I have:

We're sorry, an error has occurred while generating this email.
 
Yes with each upgrade it's a real fight.
Check your apache logs to see what is the problem.

I'm trying to use redis in docker to speed up magento, and it work pretty good for the moment.
 
I couldn't find anything meaningful in the log files.
Is there any magento log log file. which I can check?
 
You can try to edit php settings to display errors. Check your files permissions and try launch again the upgrade via ssh.
 
You can try to edit php settings to display errors. Check your files permissions and try launch again the upgrade via ssh.

I have enabled the error reporting and I have the error below:

There has been an error processing your request
Can't create directory /var/www/vhosts/example.com/httpdocs/var/generation/Magento/CatalogSearch/Controller/Advanced/Index/.

It seems like file permission issue. How can I fix it ?
 
Hi bulent,

your read/write permissions are somehow misconfigured. Pls. be are that CGI/FastCGI and PHP-FPM is configured to process files and scripts by the domain-specific system-user and the group "psacln".

Code:
chown -R DOMAIN-SPECIFIC-SYSTEM-USER:psacln /var/www/vhosts/example.com/m2.example.com/*

Pls. make sure, that "/var/lib/php/session" has as well the correct permissions :

Code:
chmod 1733 /var/lib/php/session
root:root /var/lib/php/session

Actually that one fixed the problem.
 
Back
Top