IFrame Einbindung von Owncloud

  • Moin,


    ich habe vor ein paar Tagen ein Webhosting Paket erworben und habe Wordpress auf meiner Seite eingerichtet.
    Nun wollte ich auf einer Wordpress-Seite owncloud via iFrame einbinden (die ownCloud-Installation liegt auf einem anderen Webspace). Leider zeigt mir der Internet Explorer beim Laden der Seite "Dieser Inhalt kann nicht in einem Frame angezeigt werden." an... Wenn ich ownCloud auf dem netcup-Webspace installiere und mit iFrame einbinde, habe ich keine Probleme. Jedoch leider reicht mir die max. Upload-Größe von 8 MB nicht.


    Kann mir einer sagen, wie ich nun diesen Fehler umgehen kann?


    LG


    limes13

  • Vielen Dank.


    Die .htaccess auf dem anderen Webspace sieht so aus:


    <IfModule mod_fcgid.c>
    <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
    SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
    RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
    </IfModule>
    </IfModule>
    </IfModule>
    ErrorDocument 403 /core/templates/403.php
    ErrorDocument 404 /core/templates/404.php
    <IfModule mod_php5.c>
    php_value upload_max_filesize 513M
    php_value post_max_size 513M
    php_value memory_limit 512M
    <IfModule env_module>
    SetEnv htaccessWorking true
    </IfModule>
    </IfModule>
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]
    RewriteRule ^.well-known/host-meta.json /public.php?service=host-meta-json [QSA,L]
    RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]
    RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]
    RewriteRule ^apps/calendar/caldav.php remote.php/caldav/ [QSA,L]
    RewriteRule ^apps/contacts/carddav.php remote.php/carddav/ [QSA,L]
    RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]
    RewriteRule ^remote/(.*) remote.php [QSA,L]
    </IfModule>
    <IfModule mod_mime.c>
    AddType image/svg+xml svg svgz
    AddEncoding gzip svgz
    </IfModule>
    <IfModule dir_module>
    DirectoryIndex index.php index.html
    </IfModule>
    AddDefaultCharset utf-8
    Options -Indexes
    php_flag magic_quotes_gpc Off


    Kann ich diese "X-Frame Options SAMEORIGIN"-Funktion ausschalten?

  • Ich habe das Problem gelöst, indem ich im Owncloud-Verzeichnis (auf dem externen Webspace) im Ordner lib in der Datei

    Code
    template.php

    den Code:


    Code
    header('X-Frame-Options: Sameorigin')

    ausgeklammert habe:


    Code
    //header('X-Frame-Options: Sameorigin')

    .


    Dann funktionierte es prima!


    Vielen Dank noch einmal.