Problems with web server and php.

Results 1 to 3 of 3
  1. #1
    Apprentice DemonChicken is offline
    MemberRank
    Jun 2015 Join Date
    DenmarkLocation
    15Posts

    Problems with web server and php.

    Hello ragezone, i have serious problems with php.

    I've used multiple scripts but these are the ones i resorted to:
    https://forum.ragezone.com/f315/webs...2005-a-914378/

    They use odbc connect and such. The problem isn't the scripts, its that I can't output the security code or captcha.

    I believe that this is caused by these lines
    PHP Code:
    header('Content-Type: image/jpeg');
    imagejpeg($image);
    imagedestroy($image); 
    If I'm not mistaken this is where text is converted to an image, anyone else facing this problem?

    So far I've changed php versions, webservers and more, nothing has worked yet. And I don't even get php errors when i attempt to use the script.


  2. #2
    Apprentice DemonChicken is offline
    MemberRank
    Jun 2015 Join Date
    DenmarkLocation
    15Posts

    Re: Problems with web server and php.

    Bump, i still need help.

  3. #3
    Apprentice DemonChicken is offline
    MemberRank
    Jun 2015 Join Date
    DenmarkLocation
    15Posts

    Re: Problems with web server and php.

    Update, I found this script on some other post.
    PHP Code:
    <?php
    // Create a blank image and add some text
    $im imagecreatetruecolor(12020);
    $text_color imagecolorallocate($im2331491);
    imagestring($im155,  'A Simple Text String'$text_color);

    // Set the content type header - in this case image/jpeg
    header('Content-Type: image/jpeg');

    // Output the image
    imagejpeg($im);

    // Free up memory
    imagedestroy($im);
    ?>
    It outputs this

    Which should be correct, I ran this in a test php document with no html, only php. But then i tried the other script (the register one) with no success.

    Also bump.



Advertisement