Script funktioniert nur lokal, nicht auf Provider

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

  • Script funktioniert nur lokal, nicht auf Provider

    Mein Problem:
    Ich hab eine kleine Bildergallerie gebastelt mit einem "adminpanel", mit dem es möglich ist neue Gallerien zu erstellen, Bilder uploaden, löschen, usw.

    Lokal, auf meiner Workstation funktioniert es einwandfrei nur wenn ich es auf den Server meines Providers kopier, funktioniert es nicht mehr! Ich nehme an das es mit dem tatsächlichen Pfad zu tun hat! Aber schaut es euch bitte mal an!

    Ihr müsst nur die var.inc.php anpassen, das wärs!
    Um das Passwort ans adminpanel weiterzugeben müsst ihr
    Code:
    http://server/adminpanel.php?admin=passwort
    eingeben!


    DANKE
    [font=tahoma]
    Agentursoftware
    Zend Framework Resource
    FM4 Sammelalbum


    "The most important part of the work is the beginning" - Plato
    "..so dance while you still have feet and smile while you still have teeth.." - Caesars[/font]

  • #2
    Ups, uploaden vergessen.....

    Jop.

    Siehe Beitrag1, zwecks Handhabung.
    Angehängte Dateien
    [font=tahoma]
    Agentursoftware
    Zend Framework Resource
    FM4 Sammelalbum


    "The most important part of the work is the beginning" - Plato
    "..so dance while you still have feet and smile while you still have teeth.." - Caesars[/font]

    Kommentar


    • #3
      wie wäre es statt

      switch($frame)

      mal

      switch($HTTP_GET_VARS['frame'])

      zu nutzen. Dein Provider hat wahrscheinlich register_globals=off
      TBT

      Die zwei wichtigsten Regeln für eine berufliche Karriere:
      1. Verrate niemals alles was du weißt!


      PHP 2 AllPatrizier II Browsergame

      Kommentar


      • #4
        Schön wärs wenns nur das gewesen wär!

        Danke, auf das hab ich selbst schon gedacht aber mein Provider hat register_globals "on".

        Kein Ahnung was ist, ich bekomm ja nicht einmal eine Fehlermeldung!



        Eine andere Frage kann ich Variablen, wenn register_globals on is auch mit HTTP_GET_VARS ansprechen oder funktioniert das dann nicht? Normalerweise sollte es ja schon funktionieren.

        Hat sich das Script schon jemand angesehen??



        Danke schon im voraus
        [font=tahoma]
        Agentursoftware
        Zend Framework Resource
        FM4 Sammelalbum


        "The most important part of the work is the beginning" - Plato
        "..so dance while you still have feet and smile while you still have teeth.." - Caesars[/font]

        Kommentar


        • #5
          $_POST[''] nicht unterstützt

          ....ich habs, mein Provider unterstützte die Kurform:
          PHP-Code:
          $_POST['variable']; 
          nicht!!!



          Ausgetauscht mit:
          PHP-Code:
          $HTTP_POST_VARS['variable']: 
          und es funzt!!!! .......... FAST wenn er den Safe-Mode nicht aktiviert hätte!!




          Wenn ich zum Beispiel versuche eine Datei zu erstellen und rein zu schreiben Kommt der bekannte Safe-Mode Fehler:
          SAFE MODE Restriction in effect. The script whose uid is 509 is not allowed to access tester/index.php owned by uid 510 in class.inc.php on line 77
          Kann ich das irgendwie umgehen, oder anders machen, vielleicht mit ner .htacces oder so, oder die Rechte anders verteilen......



          Bin für jeden Tipp dankbar.

          mfg
          is_real
          [font=tahoma]
          Agentursoftware
          Zend Framework Resource
          FM4 Sammelalbum


          "The most important part of the work is the beginning" - Plato
          "..so dance while you still have feet and smile while you still have teeth.." - Caesars[/font]

          Kommentar

          Lädt...
          X