LightSail Wordpress imagick & intl

#1
Hello,

Just installed a new openlitespeed wordpress on a lightsail instance.

Everything is working but the wordpress diagnostics tool says that imagick & intl are not installed or are disabled.

I already read some information on this forum and I think that both are installed.

How can I check if they are installed/activated and if not how do I activate them?

Thanks!
 

Cold-Egg

Administrator
#2
Do you mean AWS EC2?
Imagick and intl package should be installed by default. You might want to create a phpinfo page to show all the PHP modules.
 

Cold-Egg

Administrator
#4
Under the document root, run the following command,
Code:
echo '<?php phpinfo();' > phpinfo.php
then visit the site, e.g. http://example.com/phpinfo.php

Could you share some information about how did you launch OLS WP on Lightsail? I remember AWS does not provide an LSWS solution on lightsail?
 

Cold-Egg

Administrator
#6
I see, by using the ols1clk script. Then those two packages are not pre-installed.
You might want to run
Code:
apt-get install lsphp80-intl lsphp80-imagick -y
 
Top