<?php

    
    # included in every posts permanent link page
    # $fn must be set

    include '../../monofiles/log.php';
    $fninfo = getxmlpost('../../monofiles/autosaves/'.$fn);

    if (!file_exists('../../pagep.php') || (int)$fninfo['ptime'] > time()) {
    
        header('HTTP/1.0 404 Not Found');
        exit();
    
    }

    
    include 'path.php'
    
    # the line below sould also work
    #include '../../monofiles/path.php'




?>