Webpad 3.0 Personal > Download.php

Questions? Need Help? Want to share? » PHP Forum
Script Name:
Webpad 3.0 Personal

Download:
webpad-3.0-personal.zip

Category:
Content Management

Archive Content:

Webpad 3.0 Personal

Webpad 3.0 Personal > Admin

Webpad 3.0 Personal > Css

Webpad 3.0 Personal > Dialogs

Webpad 3.0 Personal > Docs

Webpad 3.0 Personal

Webpad 3.0 Personal > Images

Webpad 3.0 Personal

Webpad 3.0 Personal > Js

Webpad 3.0 Personal

Webpad 3.0 Personal > Locations

Webpad 3.0 Personal

Webpad 3.0 Personal > Plugins > Blogging

Webpad 3.0 Personal > Plugins > Blogger

Webpad 3.0 Personal > Plugins > Blosxom

Webpad 3.0 Personal > Plugins > Livejournal

Webpad 3.0 Personal > Plugins > Movabletype

Webpad 3.0 Personal > Plugins > Typepad

Webpad 3.0 Personal > Plugins > Wordpress

Webpad 3.0 Personal

Webpad 3.0 Personal > Templates

Webpad 3.0 Personal

Download.php:


<?php
require_once('admin/configuration.php');
require_once(
'admin/authentication.php');
require_once(
'locations/common.php');

// Send headers to force a named file download
header('Content-disposition: attachment; filename="' urldecode($_REQUEST['f']) . '"');

// If the file exists,  dump the contents
if (is_file('temp/' urldecode($_REQUEST['t']))) {
    
// Get temp file
    
$str parse_file('temp/' urldecode($_REQUEST['t']));
    
    
// Fix linebreaks for destination
    // Windows
    
if (stristr($_SERVER['HTTP_USER_AGENT'],  'win') !== false) {
        
$str str_replace("\n",  "\r\n",  $str);
    }
    
// Mac
    
else if (stristr($_SERVER['HTTP_USER_AGENT'],  'mac') !== false) {
        
$str str_replace("\n",  "\r",  $str);
    }
    
// Others can stay with \n
    
    
echo $str;
}
exit;
?>


Other Content Management Scripts:

WebMaster Resources Home

©RingsWorld.com