September 13, 2024 in Laravel
To install Laravel 10 on shared hosting and handle the issue with the public directory, you can follow these steps: Remember to replace your-laravel-directory with the actual directory name where your Laravel application resides on the server. Also, ensure that your server meets all the requirements for running Laravel 10, such as PHP version and necessary PHP […]
August 10, 2024 in Laravel
To come over this issue, you have to execute all the below commands: The problem is that the project made a cache file. ‘config.php’ must be deleted in order to allow the system to restart and you can do so by locate this file and deleting it:
<?php /* Create some objects */ $image = new Imagick(); $draw = new ImagickDraw(); $pixel = new ImagickPixel( ‘gray’ ); /* New image */ $image->newImage(800, 75, $pixel); /* Black text */ $draw->setFillColor(‘black’); /* Font properties */ $draw->setFont(‘Bookman-DemiItalic’); $draw->setFontSize( 30 ); /* Create text */ $image->annotateImage($draw, 10, 45, 0, ‘The quick brown fox jumps over the […]