GD Library Error: imagecreatetruecolor does not exist – please contact your webhost and ask them to install the GD library
yum install rh-php73-php-gd
service rh-php73-php restart
GD Library Error: imagecreatetruecolor does not exist – please contact your webhost and ask them to install the GD library
yum install rh-php73-php-gd
service rh-php73-php restart
find / -name 'imagick.so'
/usr/lib64/php/modules/imagick.so
/opt/rh/rh-php73/root/usr/lib64/php/modules/imagick.so
nano /etc/opt/rh/rh-php73/php.d/20-imagemagick.ini
; Enable imagick extension module
extension=/opt/rh/rh-php73/root/usr/lib64/php/modules/imagick.so
service rh-php73-php-fpm

vi /etc/nginx/conf.d/directives.conf
The directives
proxy_send_timeout 1200s;
proxy_read_timeout 1200s;
fastcgi_send_timeout 1200s;
fastcgi_read_timeout 1200s;
proxy_buffers 8 16k;
proxy_buffer_size 32k;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
Save, close & restart nginx
Some Fixed bars are used for nothing on our small screenz!, specially on tutorial/tech pages.
70 pixeis of…. some purple…….

.responsive-video {
position: relative;
padding-bottom: 56.25%;
padding-top: 60px; overflow: hidden;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<div class="responsive-video">
<iframe ></iframe>
</div>
as seen on https://stackoverflow.com/questions/25228056/responsive-iframe-using-bootstrap

An uncaught Exception was encountered Type: ParseError Message: syntax error, unexpected end of file
I had a closing condition with
<?}?>
had to change to
<?php }?>
<Directory "/path/to/directory">
php_admin_value open_basedir none
</Directory>



