Announcement

Collapse
No announcement yet.

DIV src=????

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • DIV src=????

    Hi,

    in einem anderen Thread (http://entwickler-forum.de/showthread.php?t=65177) hatte ich angekündigt, einen anderen Lösungsansatz für mein iFrame-Problem anzugehen.

    Nun komme ich hier nicht weiter.

    Alter Quellcode:
    PHP Code:
    <IFRAME name="lieferant_k_p_p" id="ifk" SRC="<?php echo $page;?>_korres.php?fokus_id=<?php echo $_REQUEST['focusId']; ?>&bearbeiter=<?php echo $bearbeiter;?>&id=<?php echo $id;?>&page=<? echo $page;?>" width="888px" height="367px" <?php echo __PX_IF_COM__;?> scrolling="auto">
    </IFRAME>
    Nun mein Versuch mit DIV anstatt eines iFrames.
    PHP Code:
    <div style="width: 888px; height: 367; position: relative;">

    $site "http://crm/xyz/" $page "_korres.php?fokus_id=" $_REQUEST['focusId'] . "&bearbeiter=" $bearbeiter "&id=" $id "&page=" $page;

    include (
    $site);
    </
    div
    Allerdings erlange ich folgende Fehlermeldung
    Code:
    Warning: include() [function.include]: URL file-access is disabled in the server configuration in F:\Datenbank\htdocs\crm\xyz\lieferant.php on line 155
    
    Warning: include(http://crm/xyz/lieferant_korres.php?fokus_id=k_&bearbeiter=FAG&id=2147140562&page=lieferant) [function.include]: failed to open stream: no suitable wrapper could be found in F:\Datenbank\htdocs\crm\xyz\lieferant.php on line 155
    
    Warning: include() [function.include]: Failed opening 'http://crm/xyz/lieferant_korres.php?fokus_id=k_&bearbeiter=FAG&id=2147140562&page=lieferant' for inclusion (include_path='.;F:\Datenbank\htdocs\__pear;F:\Datenbank\htdocs\__pear\pear;c:\php\includes') in F:\Datenbank\htdocs\crm\xyz\lieferant.php on line 155

  • #2
    Was haben die PHP-Probleme mit HTML zu tun?


    URL file-access is disabled in the server configuration
    ->>
    allow_url_include = on
    Christian

    Comment


    • #3
      Mit HTML hätte mir eigentlich auch auffallen können. Aber wohl wegen iFrame und DIV. Aber egal.

      Wo muss ich den Befehl denn einstellen?

      Comment

      Working...
      X