Anybody fix this error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Anybody fix this error

    Pls fix this error "Fatal error : Call to undefined function imagettfbbox() in".

    #2
    Originally posted by sumit01 View Post
    Pls fix this error "Fatal error : Call to undefined function imagettfbbox() in".
    your php version is old and/or gd is not installed
    Last edited by softwarefreak; 19.03.12, 11:34.
    I need some facebook likes, can you please help me
    http://facebook.com/softwarefreakin
    I noticed social media is really powerful
    Well DONE is better than well SAID

    Comment


      #3
      My php version php5 and gd installed oviously.Pls chack my site
      http://frendwap.tk/forum/register.php
      and
      http://frendwap.tk/includes/captcha.php

      Comment


        #4
        sounds like free type is not enabled

        Comment


          #5
          Where i can do this enable?

          Comment


            #6
            Remove the imagettbbox() it simple. . but. . .You lose that function. . . Or chek the core.php
            .

            Comment


              #7
              try
              PHP Code:
              $arr get_loaded_extensions();
              print_r($arr); 
              and search if GD is enabled/avaible

              or if too lazy to search manually, umm

              PHP Code:
              $arr get_loaded_extensions();
              if(
              in_array('gd'$arr))
              echo 
              'ok'//returns status ok
              else
              echo 
              'false'//returns status false (gd not found) 
              Last edited by Vayne; 25.03.12, 14:29.
              Nous Ne Dansos Pas, Nous Sommes Le Danse.!

              Comment

              Working...
              X