ZipOutputStream creates invalid zip

I am using ZipOutputStream, and it is creating invalid zip files. The problem is, it is inserting extra bytes into the data, always between the LOC entry and the data for the file. The extra bytes cause the affected file to be unrecoverable.
These extra bytes are also not accounted for in the 'written' count, so the end-of-archive directory has offsets that don't point at valid LOC entries. Sometimes unzip can recover from this, and sometimes not. The result is, only a subset of files in the zip can be unzipped.
I am able to remove the extra bytes using 'dd', and then the file unzips correctly.
I've stepped through the code in the debugger, and can't find any reason why they should be present. I suspect the Deflater's JNI native code. (It occurs in deflated files, I am not using 'store'.) It occurs regardless of compression level.
This may or may not be relevant, but the bytes always seem to be a repeating pattern of 0x0a090909.
This problem occurs in Java 1.5.0_07, 1.5.0_14, and 1.6.0_03.

Here is an example error message coming from 'unzip' for one of these files:
Archive:  export.zip
warning [export.zip]:  2 extra bytes at beginning or within zipfile
  (attempting to process anyway)
file #1:  bad zipfile offset (local header sig):  2
  (attempting to re-compensate)...
  inflating: Test Results for test4/4._Test_Results_for_00Kris/4.3._Test_Results_for_Routing_Robot_1237/4.3.1._Component_Description/contents.txt 
  error:  invalid compressed data to inflate
file #20:  bad zipfile offset (local header sig):  4633
  (attempting to re-compensate)And, here is a hexdump of an affected part of the file. The extra bytes follow "contents.txt". This trashes the file data, and pushes the LOC for the next file 4 bytes later than the directory thinks it should be.
