What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Pack the script

Pack the script
Author: Message:
mickael9
Full Member
***


Posts: 117
Reputation: 3
32 / Male / Flag
Joined: Jul 2005
RE: RE: Pack the script
quote:
Originally posted by alexp2_ad
Yes, Internet Explorer has this problem.  It thinks it's a zip so it downloads it as a zip.  I get round it by putting the script in a separate folder on the server from the html and the rest and then putting in a file called .htaccess saying:

code:
ForceType application/x-plsc


That should work.

Adding the type elsewhere didn't work right for me, so I had to use ForceType and a separate folder.

Or you can create a php script :
code:
<?php

// download.php?script=xxx (no .plsc)

$script = $_GET['script'];

if (strpos($script,".") > -1 || strpos($script,"/") > -1 || strpos($script,"\\")  > -1 || strpos($script,'"') > -1 || !is_file("./$script.plsc"))
    die("File not found");

header("Content-Type: application/x-plsc");
header('Content-Disposition: attachment; filename="' . $script . '.plsc"');

readfile("./$script.plsc");

?>

This post was edited on 08-20-2006 at 11:45 AM by mickael9.
08-20-2006 11:42 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Pack the script - by SnuZZer on 08-19-2006 at 05:48 PM
RE: Pack the script - by Silentdragon on 08-19-2006 at 05:57 PM
RE: Pack the script - by SnuZZer on 08-19-2006 at 05:58 PM
RE: Pack the script - by Silentdragon on 08-19-2006 at 06:03 PM
RE: Pack the script - by haydos on 08-19-2006 at 06:03 PM
RE: Pack the script - by Dempsey on 08-19-2006 at 06:18 PM
RE: Pack the script - by SnuZZer on 08-19-2006 at 07:02 PM
RE: Pack the script - by Silentdragon on 08-19-2006 at 07:09 PM
RE: Pack the script - by CookieRevised on 08-19-2006 at 08:16 PM
RE: Pack the script - by SnuZZer on 08-19-2006 at 09:38 PM
RE: Pack the script - by Silentdragon on 08-19-2006 at 09:41 PM
RE: Pack the script - by Ezra on 08-19-2006 at 09:46 PM
RE: Pack the script - by SnuZZer on 08-19-2006 at 10:01 PM
RE: Pack the script - by Ezra on 08-19-2006 at 10:14 PM
RE: Pack the script - by SnuZZer on 08-19-2006 at 10:18 PM
RE: Pack the script - by Ezra on 08-19-2006 at 10:24 PM
RE: Pack the script - by Supersonicdarky on 08-19-2006 at 11:03 PM
RE: Pack the script - by SnuZZer on 08-20-2006 at 07:37 AM
RE: Pack the script - by alexp2_ad on 08-20-2006 at 10:30 AM
RE: RE: Pack the script - by mickael9 on 08-20-2006 at 11:42 AM
RE: Pack the script - by SnuZZer on 08-20-2006 at 01:56 PM
RE: Pack the script - by Menthix on 08-20-2006 at 02:06 PM
RE: Pack the script - by Ezra on 08-20-2006 at 02:15 PM
RE: RE: Pack the script - by mickael9 on 08-20-2006 at 03:10 PM
RE: Pack the script - by Ezra on 08-20-2006 at 03:23 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On