I want to enable gd Extension in PHP. So I would do it manually on my local machine, locating php.ini, and then uncommenting it. It allows me to add certain features to my application. So I can't find a way to enable gd Extension in Serv00. Please guide me @admin

Below, I have attached a screenshot of how I would have done it if I had my local machine's php.ini file.

Just as you can independently check in PHP info, the "GD" extension is always default activated for every available PHP version on our system.

    admin But in the rapidways.abubakar.serv00.net there is a Ticket Feature in admin Panel. If GD is enabled then Ticket would be loaded. But, now it is not loading because gd Disabled.

    For Example: https://rapidways.abubakar.serv00.net/admin/ticket_soft_copy_generate.php?ticketno=1762140736285 this link 🔗 must display the customer ticket. If "gd" is enabled then it will load successfully.
    Bit it is not loading because "gd" extension is disabled.

    I have also hosted it in other free Hosting Service website and it is working. Seems like there gd was enabled by default. Here is the working link for your reference http://rapid-ways-site.epizy.com/admin/ticket_soft_copy_generate.php?ticketno=1762140736285

    If there are certain steps to enable it then, Guide me.

    GD works correctly and your script generates a warning while generating an image:
    Warning: imagettftext(): Could not find/open font in /usr/home/abubakar/domains/rapidways.abubakar.serv00.net/public_html/admin/ticket_soft_copy_generate.php on line 57

    You can see it by using e.g. curl:
    curl --output - -k "https://rapidways.abubakar.serv00.net/admin/ticket_soft_copy_generate.php?ticketno=1762140736285" | less
    After removing additional warnings by binary editor you can see that the image is valid.

    Check and fix your script.

      admin I fixed the error. But the Error still Remains. Help Bro

        abubakar As you can see on the output of the image - two new lines are added at the beginning of the file. Probably you put them in the PHP file outside PHP tags (<?php ?>) while editing the file. Remove redundant new lines and should be ok.

          abubakar There are new lines at the end of config.php file. Remove them and check again.