Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: GentooForum.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

09.07.2006, 01:21

Keine png bilder nicht anzeigen o.ä.

Hi hab nen kleines Problemchen
Ich hab mir meinen Server eingerichtet und alles läuft super aber Ich will nicht das mein Server keine png bilder anzeigt sondern stattdessen nur den Quellcode.
Wie kann ich das in der Apache config bewerkstelligen?

2

09.07.2006, 08:48

RE: Keine png bilder nicht anzeigen o.ä.

Zitat

Original von BlackLotus
Hi hab nen kleines Problemchen
Ich hab mir meinen Server eingerichtet und alles läuft super aber Ich will nicht das mein Server keine png bilder anzeigt sondern stattdessen nur den Quellcode.
Wie kann ich das in der Apache config bewerkstelligen?


Den Quellcode von png's anzeigen? Entweder hast du ein wirklich merkwürdiges Problem oder deine Problemstellung ist etwas unglücklich formuliert.

Wenn letzteres, und du das Problem hast "Der Browser zeigt den Inhalt von Dateien an, statt den Inhalt zu interpretieren.", dann könnte das am Browser liegen (bzw. an den Einstellungen) - dieses Problem wurde hier im Forum auch schon öfter genannt. Tritt das Problem auch mit anderen Browser auf, welche hast du benutzt?
Frequent lock ups are a symptom of not enough memory but only in the way that nosebleeds are a symptom of gunshot wounds to the head.

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »loskornosdelsol« (09.07.2006, 08:50)


3

09.07.2006, 22:44

Ne ich will meinen Apache so konfigurieren dass er keine pngs anzeigt von mir aus keine gifs oder jpgs aber der soll ein Bildformat so interpretieren als wäre es eine php Datei.
Bei nem WAMP war das imho nur eine zeile in der httpd.config und zwar
AddType application/x-httpd-php png
So wie gehts jetzt unter dem Linux apache?

4

09.07.2006, 23:44

Ah :]

/etc/apache2/modules.d/70_mod_php5.conf
Frequent lock ups are a symptom of not enough memory but only in the way that nosebleeds are a symptom of gunshot wounds to the head.

5

10.07.2006, 03:13

Zitat

Original von loskornosdelsol
Ah :]

/etc/apache2/modules.d/70_mod_php5.conf

Ist es schlimm wenn ich deine Aussage nicht ganz verstehe?

6

10.07.2006, 04:00

Zitat

Original von BlackLotus

Zitat

Original von loskornosdelsol
Ah :]

/etc/apache2/modules.d/70_mod_php5.conf

Ist es schlimm wenn ich deine Aussage nicht ganz verstehe?


Meine Antwort war wohl nicht aussagekräftig genug, der 2te Versuch folgt:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
korn@subnetrouter ~ # ll /etc/apache2/modules.d/
total 28
-rw-r--r-- 1 root root 2980 Mar 21 22:00 40_mod_ssl.conf
-rw-r--r-- 1 root root 8151 Mar 21 22:00 41_mod_ssl.default-vhost.conf
-rw-r--r-- 1 root root  583 Mar 21 22:00 45_mod_dav.conf
-rw-r--r-- 1 root root  892 Mar 21 22:00 46_mod_ldap.conf
-rw-r--r-- 1 root root  435 Jun 18 19:30 47_mod_dav_svn.conf
-rw-r--r-- 1 root root  494 Jun 18 20:28 70_mod_php5.conf
korn@subnetrouter ~ # cat /etc/apache2/modules.d/70_mod_php5.conf
<IfDefine PHP5>

        # Load the module first
        <IfModule !mod_php5.c>
                LoadModule php5_module    modules/libphp5.so
        </IfModule>

        # Set it to handle the files
        <IfModule mod_mime.c>
                AddType application/x-httpd-php .php
                AddType application/x-httpd-php .phtml
                AddType application/x-httpd-php .php3
                AddType application/x-httpd-php .php4
                AddType application/x-httpd-php .php5
                AddType application/x-httpd-php-source .phps
        </IfModule>

        AddDirectoryIndex index.php index.phtml
</IfDefine>
Frequent lock ups are a symptom of not enough memory but only in the way that nosebleeds are a symptom of gunshot wounds to the head.