Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jan

Pages: 1 2 3 [4] 5 6 7 8 ... 287
46
Nee, mit der Datenbank hat das nichts zu tun. Die Fehlermeldung kommt ja von PHP, also noch bevor die Datenbank überhaupt etwas von den Daten mitbekommt.

Wenn Du willst, kannst Du mir Deine FTP-Daten per PN schicken. Dann schau ich mal nach...

47
Explain then what you exactly want. I have no clue what flv is neither what you want to do exactly.

49
Installation, Update & Configuration / Re: switched servers, need help
« on: December 19, 2006, 05:52:49 PM »
It seems that the folder "includes" is missing (or at least some files from it). If you are unsure, download the zip from the downlaod page a compare it with the files you've uploaded.

50
FAQ, Tips / Re: 4images 1.7.4 Installation [from DOCS Folder]
« on: December 19, 2006, 11:11:31 AM »
Is the starting <?php missing in your config.php or did you just forgot to post it?

51
Komische Sache...Hast Du irgendwelche Änderungen an global.php, details.php etc. vorgenommen?

52
Das ist im Prinzip das gleiche. Er benutzt das Uploadverzeichnis von PHP und ich ein egenes Verzeichnis plus Routine um alte Dateien zu löschen. Kannst Dir eins aussuchen ;)

53
Kannst Du mal die URL zu Deiner Galerie posten.

54
I don't know exactly how much you need, my memory_limit is 40M ;)

55
Die sollten schon gehen. Was passiert genau?

56
Probiere mal folgendes. Öffne includes/zip.php und ersetze

Code: [Select]
$this->tmpfp = @tmpfile();
mit

Code: [Select]
    $path = ROOT_PATH . "tmp";
    $handle = opendir($path);
    while ($file = @readdir($handle)) {
      if ($file{0} == ".") {
        continue;
      }

      if (@is_file($path."/".$file)) {
        if ((filemtime($path.'/'.$file) + (60 * 5)) < time()) {
          @unlink($path."/".$file);
        }
      }
    }

    $this->tmpfp = fopen(tempnam($path, "zip"), "wb+");

Falls es damit noch nicht funktioniert, erstellst Du im 4images-Ordner einen Ordner "tmp" (chmod 777).

57
Discussion & Troubleshooting / Re: Auto Thumbnail Genaration Help Please
« on: December 18, 2006, 12:16:56 PM »
We've updated the forum version and the "Topic solved" plugin isnt compatible with the new version. We'll re-add it when there is a compatible version available.

58
OK, i guess its the case what i described above. Theres nothing you can do from 4images side. theres just not enough memory for working with big images.

Jan

59
Discussion & Troubleshooting / Re: Auto Thumbnail Genaration Help Please
« on: December 15, 2006, 04:06:32 PM »
Quote
Now what is that autothumbnailer thing?
Just click "Auto-Thumbnailer" in your Control Panel. Here you can check your database for images with missing thumbnails and create them.
Quote
and In case I want to do bulk Uploading how is this done?
http://www.4homepages.de/forum/index.php?topic=3080.0

60
Mods & Plugins (Releases & Support) / Re: [Mod] Random image / Zufallsbild
« on: December 15, 2006, 12:53:16 PM »
I've attached the random.txt to the first post.

Pages: 1 2 3 [4] 5 6 7 8 ... 287