captcha image wird nicht angezeigt

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • captcha image wird nicht angezeigt

    hallo,

    habe da eine programm für eine rezepte sammlung.

    nach eingabe der daten mussman einen code eingeben doch dieser wird nicht angezeigt...

    wo kann das dran liegen..... gibt es jemand der helfen kann?

    mfg owlbaer

    http://sylt.bplaced.net/rezepte/wlrb-submit.php

  • #2
    Hallo,

    zu wenig Information! Was steht denn in der Datei rezepte/wlrb_files/GOTCHA/captcha_image.php drin?

    Gruß,

    Amica
    [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
    Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
    Super, danke!
    [/COLOR]

    Kommentar


    • #3
      Code:
      <?php
      /**
       * Project:     GOTCHA!: the PHP implementation of captcha.
       * File:        gotcha_image.php
       *
       * This library is free software; you can redistribute it and/or
       * modify it under the terms of the GNU Lesser General Public
       * License as published by the Free Software Foundation; either
       * version 2.1 of the License, or (at your option) any later version.
       *
       * This library is distributed in the hope that it will be useful,
       * but WITHOUT ANY WARRANTY; without even the implied warranty of
       * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       * Lesser General Public License for more details.
       *
       * You should have received a copy of the GNU Lesser General Public
       * License along with this library; if not, write to the Free Software
       * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
       *
       * For questions, help, comments, discussion, etc., please write to: sol2ray at gmail dot com
       *
       * @link http://phpbtree.com/captcha/
       * @copyright 2003-2005 Smart Friend Network, Inc.
       * @author Sol Toure <sol2ray at gmail dot com>
       * @version alpha 0.01;
       */
      
      error_reporting(E_ALL);
      session_start();
      //Please modify this file to match your environment.
      
      include_once('gotcha.php');
      
      //Generate a random text.
      //Feel free to replace this with a custom solution.
      $t =  md5(uniqid(rand(), 1));
      
      $CAPTCHA_SESSION_KEY = 'CAPTCHA';
      
      //You can eliminate the above variable ($CAPTCHA_SESSION_KEY) and use 
      // the key string literal directly below.
      
      $_SESSION[$CAPTCHA_SESSION_KEY] =  $text = substr($t, rand(0, (strlen($t)-6)), rand(3,6));
      $image_width = 230;
      $image_height = 60;
      $font_size = 30;
      $font_depth = 5; //this is the size of shadow behind the character creating the 3d effect.
      
      
      $img = new GotchaPng($image_width, $image_height);
      
      
      //could not find a better name.
      if($img->create()){
          
          //fill the background color.
          $img->apply(new GradientEffect());
          //Apply the Grid.
          $img->apply(new GridEffect(2));
          //Add dots to the background
          $img->apply(new DotEffect());
          //Add the text.
          $t  = new TextEffect($text, $font_size, $font_depth);
          $t->addFont('SFTransRobotic************tended.ttf');
          // repeat the process for as much fonts as you want. Actually, the more the better.
          // A font type will be randomly selected for each character in the text code.
          $img->apply($t);
          //Add more dots
          $img->apply(new DotEffect());
          //Output the image.
          $img->render();
      }
      ?>
      ich hoffe das ist was du meinst....

      Kommentar


      • #4
        Das reicht trotzdem noch nicht. Da wirst du wohl den Autor des Scripts fragen müssen oder dir die Doku dazu nochmal durcharbeiten. So wird das jedenfalls nichts, denn das Problem ist nicht ausreichend beschrieben und auch mit dem geposteten Code nicht nachvollziehbar.

        Andere Variante: Jobangebot draus machen und dem Auftragnehmer einen FTP-Zugang einrichten.
        [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
        Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
        Super, danke!
        [/COLOR]

        Kommentar


        • #5
          so wie ich das weiß gibt es deb autor nicht mehr oder er macht nichts mehr...

          und geld habe ich leider nicht... dann werde ich mal woanders nach hilfe suchen......

          Kommentar


          • #6
            Zitat von owlbaer Beitrag anzeigen
            so wie ich das weiß gibt es deb autor nicht mehr oder er macht nichts mehr...

            und geld habe ich leider nicht... dann werde ich mal woanders nach hilfe suchen......
            Nicht mal 25€? Wovon bezahlst du dann den Webspace? Es kommt halt drauf an, wie kompliziert es ist, aber es ist durchaus wahrscheinlich, dass jemand mit der entsprechenden Erfahrung mit nem FTP-Zugang innerhalb von 10-20min den Fehler finden und beheben kann.
            [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
            Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
            Super, danke!
            [/COLOR]

            Kommentar


            • #7
              Zitat von AmicaNoctis Beitrag anzeigen
              Nicht mal 25€? Wovon bezahlst du dann den Webspace? Es kommt halt drauf an, wie kompliziert es ist, aber es ist durchaus wahrscheinlich, dass jemand mit der entsprechenden Erfahrung mit nem FTP-Zugang innerhalb von 10-20min den Fehler finden und beheben kann.
              nein mit alg2 hat man zeit aber kein geld..... der webspace ist free ohne werbung

              ftp zugang könnte ich geben das ist nicht das problem.....

              Kommentar

              Lädt...
              X