And, incidentally, this occurs consistently for the same files every time.
000010f0  59 b3 4f 7d 00 00 00 ec  00 00 00 50 4b 03 04 14  |Y�O}...�...PK...|
00001100  00 08 00 08 00 da 2e 8b  37 00 00 00 00 00 00 00  |.....�..7.......|
00001110  00 00 00 00 00 86 00 02  00 2e 2f 54 65 73 74 20  |........../Test |
00001120  52 65 73 75 6c 74 73 20  66 6f 72 20 74 65 73 74  |Results for test|
00001130  34 2f 34 2e 5f 54 65 73  74 5f 52 65 73 75 6c 74  |4/4._Test_Result|
00001140  73 5f 66 6f 72 5f 30 30  4b 72 69 73 2f 34 2e 33  |s_for_00Kris/4.3|
00001150  2e 5f 54 65 73 74 5f 52  65 73 75 6c 74 73 5f 66  |._Test_Results_f|
00001160  6f 72 5f 52 6f 75 74 69  6e 67 5f 52 6f 62 6f 74  |or_Routing_Robot|
00001170  5f 31 32 33 37 2f 34 2e  33 2e 31 2e 5f 43 6f 6d  |_1237/4.3.1._Com|
00001180  70 6f 6e 65 6e 74 5f 44  65 73 63 72 69 70 74 69  |ponent_Descripti|
00001190  6f 6e 2f 63 6f 6e 74 65  6e 74 73 2e 74 78 74 00  |on/contents.txt.|
000011a0  00 0a 0a 3d cb 31 0e c2  30 0c 46 e1 dd a7 f8 25  |...=�1.�0.F����%|
000011b0  16 3a 24 12 90 0b 54 b0  b0 f5 0a 51 62 a8 d5 e2  |.:$...T���.Qb���|
000011c0  44 89 55 ae 4f 61 60 7b  c3 f7 82 bf f8 93 c7 b5  |D.U�Oa`{��.��.��|
000011d0  bc 6a 51 56 c3 8d 7b 6a  52 4d 8a e2 78 a8 6b 54  |�jQV�.{jRM.�x�kT|
000011e0  67 dc 2d b8 b3 0b 5f 3b  10 8d 48 7f fe 28 0d 9d  |g�-��._;..H.�(..|
000011f0  35 8b 3e b1 c5 55 32 ee  13 6a 4c 0b 5b c7 5b 6c  |5.>��U2�.jL.[�[l|
00001200  de ad 5a 93 8d f3 af f6  87 88 3e 50 4b 07 08 7f  |��Z..���..>PK...|
00001210  b1 bc fc 68 00 00 00 76  00 00 00 50 4b 03 04 14  |���h...v...PK...|

Similar Messages

  • Need help in creating a Zip archive through Java

    I need some files existing a folder.
    When I use ZipOutputStream to zip the files, do I need to give the entire path to each of the files to add the file to the zip archive?
    For example here is the folder structure.
    C:
    ->Folder1
    ---->Folder2
    ------>File1
    ------>File2
    ---->File3
    ---->File4
    Here should I pass the entire path of Each file to the ZipOutputStream?
    Can any one please give me an example of creating a zip archive of the above file structure.
    Thanks,
    Ramesh

    Hi,
    I atleast need the following:
    I want to add a file "pres.txt" to an existing zip archive "test..zip". This file "pres.txt" already exists in the zip archive, but is a modified one.
    Can any one please help.
    Thanks,
    Ramesh

  • Creating a zipped file from table data

    I am currently extracting data from a table and creating a flat file which is read later to create a compressed (zip) file.
    Is there a way that I can create a zipped file in one step (i.e. directly from the table data)? I am trying to reduce the number of file i/o hits in my appication.
    Thanks,
    Minesh

    Is there a way that I can create a zipped file in one step (i.e. directly from the table data)?Yes. Instead of doing something like:
    FileOutputStream fout = new FileOutputStream("flatfile");
    // write using foutdo this:
    ZipOutputStream zout = new ZipOutputStream("flatfile.zip");
    zout.putNextEntry(new ZipEntry("flatfile"));
    // write using zout

  • Create a zip files in a special way

    Dear all,
    Following my yesterday's posting, I would clarify my questions:
    I successfully created a zip file which contains a folder structure and two files from strings. See attached codes.
    However, I don't like the way that I physically created subfolder and files before add them to the zip file.
    Is there any possibility to avoid that part of creating multiple folders?
    Regards.
    Pengyou
    package com.zip.test;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    public class ZipTest {
         static final int BUFFER = 2048;
         public static void main(String argv[]) {
              try {
                   BufferedInputStream origin = null;
                   FileOutputStream dest = new FileOutputStream("mytest.zip");
                   ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(
                             dest));
                   // out.setMethod(ZipOutputStream.DEFLATED);
                   byte data[] = new byte[BUFFER];
                   try {
                        String strManyDirectories = "root/dir1/dir2";
                        // Create multiple directories
                        boolean success = (new File(strManyDirectories)).mkdirs();
                        if (success) {
                             System.out.println("Directories: " + strManyDirectories
                                       + " created");
                        File outputFile = new File("root/dir1/dir2/test.html");
                        BufferedWriter bufferedWriter = new BufferedWriter(
                                  new FileWriter(outputFile));
                        bufferedWriter.write("Hello, Test");
                        bufferedWriter.close();
                        File outputFile1 = new File("root/dir1/dir2/test1.html");
                        BufferedWriter bufferedWriter1 = new BufferedWriter(
                                  new FileWriter(outputFile1));
                        bufferedWriter1.write("Hello, Test1");
                        bufferedWriter1.close();
                   } catch (IOException e) {
                   String files[] = { "root/dir1/dir2/test.html",
                             "root/dir1/dir2/test1.html" };
                   for (int i = 0; i < files.length; i++) {
                        System.out.println("Adding: " + files);
                        FileInputStream fi = new FileInputStream(files[i]);
                        origin = new BufferedInputStream(fi, BUFFER);
                        ZipEntry entry = new ZipEntry(files[i]);
                        out.putNextEntry(entry);
                        int count;
                        while ((count = origin.read(data, 0, BUFFER)) != -1) {
                             out.write(data, 0, count);
                        origin.close();
                   out.close();
              } catch (Exception e) {
                   e.printStackTrace();

    pengyou wrote:
    But I did not understand how to convert a String to ZipOutputStream with a user choosen file name and a user choosen folder structure.
    I am blocked at that point. Sorry for repeating the same question.
    That doesn't make sense to me. Even more so as your sample code suggests that you are familiar with Writer and ZipEntry concepts. Can you explain in detail where you are stuck or what part of my previous suggestion was unclear to you?
    Scratch that, I think I finally understand your problem. I think the following sample code will get you on track:import java.util.zip.ZipOutputStream;
    import java.util.zip.ZipEntry;
    import java.io.FileOutputStream;
    import java.io.BufferedWriter;
    import java.io.OutputStreamWriter;
    public class ZipTest {
        public static void main( String[] args ) throws Exception {
            final String[] content = {"bla", "blubber"};
            final String[] names = {"root/content1/c1.txt", "root/content2/c2.txt"};
            final String path = System.getProperty("user.home") + "/test.zip";
            ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(path));
            BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(zos, "UTF-8"));
            for (int i = 0; i < content.length; ++i) {
                final ZipEntry entry = new ZipEntry(names);
    zos.putNextEntry(entry);
    bw.write(content[i]);
    bw.flush();
    zos.closeEntry();
    // this will close zos, too
    bw.close();
    Edited by: thomas.behr on Apr 22, 2009 4:10 PM

  • Problem with creating a ZIP file

    I have a program that uses java.util.zip to zip all the files in a user's directory (aproximately 7 files totalling 2 MB). When the files are extracted later using WinZip or a similar tool, the files appear to be the same (same file size & date), but they can not be opened by the program that uses them. When I use a binary diff tool to compare the before zip and after zip files, it shows about 20 random bytes that have changed. Anybody else seen this occur?
    Thanks

    Hi,
    I am successfull in putting all the files of a
    directory in a newly created ZIP file. But if my
    directory has a sub-directory, it's not workin....m
    not able to zip it properly. I mean, my program is
    doin it withour error but when i try to open it using
    WinZip...it's giving me an error sayin as not a proper
    archive...
    Do anyone have faced this problem??
    GauzYou need to call the following functions of ZipOutputStream after completing zipping in your code ?
         objZipOutputStream.finish();
         objZipOutputStream.close();Also for every file being zipped, you should to call
    objZipOutputStream.closeEntry()to close that zipEntry.
    Hope this helps.

  • When trying to restore an iCloud backup, I receive the error message "Appe-ID cannot be created. invalid device while updating mme delegate account".

    After a complete crash of my iPad 3 (WIFI only) because of updating to iOS 7.03, I try to restore my config from iCloud.
    I managed to get into the settings assistant and enter my Apple-ID (which is valid as checked via iTunes).
    But then I see the error message "Apple ID cannot be created - invalid device while upgrading mme delegate account".
    I have no clue what the mme delegate account is but need my data back.
    Any suggestions?

    All you need to do is restore the iphone in itunes as new
    and then set up as new
    after this is done
    then you can restore from itunes back up with out any error!!
    -Johnny

  • Apex 3.1.2.00.02 creates invalid export file (that gives ORA-20001 error)

    Hi
    I want to let you know, that sometimes APEX 3.1.2.00.0 creates invalid export file.
    Older apex 3.0 created correct file.
    For example: our application has page button, where "Optional URL Redirect" is:
    Page: &APP_PAGE_ID.
    Request: FLOW_XMLP_OUTPUT_R11531800061044170_et
    If we export application into file f110.sql and try to import it to the same workspace on the same server, we get error:
    {color:#0000ff}ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 28, column 111: PLS-00103: Encountered the symbol "_" when expecting one of the following: ) , * &amp; | = - + &lt; / &gt; at in is mod remainder not rem =&gt; .. &lt;an exponent (**)&gt; &lt;&gt; or != or ~= &gt;= &lt;= &lt;&gt; and or like LIKE2_ LIKE4_ LIKEC_ as between from using || multiset member SUBMULTISET_ The symbol &a
    {color}In exported f110.sql file the invalid section is:
    {color:#0000ff}wwv_flow_api.create_page_branch(
    p_id=&gt;11762805016890347 + wwv_flow_api.g_id_offset,
    p_flow_id=&gt; wwv_flow.g_flow_id,
    p_flow_step_id=&gt; 4,
    p_branch_action=&gt; 'f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:FLOW_XMLP_OUTPUT_R'||to_char({color}{color:#0000ff}{color:#ff0000}*10255206661122183_et*{color}+wwv_flow_api.g_id_offset)||':&DEBUG.:::',
    p_branch_point=&gt; 'AFTER_PROCESSING',
    p_branch_type=&gt; 'REDIRECT_URL',
    p_branch_when_button_id=&gt;11761415275883875+ wwv_flow_api.g_id_offset,
    p_branch_sequence=&gt; 10,
    p_branch_comment=&gt; 'Created 20-JUUNI-2008 12:05 by XXXX');{color}
    If we exported the same application in apex 3.0, this section was correct:
    {color:#0000ff}wwv_flow_api.create_page_branch(
    p_id=&gt;11762805016890347 + wwv_flow_api.g_id_offset,
    p_flow_id=&gt; wwv_flow.g_flow_id,
    p_flow_step_id=&gt; 4,
    p_branch_action=&gt; 'f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:FLOW_XMLP_OUTPUT_R*10255206661122183_et*:&DEBUG.:::',
    p_branch_point=&gt; 'AFTER_PROCESSING',
    p_branch_type=&gt; 'REDIRECT_URL',
    p_branch_when_button_id=&gt;11761415275883875+ wwv_flow_api.g_id_offset,
    p_branch_sequence=&gt; 10,
    p_branch_comment=&gt; 'Created 20-JUUNI-2008 12:05 by XXXX');{color}
    Best Regards,
    T&otilde;nu

    Thanks for pointing that out. We'll fix it. It does appear though, that in 3.0, the offset would not be added to the number part of the request value, so if you installed the application as a different application ID or into a different workspace, the request would have failed.
    Scott

  • Extension for creating a zip file and unzipping it

    Iam totally new to Dreamweaver and the extensions. So please
    help me with this.
    Assuming i have a .zip file and it contains some html pages
    along with css and gifs.
    The req is to have an Import option, which given this zip
    file, can unzip its contents. The user can work on these html
    pages. When the user finishes working on them, I need an export
    button so that we can package the entire stuff back into a zip
    file.
    How can i implement this ?
    Is there any extension that is available for this ?
    Eagerly looking forward to some useful answers...
    Thanks in advance,
    Ganesh

    There used to be one .. I'm not sure if that was in DMX time
    or DMX 2004
    time .. that, when installed, allowed you to select files
    from the site
    folder or the whole thing and create a zip from them. I don't
    remember what
    it was called or who created it .. but it might be on one of
    my archived
    disks or zips .. I'll try to check it out later today.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Ganesh Ram" <[email protected]> wrote in
    message
    news:engarc$d62$[email protected]..
    > Iam totally new to Dreamweaver and the extensions. So
    please help me with
    > this.
    >
    > Assuming i have a .zip file and it contains some html
    pages along with css
    > and
    > gifs.
    > The req is to have an Import option, which given this
    zip file, can unzip
    > its
    > contents. The user can work on these html pages. When
    the user finishes
    > working on them, I need an export button so that we can
    package the entire
    > stuff back into a zip file.
    >
    > How can i implement this ?
    > Is there any extension that is available for this ?
    >
    > Eagerly looking forward to some useful answers...
    >
    > Thanks in advance,
    > Ganesh
    >
    >

  • How do I display an invalid zip code in a summary table

    On my airshow website we have a feedback form, one of the questions is the zipcode where the visitor came from. This works fine. The summary results tab includes a lookup for the zipcode where I show the city associated with the zipcode and then how many responses came from that zipcode. This can be seen here http://www.hollisterairshow.com/feedback-results.php?tab=7
    In testing, I found that an invalid zipcode is not displayed in the summary table, although it is counted in the total number of responses. I'd like to display the invalid zipcode and leave the City blank, or maybe put "Invalid zip code". The current code is displayed below, it's beyond my ability to figure out how I should change it to display invalid zipcodes and I'd really appreciate some direction on this.
    I know I could validate the zipcode on entry but it's quite possible the zipcode table I have is out of date and i can't find a free downloadable list, so I'm thinking anything invalid could cause me to update my table.which is fine.
    Thanks for any assistance.
    Tony
    <div class="TabbedPanelsContent">
    <?php
    // Make a MySQL Connection
    $query = "SELECT feedback.zip, COUNT(feedback.zip), zipcodes.citystate FROM feedback, zipcodes WHERE feedback.zip = zipcodes.zipcode GROUP BY feedback.zip";
    $result = mysql_query($query) or die(mysql_error());
    // Print out result
    while($row = mysql_fetch_array($result))
    echo $row['zip']. " ". $row['COUNT(feedback.zip)']. " ". $row['citystate'];
    echo "<br />";
    ?>
    </div>

    Use an outer join on the two tables so that results are returned for all feedback rows, instead of just matching rows. The column zipcodes.citystate will be NULL. In your recordset output, you can test for null in the column and populate it with "Invalid Zipcode" if you want.
    You'll need to move the join to the FROM clause as I believe that MySQL does not support outer joins in the WHERE clause like most other DBMS's.

  • Error creating appsutil.zip on RHEL5

    Hi all,
    I want to configure autoconfig follow link : http://www.in-oracle.com/Oracle-Apps/11i/migrate-autoconfig-DB.php
    but I have a problem when create appsutil.zip file. when i run
    "$perl $AD_TOP/bin/admkappsutil.pl" i got this error "environment not set. Please source the Applications environment" even i have set application environment by script "$./APPSORA.env" before.
    Any idea what am I missing?
    Thanks,

    "$perl $AD_TOP/bin/admkappsutil.pl" i got this error "environment not set. Please source the Applications environment" even i have set application environment by script "$./APPSORA.env" before.
    Any idea what am I missing?You are missing sourcing the env file which is mentioned above -- Please run this env file before you issue the perl command.
    Thanks,
    Hussein

  • Problems creating/extracting ZIP files, anyone?

    Greetings,
    I am having some odd bugs with OSX in creating and extracting ZIP files.  I’m curious if anyone else has run across this or if anyone has any remedies to suggest.
    The issue is that when I extract a ZIP archive, the extracted files have their creation dates and modification dates changed from the original versions.  For example, I have a directory created in 2010 and all the files were created and last modified in 2010.  However, when I ZIP the directory and re-extract it, many of the file dates change.  Some files have the creation dates changed so to match the last modified date.  In other cases, both the creation date and modification date are changed to something later than both, perhaps the date the directory was ZIPed or the date the directory was extracted.  And some files don’t seem to have the dates changed. 
    I have tried various options, such as terminal, and third party programs (BetterZip, Keka, Stuffit, & Archiver to name a few) and they all seem to have some variation of this behavior.  I have tried creating the Zip with one program and extracting with the other, and still this behavior persists.  Different files seem to be affected with each combination of creating and extracting programs. 
    Another odd behavior was that I tried password protecting some directories with financial data, and OSX could create the ZIP file with the password, but OSX could not unzip the file with the password it created for some files.  In every case, third party program could unzip the files with the password created in the terminal command.  This seem to happen inconsistently. 
    I have tried creating a dummy account and tested it in that account, with similar results.
    I’ve read the man page for the command line version of ZIP to see if there is some -option to preserve dates, but found nothing.  The typical command looks like this:
    > zip -er filename.zip  sourceDir
    > unzip filename.zip
    File types include directories, PDFs, Text docs, Quicken files.  Ive tested other directories too with other file types.  It doesn’t seem to affect every file, but seems unpredictable.  Luckily, I still have the original uncompressed version of most directories.  But I really want to archive some directories and unarchive them when needed.  The dates matter to me because they are mostly financial files and I use the dates to know what versions were used for taxes and other things.  Also, if dates change, then backup programs start replacing the good backups with files with the corrupted dates. 
    I’d appreciate any suggestions or feedback.  I there some bug in the ZIP protocol?  Is there some bug in OSX file system that is corrupting the dates with the archive and unarchive process? 
    Thank you for any suggestions-
    OSX 10.9.5,
    MBPro 2012

    OK, sorry did not read it correctly.  Read the first sentance and quit.
    No, Bridge is just a browser.  You can extract more than one file at a time in Win. Explorer.  You have to do them individually, but can run multiple extractions at the same time.
    There are other zip/unzip programs out there.  I know the the CS6 beta a number of users could not open it with WinZip and used alternate product just fine.

  • How to create a zip file whith passwprd ?

    Hi Im trying to create a zip file using the java zip support, the zip file is being created correctly now I have one doubt I would like to know if the zip file can be protected with a password as Winzip does, if so could you tell me please how to do it.
    Regards,
    Antonio
    [email protected]

    With Core Java, for all I know you still can't.

  • Invalid zip code

    first it started with an invalid security code i plugged in my info again and then it changed to invalid zip code

    Welcome to the Apple Community.
    Credit card security code or postcode issues.

  • Encore cs4 creates invalid disc image (iso file)

    I have a video I edit in premiere cs4, exported an .mpg file that I import into encore to create a DVD. This works mostly fine (I have to delete the .xmp* file before importing to encore).
    Today I edited the video, re-encoded the mpg file using quality 5 and 2 pass vbr, and added a slide show (about 6 photos) to the encore project. It also builds fine to a disc image (iso file). But when I try to burn the iso file using windows 7, it tells me the iso image is invalid. I tried imgburn and got an  error message like this:
    session 1 track 1 MODE1 .... 2054
    dvd format: MODE1 .... 2048
    If I ask imgburn to continue it then says something about CSS and encryption, which I don't use, so I assume the iso file is too messed up.
    I burned a DVD5 directly from encore, and it works in a dvd player.
    Any idea why this invalid iso happens and whether there is a work-around?
    Since cs4 is not the latest version, I assume there is no hope of bug fix?

    There seem to be major problems in the disc creation process. I am struggling since several days now and I am not able to produce a working Blu-Ray Disk or iso image with Encore 5.5:
    - when producing Blu-Ray ISO images, you get an ISO that is recognized as DVD iso in all virtual drive programs. Therefore, you cann not burn them on a BD-R disc, also viewing them is not possible because it is a "DVD with blu-ray content".
    - when burning directly to disk, Encore does not close the sessing. This means, the Disk is not playable on all home Blue-Ray players. It was playable on my computer, but after closing the session manually the disc was a coaster.
    - when burning on a virtual burner (Virtual CD 10), the Blue-Ray plays ok on my computer, but I am NOT able to make a ISO image from this disk because some errors (unreadable blocks) on the disk are reported during creation and image creation stops.
    - from time to time (not reproduceable), Encore produces an additional AACS folder on the created Blu-Ray.
    I am an experienced user and dont have any issues with other software solutions, but with Encore I was not able to get any usable results so far.
    Win 7 x64 SP1

  • How can I create a zip file with LabVIEW?

    I would like to compress my data (ASCII format) to an archive.
    I use LVZlib.vi to compress and decompress data but I would like to be able to read the output file with a software archiver such as PowerArchiver/WinZIP.
    Someone knows how I can create a file compatible with zip or gz standard format, thanks !

    >> Yes but I have to install a special archiver (with ms-dos ommand line ability
    >> such as pkzip,arc,rar,arj...) on the computer where I install my LV application.
    Search for "gnu tools for windows" and get zip.exe, gzip.exe, bzip2.exe and others (even the source, if you like). These are about 50kB files that run in place (no installation) - easy to include in a distributed app. Oh, since I'm logged in I'll attach a couple, though I don't have the source on this machine).
    Attachments:
    bin.zip ‏67 KB

Maybe you are looking for

  • SAPinst_INSTDIR not found (INSATALLATION ERROR)

    Hi I am installing SAP 4.7(IDES) on windows 2003/ sql 2000. Central Instance(CI) was successfully installed. 1) SAPinst_INSTDIR file is not found in c:\Program files. 2) I manually given the full control to \usr directory after pop-up raised as ACCES

  • How to create a Login window banner in OS X Mountain Lion

    This was answered in a support post for OS X Lion. http://support.apple.com/kb/HT4788 however the /Library/Security folder does not exist in OS X Mountain Lion. The solution for Mountain Lion is very simple. Create the folder. 1. Open Finder 2. Click

  • Regarding resizing of browser window

    Hi,   I am working on getting my UI to resize accordingly if the user resizes their browser window on the desktop. I know how it is done using css and using javascript, but what I want to know is if there is any SAPUI5 specific functionality to suppo

  • Continue button after failure result

    Hello, I want to set the quiz to make the student review the course before retaking the quiz, so I have set off the 'retake quiz' button, set the "failure" setting to jump to slide starting the course. So, continue button on the results slide jumps t

  • Should I get a replacment on my macbook 2?                       NOT A POLL

    This post was deleated i guess because people thought it was a poll, but is ISNT! Should I get a replacment because my: -Arrow keys dont work quite right -Remote sometimes doesnt work -Clicking sound on both right and left sides -MegSafe sometimes wo