Powerpoint uploads and MIME types

I am building an application to upload PPT files. I want to
test the
incoming filenames to see if it *is* a PPT file, but cannot
find a MIME type
for it. How should I do this so that I only allow such files
to be
uploaded?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================

OK - here's the skinny:
PPT extension files have a MIME type (PC or Mac) as stated.
PPTX extension
files (PC or Mac) have a MIME type as shown in the line in my
code below -
if (($_FILES['uploadfile']['type'] ==
'application/vnd.ms-powerpoint') ||
($_FILES['uploadfile']['type'] ==
'application/vnd.openxmlformats-officedocument.presentationml.presentation'))
This test appears to work as desired. Why would I not want to
use it to
filter all but Powerpoint files?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Murray *ACE*" <[email protected]> wrote
in message
news:[email protected]...
> Thanks, Joe! See my reply to Gary's post....
>
> --
> Murray --- ICQ 71997575
> Adobe Community Expert
> (If you *MUST* email me, don't LAUGH when you do so!)
> ==================
>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
> ==================
>
>
> "Joe Makowiec" <[email protected]> wrote in
message
>
news:[email protected]...
>> On 03 May 2008 in macromedia.dreamweaver.appdev,
Murray *ACE* wrote:
>>
>>> I am building an application to upload PPT
files. I want to test
>>> the incoming filenames to see if it *is* a PPT
file, but cannot find
>>> a MIME type for it. How should I do this so that
I only allow such
>>> files to be uploaded?
>>
>> application/vnd.ms-powerpoint ppt
>>
>>
http://www.w3schools.com/media/media_mimeref.asp
>>
>> I just checked several Powerpoint files - the first
8 bytes are (hex)
>> d0 cf 11 e0 a1 b1 1a e1
>> in all the files I checked. So you can:
>> - upload the file
>> - open the file up and examine the first 8 bytes:
>> $handle = fopen($filename, "rb");
>> $contents = fread($handle, 8);
>> if ($contents != $testvalue) { ...
>> - for dealing with the binary string, see bin2hex
and pack
>>
>>
http://www.php.net/manual/fopen
>>
http://www.php.net/manual/fread
>>
http://www.php.net/bin2hex
>>
http://www.php.net/pack
>>
>> (This is PHP, right?)
>>
>> I'd also examine a few more powerpoint files - I
think that there are a
>> few different types? - to be sure that the signature
I list is
>> characteristic. And remember that Microsoft
completely changed file
>> structures for Office 2007, and that .pptx is
probably completely
>> different to all other previous formats...
>>
>>
http://en.wikipedia.org/wiki/Microsoft_PowerPoint#File_formats
>>
>> --
>> Joe Makowiec
>>
http://makowiec.net/
>> Email:
http://makowiec.net/contact.php
>

Similar Messages

  • Get Uploaded File Mime Type and Client Filename

    Anyone know how to recover an uploaded file MIME type and
    client file name?
    I'm writing my own cfx tag to process file uploads and pretty
    much have it figured out except to determine the name of the client
    file and mime type. The formfield file variable value contains the
    path/filename to the CF temp directory, but I need the MIME type,
    filename, etc. that is contained int he HTTP Header
    (e.g. Content-Disposition: form-data; name="Image";
    filename="C:\test.JPG"
    Content-Type: image/pjpeg
    [empty line])
    I'm using the getHttpRequestData() functiont, but it only
    gives me the content-type multipart/form-data, leaving out the Mime
    type and Content-Disposition (which contains the client file name).

    Hi Daniel,
    do you use EPG, mod_plsql or APEX Listener? Have you changed the connection mechanism after upgrading to 4.2.1?
    If you use the APEX Listener, which version do you use? Which browser and version do you use to upload the file? Does it reproduce with other browsers as well?
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How To Get FileType and MIME Type from a File

    Hi,
    I am using following ways to get FileType and MIME Type.
    I am able to get file type, but I am getting MIME Type as */*
    Can any one please let me know how to get MIME Type, but it should not be time consuming process.
    For File Type I am using following Code:
    private String getFileData(InputStream inStream) {
    fileName = C:\temp\temp.tiff
    String filePath = Util.createTempFile(fileName);
    RandomAccessFile raf = new RandomAccessFile(filePath, "rw");
    while (inStream.available() > 0) {
         byte[] buf = new byte[inStream.available()];
         inStream.read(buf);
         raf.write(buf);
    inStream.close();
    raf.close();
    File file = new File(filePath);
    JFileChooser chooser = new JFileChooser();
    String fileType = chooser.getTypeDescription(file);
    file.delete();
    //MIME Type I am getting from
    DataHandler data = new DataHandler(new DocumentSource(inStream));
    data.getContentType();
    data.getContentType() is not working well in all cases.
    Can any one help me on this.
    Thanks in advance,
    Ram.
    Edited by: javausers07 on Apr 15, 2009 4:25 PM

    javausers07 wrote:
    Hi,
    I am using following ways to get FileType and MIME Type.
    I am able to get file type, but I am getting MIME Type as */*
    Can any one please let me know how to get MIME Type, but it should not be time consuming process.
    For File Type I am using following Code:
    private String getFileData(InputStream inStream) {
    fileName = C:\temp\temp.tiff
    String filePath = Util.createTempFile(fileName);
    RandomAccessFile raf = new RandomAccessFile(filePath, "rw");
    while (inStream.available() > 0) {
         byte[] buf = new byte[inStream.available()];
         inStream.read(buf);
         raf.write(buf);
    inStream.close();
    raf.close();
    File file = new File(filePath);Why do you do all above?
    JFileChooser chooser = new JFileChooser();
    String fileType = chooser.getTypeDescription(file);
    file.delete();
    //MIME Type I am getting from
    DataHandler data = new DataHandler(new DocumentSource(inStream));
    data.getContentType();
    data.getContentType() is not working well in all cases.That's because there's no way to get MIME type of all files on all filesystems.
    Kaj

  • Image size and mime type.. non-java guy needs help

    Image size, mime type.. non-java guy needs help
    Im not at all familiar with java so this is really weird for me to work out. I?ve been doing it all day (and half of yesterday).
    Im trying to write a custom clodFusion tag in java that gets the width, height, size and MIME types of a given file. I?ve been trying to get it to work on the command line first. I can get the width and height but cant get the size and the MIME type.
    Here is what I got
    /*import com.allaire.cfx.*;*/
    import java.awt.image.renderable.*;
    import javax.media.jai.*;
    import com.sun.media.jai.codec.*;
    import java.io.*;
    import java.util.*;
    public class ImageInfo {
    private RenderedOp image = null;
    private RenderedOp result = null;
    private int height = 0;
    private int width = 0;
    private String type = "";
    private String size = "";
    public void loadf(String file) throws IOException
    file = "80by80.jpg";
    FileSeekableStream fss = new FileSeekableStream(file);
    image = JAI.create("stream", fss);
    height = image.getHeight();
    width = image.getWidth();
    System.out.println(height + "\n");
    System.out.println(width);
    System.out.println(type);
    public static void main(String[] args) throws IOException {
    ImageInfo test = new ImageInfo();
    test.loadf(args[0]);
    can anyone please help me out to modify the above so I can also print the mime type and the file size to screen.
    thanks for any help

    any suggestions?

  • No video with supported formate and mime type found

    I am able to view videos on all but 1 website: http://www.start-american-sign-language.com/free-sign-language-asl1.html
    When I view that page, the video box only shows the x with "no video with supported formate and mime type found" being displayed.
    I have updated to the most recent palemoon (25.3.0) and have the following plugins installed
    DRM 9.0.0.4503
    Shockwave flash 16.0.0.305
    Silverlight 5.1.30514.0
    VLC Web Plugin 2.2.0.0
    Windows media Player Dynamic Link LIbrary 3.0.2.629
    I have cleared my cache and cookies, and am unable to view the video in question. If I go to https://www.youtube.com/html5, it indicates that I have an operable Webelement player and Web VP8, and all others are exclamation points.
    Does anyone know why I can't watch the (mp4) video(s) in question? I have turned up no viable solutions using the forums or google.
    Thanks!

    This happens when there is no support in your Windows XP version to play any of the media file formats that the website offers with the HTML5 media player (i.e. not a Flash player is used, but a video tag).
    That are MP4 files with type="video/mp4"
    *VLC shows: Codec: H264 - MPEG-4 AVC (part 10) (avc1)
    You might be out of luck on Windows XP and your only option would be to use an external media player and paste the links in its location field.

  • Trying to embed a video file in HTML5: ERROR=No video with supported format and MIME type found?

    Hello all!
    I am desparate for a solution. I am testing my site on Firefox and Explorer and still no sign of a functional video yet.
    Firefox: I get the error: No video with supported format and MIME type found.
    Explorer: I just get a distorted layout.
    Here is the code I am working on:
    <table id="Table_01" width="480" height="801" border="0" cellpadding="0" cellspacing="0">
        <tr>
            <td colspan="6">
                <img src="images/Video_01.jpg" width="480" height="114" alt=""></td>
        </tr>
        <tr>
            <td rowspan="3">
                <img src="images/Video_02.jpg" width="52" height="486" alt=""></td>
            <td colspan="4">
               <video controls width="376" height="221">
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).mp4" type="Video/Mp4"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).webm" type="Video/WebM"/>
                 <source src="C:\Users\aalmeida\Videos\AEMC PEL 103 6 Channel, Power & Energy Logger - with Display (Part 1).oggtheora.ogv" type="Video/Ogg"/>
                 </video>
    Please tell me that there is something missing in the code. I have spent a lot of time uninstalling-updating Firefox plugins, added MIME types in the Internet Information Manager (I'm on Windows 7)
    and  seriuously hit a dead end with this!
    Any advice would be muchly appreciated!!!
    Thanks
    ~LA

    As Jon said, you must declare the page as HTML5.
    And your server may not be set up to deliver video as a binary file if it is an .OGG file. I have not seen this problem with .MP4 or .M4V in the past, but every server is a little different.
    To add a MIME type, you need to change your .htaccess file on an Apache server thusly:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    Additionally, MIME types can usually be changed on a server's Control Panel. One can also ask one's hosting provider to do this as well.
    Firefox makes it necessary to use OGG files. Webkit-based browsers will deal with .M4V or .MP4 and I understand Internet Exploder will work with the latter two as well.

  • Uploading files Mime Type not correct for Office 2007 default extensions.

    hi all,
    My company has recently moved over to MS Office 2007 and the default extensions for word, excel etc are now .docx, xlsx etc (ie xml based).
    Unfortunately now when we upload files through APEX to the database the MIME TYPE value for these files isn't being recognised and not loadeding correctly into the APEX_APPLICATION_FILES table and subsequently any future retrieval of these files fails.
    I could put some logic inthe up load procedure to look at the filename in APEX_APPLICATION_FILES and hard code in the releavnt mime types but this still causes problems when retrieving the content.
    Has anyone come across this and got a workround? Is it a bug in AE?
    regards
    James
    FYI - using APEX 3.0.2 over 11G.

    I have not any response to my question and not sure if it is in Apex I need to look or the tomcat server that I need to look. I have a useful application to try to show others what Apex can do for our customers to collaborate. However, most of our customers are using office 2007 so, hoping this is possible.
    I am using apex 3.2.0.00.27 if that helps someone to point me where to find more info on being able to have Word 2007 or excel 2007 fire up to open a .docx or .xlss file stored in a table blob column. Word or Excel does fire up to open .doc and .xls files.
    The following is the query for a report selecting the filenames uploaded into a blob column in my table:
    { SELECT s.ID, SUBSTR(s.NAME,INSTR(s.NAME, '/',1,1)+1,length(s.NAME)) SHORT_FNAME, s.SUBJECT
    FROM spp_attachments s
    WHERE s.PROGRAM_ID = :P2_PROGRAMID }
    Below is the stored procedure called from the link on the short_fname column in report query above.
    { create or replace PROCEDURE  download_file(p_file IN number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    APEX_APPLICATION.G_FLOW_ID :=245;
    IF NOT (wwv_flow_custom_auth_std.is_session_valid) then
    owa_util.status_line(404, 'Page Not Found',true);
    return;
    else
    SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM spp_attachments
    WHERE id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'),
    FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment;
    filename="'||replace(REPLACE(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),NULL),chr(13),NULL)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end if;
    end download_file; }
    Thank you,
    Mark

  • File Download and Mime-Types

    I have some files (txt, xls, rtf, pdf) that need to be downloaded from our site. I
    have an http link to the files on the web page. I've set mime-types for each file
    type in web.xml for that web app. I'm using WLS 6sp2 on Windows 2K. I'm using an
    MVC model for the application with a Controller servlet. Every time anyone tries
    to click on the link and download it, the Contorller kicks them to a default page.
    Can anyone help?
    Thank you.

    Go to IIS Management console. At the server level, go to MIME Types. Add a new MIME type:
    File name extension:
    .mp4
    MIME type:
    video/mp4
    Restart IIS (can't remember if this is required).
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • .htaccess and MIME types not working in 3.1

    anyone else noticed that when using a .htaccess file to determine certain mime types safari 3 ignores the .htaccess file and handles the file the way the OS would normally?
    i'm hosting a bunch of 1080p .mov's and I'd prefer if they would just download when clicked on instead of trying to open in a window where they go out of frame.
    i've currently got the addtype set to octetstream, and on safari 2 and firefox they both automatically start to download, but safari 3 tries to open the movie in the browser window.

    I think that it is interesting to note that as I peruse the various threads dealing with 3.1 update problems the majority of complaints seem to be coming from iPhone/Mac combos; based, at least, on the posters signiture.
    For my part, 64bit vista win machine and 3Gs, the update could not have been soother and the phone works better then it did; no app problems, better wi-fi conectivity, faster loading of apps and files.
    I have had, though, considerable problems with Outlook sync, contacts sync and MM sync (enough so that I turned off MM except for iDisk); but most of these are known issues so just need to with it out.
    Seems like Apple could have workedd this stuff out before hand, though.

  • Server and MIME types

    I'm having a great deal of trouble getting my java web start working I've set up everything on the site but when I click the link it shows the XML code from my JNLP file. I read that I have to set a MIME type on the server but I have no way of changing anything on the server concerning MIME types. Can I somehow specify something in the HTML so it'll open it up? Thanks, Kyle Chalupa

    You are quite correct I have a bad MIME type however I don't have access to modify the MIME type definitions on the server nor if I did I wouldn't know what to modify. Is there a way to do it in JavaScript? Kicking up the reward to 5 duke dollars. Please help.
    I don't think there's anything you can specify in the
    HTML to make it work. I downloaded your jnlp file and
    tried to open it in JWS and got the following error:
    An error occurred while launching/running the
    application.
    Title: Tic Tac Toe Application
    Vendor: Kyle Chalupa
    Category: Download Error
    Bad MIME type returned from server when accessing
    resource:
    http://www.sunysuffolk.edu/~chalk43/tictactoe/tictactoe
    jnlp - text/plain
    So that says to me that the mime type has to be set on
    the server for it to work at all.
    Chris

  • Web Applications and MIME Types

    Hi,
    I am using WL Server 5.1, Service Pack 4 with the Sun JDK 1.3 on RedHat
    Linux 6.2. I woiuld like to deploy my application as a web application. I
    have created the web.xml file, etc. as per teh specification, and things
    work as expected for the most part: I can server up plain HTML, JSPs, etc.
    without a problem. I do have one major problem however: I cannot seem to
    serve up GIFs, PDFs, etc. I believe I have correctly specified the MIME
    mappings in my web.xml file. Is there something I am missing here? I'd
    appreciate any help in this regard. I am attaching my web.xml file for those
    who'd like to look at it.
    TIA,
    Prashanth
    [web.xml]

    Bjorn,
    I am re-attaching the web.xml file. I think I do have the necessary
    specifications in it. Just to be safe, I have put all the mime mappings in
    the weblogic.properties file as well, still to no avail. Interestingly
    enough, things work perfectly well when I deploy it the default weblogic
    way.
    Thanks,
    Prashanth
    "Björn Brenander" <[email protected]> wrote in message
    news:[email protected]..
    Prashanth Nandavanam wrote:
    Hi,
    I am using WL Server 5.1, Service Pack 4 with the Sun JDK 1.3 on
    RedHat
    Linux 6.2. I woiuld like to deploy my application as a web application.I
    have created the web.xml file, etc. as per teh specification, and things
    work as expected for the most part: I can server up plain HTML, JSPs,etc.
    without a problem. I do have one major problem however: I cannot seem to
    serve up GIFs, PDFs, etc. I believe I have correctly specified the MIME
    mappings in my web.xml file. Is there something I am missing here? I'd
    appreciate any help in this regard. I am attaching my web.xml file forthose
    who'd like to look at it.
    TIA,
    Prashanth
    ÿþ<Prashahth: your attachment seems to have disappeared somewhere.
    For some reason, my web applications didn't know how to serve plain
    HTML, so I added
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    to my web.xml, and it worked.
    I find this behaviour quite strange, since the manual says that the
    mappings defined in weblogic.properties should propagate to web
    applications.
    Regards,
    Björn Brenander[web.xml]

  • Proxy 3.6 and Mime-types

    Hi,
    I need to block more mime-types than are defined in the mime.type file
    of the proxy-server. Does anybody know a list with mime-types that I can
    simply cut and paste into the file instead of defining them all myself?
    Any suggestion would be much appreciated.
    Many thanks,
    MJ

    I have the problem as well.

  • Safari and MIME type "application/x-mplayer2"

    When trying to listen to web pages conatining mp3 audio files (prior to purchasing them) , Safari comes up with a message saying that MIME type “application/x-mplayer2” is not installed and only downloads the html file and not the mp3 file. When we check on our installed plug-ins in Safari, MIME type “application/x-mplayer2” has been installed.
    How do we fix this? We are using Safari Version 2.0.2 (416.12) OSX 10.4.3. It works on one of our older machines running Safari Version 1.3.1 (v312.3.3) OSX 10.3.9
    Regards,
    Peter

    Nevermind. I answered my own question. Seek and you shall find. http://www.apple.com/safari/download/plugins.html I just had to DL the WMV plug in. All better.

  • Evince and mime types

    Since the last update of evince to 0.83 it won't open pdf files no more - I get:
    Unable to open document
    Unhandled MIME type: "application/pdf"
    Is this a bug?
    I can open pdfs using kpdf or kghostview without a problem.

    This one seems to be back, newest version.
    $ pacman -Qi evince
    Name : evince
    Version : 2.22.2-2
    URL : http://www.gnome.org
    Lizenzen : GPL
    Gruppen : gnome-extra
    Stellt bereit : Nichts
    Hängt ab von : libspectre>=0.2.0 gsfonts poppler-glib>=0.8.3
    libdjvu>=3.5.20 gnome-icon-theme>=2.22.0 t1lib
    libglade>=2.6.2 gnome-keyring>=2.22.2
    shared-mime-info
    Optionale Abhängigkeiten: Nichts
    Benötigt von : Nichts
    Konflikt mit : Nichts
    Ersetzt : Nichts
    Installationsgröße : 4696,39 K
    Packer : Unknown Packager
    Architektur : i686
    Erstellt am : So 08 Jun 2008 16:19:28 CEST
    Installiert am : So 29 Jun 2008 19:09:16 CEST
    Installationsgrund : Ausdrücklich installiert
    Installations-Skript : Ja
    Beschreibung : Simply a document viewer
    EDIT: Rolling your own as suggested by phorgan1 worked, again.
    Last edited by Captain Spaulding (2008-06-29 17:17:03)

  • No video with supported format and mime-type found firefox 20 windows 7 and mac os 10.8.3

    This code work in explorer, crome, omniweb and safari but not in firefox. I have also tried on other computers.
    <pre><nowiki><video width="540" height="380" poster="../image/min_släkt.png" controls="controls" >
    <source src="../film/mata_in.webm" type="video/webm"/>
    <source src="../film/mata_in.mp4" type="video/mp4"/>
    <source src="../film/mata_in.ogg" type="video/ogg"/>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="540" height="380" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=../film/infoga_bild&amp;autoPlay=false&amp;autoRewind=true" />
    <param name="swfversion" value="8,0,0,0" />
    <!-- Den här parametertaggen uppmanar användare med Flash Player 6.0 r65 eller senare att hämta den senaste versionen av Flash Player. Ta bort den om du inte vill att användare ska se uppmaningen. -->
    <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
    <!-- Nästa objekttagg är för webbläsare som inte är IE. Dölj den för IE med hjälp av IECC. -->
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="540" height="380">
    <!--<![endif]-->
    <param name="quality" value="high" />
    <param name="wmode" value="opaque" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=../film/infoga_bild&amp;autoPlay=false&amp;autoRewind=true" />
    <param name="swfversion" value="8,0,0,0" />
    <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
    <!-- Webbläsaren visar följande alternativa innehåll för användare med Flash Player 6.0 eller äldre. -->
    <div>
    <h4>Innehåll på den här sidan kräver en nyare version av Adobe Flash Player.</h4>
    <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Hämta Adobe Flash Player" /></a></p>
    </div>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
    </video></nowiki></pre>
    Is there anyone who can explain what I do wrong?

    Cor-el you can try: peterahs.se/test/login.php
    it's no problem to show the film when I put the page outside the protected area, and it's exactly the same code as the page that is password protected. ???
    The protected area is to address http://www.distanskurs.net/Slaktforskning/klass1/Dokument/lektion2_doc.php
    user and password are test8

Maybe you are looking for

  • Need advice on Office 2013 Corrupt Install

    A client of mine recently purchased, downloaded and installed MS Office 2013 Home and Business. The installation didn't work correctly from the first use. He opened Outlook the first time to have it crash repeatedly. As well as all the other correspo

  • Storing carriage return and other special characters in a TestStand variable and passing to LabVIEW

    I am using TestStand step to call a LabVIEW VI that writes commands to a serial device.  The device expects a carriage return at the end of the command.  I can create a constant string in TestStand with the carriage return, e.g., "ATA\x0D" and pass t

  • Can't update song info in itunes

    I keep my iTunes library on an external drive and recently had to replace the hard drive in my PC, at the same time I upgraded from Vista to Windows 7. Now I can't update any of the information on the songs which were already on the external drive. A

  • Printing to PDF opens the File

    I recently upgraded to Adobe X.  Every time I print a file (from Excel, Outlook, Word, etc.) to PDF, Adobe opens the new file. I'd prefer it just save the file as generally I don't need it open and am spending a lot of time waiting for it to open jus

  • How display more error messeges in BSP

    Hi all, I want to diplay more error messeges in BSP. I'm working in the extention standar class CL_CRM_BSP_PM_GENERIC_1O in the method IF_CRM_BSP_PROCESS_IL~CHECK_BEFORE_SAVE with the following parameters:   ls_message-msgid = 'ZGIVAUDAN'   ls_messag