• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Recent content by WebHostingAce

  1. WebHostingAce

    Input How to run Magento 2 on Plesk Obsidian 18 without Docker

    I'm using required services for Magento 2 in Dockers. https://talk.plesk.com/resources/how-to-install-magento-2-4-on-plesk.40/ https://talk.plesk.com/threads/plesk-magento-2-required-services-in-dockers-varnish-redis-elasticsearch-rabbitmq.363148/
  2. WebHostingAce

    Issue Real IPs with varnish

    In where you do not see the real IP? Please post your Varnish VCL.
  3. WebHostingAce

    Question PHP 7.1 for old Magento 1.x site

    If the PHP 7.1 is the "PHP version from OS vendor", I think It should be available in "Plesk Installer" Please check in "Tools & Setting" > "Updates" > "Add and Remove Product Components" > "Web hosting" > "PHP interpreter versions" (Unrelated to the PHP version install question. Are you aware...
  4. WebHostingAce

    Question Sending Newsletter

    Personally, I wouldn't recommend this. There is a better chance of IP and the domain name being blacklisted across many blacklists. Please see - How do I send an email blast without getting blacklisted? This explains some guidelines to follow. I'd recommend to use a service such as MailChimp...
  5. WebHostingAce

    Issue Real IPs with varnish

    Try, sub vcl_recv { if (req.http.X-Forwarded-For) { set req.http.X-Real-IP = req.http.X-Forwarded-For; } else { set req.http.X-Real-IP = client.ip; } } In your vanish VCL.
  6. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Sorry.. I couldn't help you with this. Please see my post - Instruction - How to Install Magento 2.4 on Plesk for complete installation. I'm not sure how the Softaculous install Magento. We use Plesk for many Magento 2 installations and the Plesk has made this process really easy to do.
  7. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Ok. The Plesk Default Page might be a different issue. Would you be able to run, #plesk repair web yourdomainname.tld as root? Magento 2 Document Root should be httpdocs/pub. Sorry, It seems I wont be able to help you without actually looking into this server/M2 installation.
  8. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Not httpdocs, It should be httpdocs/pub
  9. WebHostingAce

    Question Magento Softaculous installation has 500 error

    I'm wonder why do we get the "main.CRITICAL: Can't create directory" since we have set the directory and files to 777. Also Have to set the document room to httpdocs/pub ? (This is unrelated to the File Permission issue).
  10. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Could you please send me a ls -l of within /var/www/vhosts/example.com/commerce.example.com/ I'm wonder if we have to change the bash user to eg - www-data before running the Magento 2 commands in Softaculous. I haven't used Softaculous. su -s /bin/bash www-data
  11. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Very strange. What is in the system.log now? Please check if the following modules are loaded in Apache : mod_env, mod_version
  12. WebHostingAce

    Question Magento Softaculous installation has 500 error

    So you have a file permission issue. I'm not sure about the File and Directory permission required by Softaculous. We set the files and directories to 777 for testing. Within this directory, /var/www/vhosts/example.com/commerce.example.com/ Run, chmod -R 777 . Then, bin/magento...
  13. WebHostingAce

    Question Magento Softaculous installation has 500 error

    Also try to correct the directory/file permission. find * -type d -print0 | xargs -0 chmod 0755 find . -type f -print0 | xargs -0 chmod 0644 chmod u+x bin/magento Then, bin/magento setup:upgrade bin/magento deploy:mode:set developer
  14. WebHostingAce

    Issue Varnish docker deployed but on connecting give 503 backend fetch fail error

    Sorry, I don't have a VCL for Wordpress Varnish configuration which I use. Please see Configuring Varnish for WordPress for the VCL. It might work for you. Make sure to change "backend default" and the "acl purge" as I have described in my post. I'm not sure about the "The plain HTTP request...
Back
Top