Page 1 of 1

VTS: keine SVG Charts!?!

Posted: Sat 18. Sep 2004, 22:07
by kerthi
Hey!

Ich hab folgendes Problem: Immer wenn ich mir die SVG Charts im Backend von VTS anschaun will, dann bekomm ich folgende Meldung:
"This XML file does not appear to have any style information associated with it. The document tree is shown below."

Ich habe jedoch den SVG Viewer installiert und mit anderen SVG Grafiken funktioniert er einwandfrei.

Browser: Mozilla Firefox 1.0 (im IE6 genau das gleiche Problem).

edit: aktiviert hab ich die charts natürlich, im config file

edit2: die charts auf http://www.emediafabrik.de/index.php?CID=334 gehn!! *häää*


ich bin ratlos
mfg kerthi

Posted: Mon 20. Sep 2004, 21:40
by jmeyknecht
das könnte daran liegen, dass das svg-file vom server mit dem falschen MIME TYPE versendet wird.

falls du Zugriff auf den apache hast (eigener server oder so), dann füge in den MIME TYPE hinzu, meist mime.type in /etc/apache

image/svg+xml svg svgz

anderenfalls tut es ein Eintrag in der .htaccess
AddType image/svg+xml svg
AddType image/svg+xml svgz

Probier's mal, ich denke das sollte es sein.

-------------------------------
english version

if your SVG from VTS isn't displayed or you get only XML-Code in your Browser, it could be, that your server transfers SVG with the wrong MIME TYPE because it doesn't know SVG (yet).

if you have access to apache (maybe own server) you can edit the mime types (usually a file called mime.type) in your apache conf directory (usually somewhere in etc/apache) and add:

image/svg+xml svg svgz

if you don't have access to apache config, simply add a few lines to you .htaccess file in your phpwcms root directory:

AddType image/svg+xml svg
AddType image/svg+xml svgz

that's all

Cheers, vanOssy

Posted: Tue 5. Oct 2004, 16:42
by Neelix
jmeyknecht wrote:das könnte daran liegen, dass das svg-file vom server mit dem falschen MIME TYPE versendet wird.

falls du Zugriff auf den apache hast (eigener server oder so), dann füge in den MIME TYPE hinzu, meist mime.type in /etc/apache

image/svg+xml svg svgz
Bei uns war DAS der Grund :shock:
thank's