Topic: Integration error

Hi there,

I have made a test php file for integration in my website.

This is the full html:

<?php

define('PUN_ROOT', './ouwehoeren/');
define('PUN_TURN_OFF_MAINT', 1);
define('PUN_QUIET_VISIT', 1);
require PUN_ROOT.'include/common.php';

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Klifix.eu Nieuws</title>
<link rel="stylesheet" type="text/css" href="http://www.klifix.eu/style/stylesheet.css" />
</head>
<body>
<center>


<div id="wrapper">


  <div id="header_nieuws">

     <div class="datum">
     Welkom <?php echo pun_htmlspecialchars($pun_user['username']); ?>! Hieronder lees je het laatste nieuws!
     </div>

  </div>

  <div id="middle">
     <center>
     <div class="headlines">
     <h2>Het Laatste Nieuws</h2>

       <ul>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <li>31-07-2007: <a href="">Dit is een testberichtje</a> (5 reacties)</li>
                     <?php include('http://www.klifix.eu/ouwehoeren/extern.php?action=new&show=10&fid=3'); ?>
       </ul>
     </div>
     </center>
  </div>

  <div id="footer">
 
  </div>











</div>
</center>

</body>

</html>

And this is the error I receive:

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /storage/mijndomein/users/004009/public/sites/www.klifix.eu/test.php on line 47

Warning: include(http://www.klifix.eu/ouwehoeren/extern. … &fid=3) [function.include]: failed to open stream: no suitable wrapper could be found in /storage/mijndomein/users/004009/public/sites/www.klifix.eu/test.php on line 47

Warning: include() [function.include]: Failed opening 'http://www.klifix.eu/ouwehoeren/extern. … &fid=3' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /storage/mijndomein/users/004009/public/sites/www.klifix.eu/test.php on line 47

Please help (the file can be found at http://www.klifix.eu/test.php)