Problems with downloading to a TXT file

I have a procedure that when called creates a .txt file, which is used as a download to another application.
If I run my procedure, the txt file is created, but when I look at the file, it contains the required records, but also information on the page.
See below.

My code is
create or replace PROCEDURE mer_fuel_coupon_download_1 IS
  --

CURSOR c_fuel_coupon IS
  
SELECT A.VIN,
    A.FIRST_BFG,
    F.DRIVER_POSITION,
    A.BFG_NO,
    C.MAKES MAKE,
    D.MODEL,
    A.FRG_NO,
    E.COLOUR,
    A.MANUFACTURED_DATE MANUFACTURED,
    A.DEREG_ON,
    A.OTHER_VRN NON_BFG_REG_NO,
    B.VALID_FROM,
    B.VALID_UNTIL,
    'Not Held Anymore' UNREG_FROM,
    'Not Held Anymore' UNREG_TO,
    G.FUEL_TYPE,
    A.CC,
    A.FUEL_RATION,
    H.PERSONAL_NO,
    I.RANK,
    H.FIRST_NAME,
    H.SURNAME,
    'Not Held Anymore' HEAD_OF_FAMILY,
    J.UIN,
    TO_DATE(H.DATE_OF_BIRTH,'DD-MON-YY') DATE_OF_BIRTH,
    J.UNIT_NAME,
    K.BFPO,
   -- A.ITEM_ID
    ROWNUM
  FROM MER_IMPORTED_ITEMS A,
       MER_VEHICLE_OWNERSHIPS B, 
       MER_MAKES C, 
       MER_MODELS D,
       MER_COLOURS E,
       MER_DRIVER_POSITION F,
       MER_FUEL_TYPE G,
       MER_PERSONS H,
       MER_RANKS I,
       MER_UNITS J,
       MER_BFPO K
  WHERE H.PERSONAL_ID(+) = B.PERSONAL_ID 
  AND B.ITEM_ID(+) = A.ITEM_ID
  AND C.MAKE_ID(+) = A.MAKE_ID
  AND D.MODEL_ID(+) = A.MODEL_ID
  AND E.COLOUR_ID(+) = A.COLOUR_ID
  AND F.DRIVER_POSITION_ID(+) = A.DRIVER_POSITION_ID 
  AND G.FUEL_TYPE_ID(+) = A.FUEL_TYPE_ID
  AND I.RANK_ID(+) = H.RANK_ID
  AND J.UNIT_ID(+) = H.UNIT_ID
  AND K.BFPO_ID(+) = J.BFPO_ID
  AND A.BFG_NO IS NOT NULL
  AND (A.DEREG_ON IS NULL
  OR A.DEREG_ON    > (SYSDATE - 1826));

  --
  --
  line_of_data VARCHAR2(5000);
  --
  dir_prob         EXCEPTION;
  file_write_done  EXCEPTION;
    --
  record_ct        NUMBER(6) :=0;
  output_file      VARCHAR2(12) := 'FUEL.TXT';
  target_file      utl_file.File_Type;
  --
  success_ct       NUMBER(6) :=0;
  fail_ct          NUMBER(6) :=0;

BEGIN
-- Set MIME type
owa_util.mime_header( 'application/octet', FALSE );
-- Set name fo file
htp.p('Content-Disposition: attachment; filename="FUEL.TXT"');
-- Close the HTTP header
owa_util.http_header_close;
--
  --
BEGIN
FOR r_fuel IN c_fuel_coupon
    LOOP
     BEGIN
line_of_data := r_FUEL.VIN||','
||TO_CHAR(r_FUEL.FIRST_BFG,'DD/MON/YY')||','
||r_FUEL.DRIVER_POSITION||','
||r_FUEL.BFG_NO||','
||r_FUEL.MAKE||','
||r_FUEL.MODEL||','
||r_FUEL.FRG_NO||','
||r_FUEL.COLOUR||','
||TO_CHAR(r_FUEL.MANUFACTURED,'DD/MON/YY')||','
||TO_CHAR(r_FUEL.DEREG_ON,'DD/MON/YY')||','
||r_FUEL.NON_BFG_REG_NO||','
||TO_CHAR(r_FUEL.VALID_FROM,'DD/MON/YY')||','
||TO_CHAR(r_FUEL.VALID_UNTIL,'DD/MON/YY')||','
||r_FUEL.UNREG_FROM||','
||r_FUEL.UNREG_TO||','
||r_FUEL.FUEL_TYPE||','
||r_FUEL.CC||','
||r_FUEL.FUEL_RATION||','
||r_FUEL.PERSONAL_NO||','
||r_FUEL.RANK||','
||r_FUEL.FIRST_NAME||','
||r_FUEL.SURNAME||','
||r_FUEL.HEAD_OF_FAMILY||','
||r_FUEL.UIN||','
||TO_CHAR(r_FUEL.DATE_OF_BIRTH,'DD/MON/YY')||','
||r_FUEL.UNIT_NAME||','
||r_FUEL.BFPO||','
--||r_FUEL.ITEM_ID||','
||r_FUEL.ROWNUM||','
|| CHR(13)||CHR(10);

--
htp.prn(line_of_data);


success_ct := success_ct + 1;

EXCEPTION
WHEN no_data_found THEN
          RAISE file_write_done;
        --
        WHEN others THEN
          fail_ct := fail_ct + 1;
 END;
    END LOOP;


END;
END;
At the end of the txt file, I see information like this
<head>
<title>Fuel Coupon Download</title>
<link rel="stylesheet" href="/i/themes/theme_20/theme_3_1.css" type="text/css" />
<link rel="stylesheet" href="/i/bfg_css/j6.css" type="text/css" />
<script type="text/javascript" src="/i/bfg_javascript/jquery/jquery-1.3.2.js"></script>
<link rel="stylesheet" href="/i/bfg_javascript/jquery/jqueryui/themes/redmond/jquery-ui-1.7.2.custom.css" type="text/css" />
<script type="text/javascript" src="/i/bfg_javascript/jquery/jqueryui/jquery-ui-1.7.2.custom.js"></script>
<script type="text/javascript" src="/i/bfg_javascript/j6_javascript.js"></script>
<!--[if IE]><link rel="stylesheet" href="/i/themes/theme_20/ie.css" type="text/css" /><![endif]-->
<style>
* {font-size: 10pt;font-family: Tahoma,Arial,Helvetica,Geneva,sans-serif};
</style>

<script src="/i/javascript/apex_ns_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_get_3_1.js" type="text/javascript"></script>
<script src="/i/javascript/apex_builder.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
/*Global JS Variables*/
var htmldb_Img_Dir = "/i/";
//-->
</script>
<link rel="stylesheet" href="/i/css/apex_3_1.css" type="text/css" />
<!--[if IE]><link rel="stylesheet" href="/i/css/apex_ie_3_1.css" type="text/css" /><![endif]-->

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body ><form action="wwv_flow.accept" method="post" name="wwv_flow" id="wwvFlowForm">
  <input type="hidden" name="p_flow_id" value="111" id="pFlowId" />  <input type="hidden" name="p_flow_step_id" value="388" id="pFlowStepId" />  <input type="hidden" name="p_instance" value="1780009464230900" id="pInstance" />  <input type="hidden" name="p_page_submission_id" value="18077377520018" id="pPageSubmissionId" />  <input type="hidden" name="p_request" value="" id="pRequest" /><div id="t20PageHeader">
<table border="0" cellpadding="0" cellspacing="0" summary="">
<tr>
<td id="t20Logo" valign="top"><span style="font-family:Arial; color:#FFFFFF; font-size:18px; white-space:nowrap; font-weight:bold;">Vehicle Licensing Office Application</span><br /></td>
<td id="t20HeaderMiddle"  valign="top" width="100%"><br /></td>
<td id="t20NavBar" valign="top"><br /></td>
</tr>
</table>
</div>
<div id="t20BreadCrumbsLeft"></div>
<table border="0" cellpadding="0" cellspacing="0" summary="" id="t20PageBody"  width="100%" height="70%">
<td width="100%" valign="top" height="100%" id="t20ContentBody">
<div id="t20Messages"></div>
<div id="t20ContentMiddle"></div>
</td>
<td valign="top" width="200" id="t20ContentRight"><br /></td>
</tr>
</table><table border="0" cellpadding="0" cellspacing="0" summary="" id="t20PageFooter" width="100%">
<tr>
<td id="t20Left" valign="top"><span id="t20UserPrompt">ADMIN</span><br /></td>
<td id="t20Center" valign="top"></td>
<td id="t20Right" valign="top"><span id="t20Customize"></span><br /></td>
</tr>
</table>
<br class="t20Break"/>
<input type="hidden" name="p_md5_checksum" value=""  /></form> 
<script type="text/javascript">
<!-- 

//-->
</script><!-- Code generated for user with developer privileges.  -->
<script type="text/javascript">
function popupInfo()
{
  w = open("f?p=4000:34:1780009464230900:PAGE:NO:34:F4000_P34_SESSION,F4000_P34_FLOW,F4000_P34_PAGE:1780009464230900,111,388","winLov","Scrollbars=1,resizable=1,width=700,height=450");
  if (w.opener == null)
     w.opener = self;
     w.focus();
}
</script><table cellpadding="0" border="0" cellspacing="0" summary="Developer Toolbar" align="center"><tbody><tr><td><a class="htmldbToolbar" href="f?p=4500:1000:1780009464230900" style="border-left:1px solid black;" title="Application Express Home">Home</a></td><td><a class="htmldbToolbar" title="Application 111" href="f?p=4000:1:1780009464230900::NO:1,4150,RP:FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid #000000;border-right:1px solid #000000;">Application 111</a></td><td><a class="htmldbToolbar" title="Edit Page 388" href="f?p=4000:4150:1780009464230900::NO:1,4150:FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388">Edit Page 388</a></td><td><a class="htmldbToolbar" href="f?p=4000:336:1780009464230900::::FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid black;" title="Create">Create</a></td><td><a class="htmldbToolbar" href="javascript:popupInfo()" style="border-left:1px solid black;" title="Session">Session</a></td><td><a class="htmldbToolbar" href="f?p=4000:14:1780009464230900::::FB_FLOW_ID,FB_FLOW_PAGE_ID,F4000_P1_FLOW,F4000_P4150_GOTO_PAGE,F4000_P1_PAGE:111,388,111,388,388" style="border-left:1px solid black;" title="Activity">Activity</a></td><td><a class="htmldbToolbar" title="Debug" style="border-left:1px solid black;" href="f?p=111:388:1780009464230900::YES">Debug</a></td><td id="hideEdit" style="display:none;"><a class="htmldbToolbar" title="Hide Edit Links" href="javascript:quickLinks('HIDE');"  style="border-right:1px solid #000000;border-left:1px solid black;">Hide Edit Links</a></td><td id="showEdit"><a class="htmldbToolbar" title="Show Edit Links" href="javascript:quickLinks('SHOW');"  style="border-right:1px solid #000000;border-left:1px solid #000000;">Show Edit Links</a></td></tr></tbody></table>
<script type="text/javascript">
   if(GetCookie('ORA_WWV_QUICK_EDIT') != null){
       if(GetCookie('ORA_WWV_QUICK_EDIT') == 'SHOW')
           quickLinks('SHOW');
   }
</script>
</body>
</html>
Can someone tell me why it is marking this information on my txt file

See you soon

Gus

Hello

before the call to the exception handler

apex_application.g_unrecoverable_error := true;

Kind regards
Jari

Tags: Database

Similar Questions

  • Problems with downloading and errors about files out of sync

    Since the 2015 upgrade I was not able to upload my web pages unless there is a major problem. The downloaded pages have their layouts all screwed up and the usual nuisances of en error: ' some files on the server may be missing or incorrect. Clear the cache of the browser, and then try again. If the problem persists please communiquer communicate with the author of the Web site, "keeps appearing. Is there a known problem for developers Adobe Muse regarding this upgrade. I tried with 'All files' downloading so "only changed files" settings and I am using the option 'transfer to the FTP host. The site is at www.odditist.com.

    Thank you.

    There is no false positive known for this warning.

    More information on the caveat is available here "some files on the server may be missing or incorrect" Warning Message>.

    I'm not encounter the error when the display of your site. It appears only for a particular page?

  • Error downloading Photoshop element 12: Arvato Berthelman - Download Manager error - unfortunately, there is a problem with the link to that file. This problem may be due to the number of users trying to download

    Error message when downloading Photoshop element 12: (I bought the license in a store)

    Berthelman arvato-

    Download Manager error-

    Unfortunately, there is a problem with the link to that file. This problem may be due the number of users trying to download the file, or the product may no longer be available. Please as minutes of a few in. If this privilege is still not available, please contact customer service at the address [email protected] or number 604-915-5200

    == > Les DEUX @ and phone number are fake!

    Hi Mireille56,

    The place where you are trying to download the software.

    [email protected] is not an email from Adobe Support.

    Please try to download Photoshop elements 12 of: http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=us&sdid=ZPQM

    Kind regards

    Rave

    < translated="" via="" google="">

    Hi Mireille56,

    Where you are trying to download the software.

    [email protected] is not an Adobe support email.

    Please try to download Photoshop elements 12 from: http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=us&sdid=ZPQM

    Kind regards

    Rave

  • How to do this: Photoviewer, Windows cannot save changes to the image due to a problem with the properties of the file!

    Hi, I'm trying to post a photo, but whenever I have try rotation to the right, it says something like: can't save changes to the image due to a problem with the properties of the file. My laptop is MS, but the photos were taken on the Iphone. How to do this?

    I don't know if the following links answer your question, but
    they may be worth a visit:

    Good luck and * proceed at your own risk *.

    FWIW... There is a very long discussion (several pages) to the
    following link:

    Cannot change the imported iPhone 4S photo
    https://discussions.Apple.com/thread/3444951?start=0&TSTART=0

    More Discussion

    iPhone 4S image properties is not compartible with Windows?
    Editing can be done on the computer due to the error
    "Windows Photo Viewer cannot save changes to this picture.
    because there is a problem with the properties of the image file".
    Any help?
    https://discussions.Apple.com/message/17291884#17291884

    More Discussion:

    We cannot turn a few photos in Windows 7 (but can turn others)
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-pictures/cant-rotate-some-photos-in-Windows-7-but-can/3a809845-9144-4BB1-9bb3-ab4f5b856524

    A simple solution is to open the photos in paint or most other
    digital image editor and modify it.

    Some people have reported success using the following free download
    to remove the metadata.

    Property restrictions stripper iphone 4S (JPEG & PNG Stripper)
    http://www.SteelBytes.com/?mid=30&cmd=download&PID=15

    Here's a way to turn...

    Easily turn locked iPhone 4 and 4 s Photos in Windows 7 with
    the rotator Lossless JPEG free
    http://www.daleisphere.com/easily-rotate-locked-iPhone-4-and-4S-photos-in-Windows-7-with-the-free-JPEG-lossless-Rotator/

    Free download JPEG Lossless rotating
    http://annystudio.com/software/jpeglosslessrotator/

  • A12E5: PROBLEM WITH DOWNLOAD CC

    A12E5: PROBLEM WITH DOWNLOAD CC

    Hi PurpleTrial,

    A12E5 is a download error. Please follow the steps:

    Windows:

    Access the Files(X86) C/Program Files/Adobe/OOBE /Common and rename it to OOBE.old.

    Task Manager open, go to process and close all Adobe services running (Acrotray, AAMUpdate Notifier) http://www.howtogeek.com/66622/stupid-geek-tricks-6-ways-to-open-windows-task-manager/ .

    Download CC Office and try to install again: https://creative.adobe.com/products/creative-cloud .

    If the problem persists what run selective startup and try to install the CC Office: http://windows.microsoft.com/en-in/windows-vista/run-selective-startup-using-system-config print .

    Mac:

    Navigate to Library/Application Support/Adobe/OOBE and rename to OOBE.old.

    Go to Applications/Utilities and trash Application Manager and creative cloud desktop folder.

    Download and install CC Office again. If the problem still persists, then restart the Mac start-up and try reinstalling: http://helpx.adobe.com/x-productkb/global/start-safe-boot-mode-mac.html .

    Kind regards

    Romit Sinha

  • Problem with downloading of applications and updates

    Hello

    I get the error when you try to download certain applications from the Mac App Store.

    And when I try to update applications.

    Here is a log from the console:

    storedownloadd [493]: * the Assertion failure in French-[CheckPreflightOperation verifyDistributionAtURL:allowsDevSign:allowsUnsigned:osVersionToBeInstalled: err or: distributionController:], /Library/Caches/com.apple.xbs/Sources/Commerce/Commerce-462.9/CommerceKit/Check PreflightOperation.m:291

    I have a month old Macbook Pro. I have no problem with downloading the applications from my old Macbook on the same network.

    What should I do?

    Hello..

    Start Safe Mode removes the system caches that can help.

    Upper left corner of your screen, click on the Apple  > Shut Down.

    After your Mac stops, wait 10 seconds, then press the power button.

    As soon as you hear the startup tone, hold down the SHIFT key. You must press the SHIFT key as soon as possible once you hear the startup tone, but not before.

    Release the SHIFT key when you see the gray Apple logo and progress indicator.

    Once you are in Mode without failure, return to the menu Apple . In the drop-down list, click: reboot


    Then try the App Store.

    On Safe Mode

  • problems with downloads

    I have this function of issues, can not download microsoft updates, cannot run the validation tool, if I try the windows update I get redirected to a blank page with the message cannot display the page or the web page of google or other, can not download my antivirus mcafee (it will only download if I call mcafee) I tried microsoft help I worked with a member of the technical support , always the same, if I try to download an antispyware software does the same thing (the page cannot...) I finally download malwarebytes antispyware with no reported problems, if I run mcafee antivirus, there is no issue reported, the worst part is the case in all my 5 computers 3 2 xp running Vista, what is the problem! I have internet through a clearwire wireless router, it is connected to a phone and then router to a linksys wireless router, which could be

    OK, I fixed my problems with downloads, here is what I got I hollow by clearwire internet a wireless modem, it is connected to a modem uta200 I got from t-mobile, so I can have the fixed telephone line, finally, is a wireless router linksys that I am connected to my desktop computer and of course I use with my laptop I tried to connect my clearwire modem direct to my computer and didn't work, then I tried to connect it to a modem, tmobile and worked but if I try to connect it to router linksys did not work so I called linksys they tried twice and failed, but has the 3rd time the technician reset the router and worked , so right now I have much internet access with no. fails all the

  • I have a windows 7 Edition licenses Home premium, still a problem with my words and exlel files.

    I use a copy of the license of windows Home premium 7, still I have a problem with my microsoft words and files, words excel files tke several minutes to open, but Excel files not not oped in my laptop, before I didn't have any problem, but now it's huge. When I ask some of them on the market, they suggested me to take the 32-bit and add 64-bit. Windows, it is the only solution for the same.

    Please suggest,
    Abhijit Gohan.
      

    Try to reinstall or repair your copy of Microsoft Office:

    How to reinstall or repair Microsoft Office : Notebooks.com

  • Problem with sound in the ProRes files on first last, CC on 10 to win

    Hello, I've updated my CC Pro first to the latest version on my Windows 10 PC. Since then, I have a problem with the sound in ProRes files recorded with recorder Odyssey 7 q. My first reads the file and it detects sound only partially (in each file it our times of 2-3 seconds of silence, followed by its normal).

    It happens only on my first on Windows. On my MacBook with the same version of first, everything works fine. Apart from the first, I play Prores files successfully on my windows (with sound).

    You know all the solutions to this problem? I tried to reinstall codec first and Quicktime on my PC. Thanks in advance for the help.

    Convergent Design and Adobe are aware of the problem and working on a fix.  You need to roll back to 2015.3 for the moment.

  • SE "There are problems with the configuration of static files in your environment" after the APEX 5 install using Oracle HTTP Server

    There is not much information in the doc around the new configuration of static file.  Someone at - it an example of this dads.conf he file should look similar to static files?  Everything else seems to work fine - it's my only hang up now.

    Thank you!

    Exact pop-up message:

    There are problems with the configuration of static files in your environment.  Please see the section "Configuration static file Support" in the Guide of the Installation Application Express

    I figured it out on my own - the doc has a section "6.5.4 configuration Support for static file" which basically said yes, it is now supported for static files, then a "see also:" link to the dads.conf section, that I'm not good enough to see there are now 2 new parameters in your dads config file...  All is ready!  It works!  YAY!

  • I have problems with downloading the Lightroom app! What is the location of the appropriate installation?

    I have problems with downloading the Lightroom app! I have already many programs Adobe works on my PC and I have a cloud of Adobe license. But now, with the installation of Lightroom, I get the following error:

    Exit code: 7

    Please see specific errors below for troubleshooting. For example, ERROR: DF014...

    -------------------------------------- Summary --------------------------------------

    -0 fatal Error (s), 1 Error (s)

    -Payload: Adobe Lightroom 6.0.0.0 {8048A5DF-8A70-5BE1-954B-E0FDE1BD0D0D}.

    ERROR: DF014: unable to create the symbolic link to ' \\XC-DC-01\Users\Patricia\... \Desktop\Adobe Lightroom.lnk "(Seq 6641).

    When I go to the solution, then it says: rerun the installation. Select a different installation location.


    But I tried to select all the other folders on my computer for the last two weeks and it still not working? Update other programs is not a problem, then I don't understand what goes wrong? What is the location of the appropriate installation? Why it changed on my computer?

    Can you help me with a solution? Thank you!

    Hello

    Please see Exit Code 7 Installing and errors ' Exit Code: 6 "," Exit Code: 7 "|"» CC, CS6, CS5.5

    Hope that helps!

    Kind regards

    Sheena

  • Problem with opening of Nikon NEF files

    Separated from this thread.

    I have the same problem with a single Nikon reflect the lens of the camera.  He said that it is a NEF file type.  And windows media player does not recognize and cannot play.  Help, please.

    Hello

    NEF files are owner of Nikon RAW format and cannot be opened in Windows Media Player.

    You have a few options, including:

    • Download and install Nikon ViewNX2 which can open NEF files.
    • Install Microsoft Camera Codec Pack which will then allow your NEF files to be perceived as file/Windows Explorer and the Windows Photo Gallery (check your camera for taking pictures is listed in the Details section, or it may not work). The links are:

    Microsoft Camera Codec Pack  (Windows Vista/Windows 7)

    Microsoft Camera Codec Pack (Windows 8.1)

    • Use the photo editing software owner (with necessary plug-ins installed if necessary) to open and edit NEF images.

    When you open an NEF image in an application, you should then be able to record it in a much more widely supported such as JPG image format. There will be a loss of quality when you do well, but still, good results can be obtained.  Once in JPG format (for example), Windows Media Player will be able to open the images.

    If you don't want to use NEF files in the future, your camera should be able to take/save directly the images in JPG format. Check the settings of your camera.

  • Error: "Canoe Photo window Viewer save the changes to this picture because there is a problem with the property of photo file" when trying to upload photos from the iPhone to the Windows Photo Viewer.

    Original title: saving photos and videos, common sense?

    JW why I can't save a picture to the top of the right way in my windows photo viewer and Media Player (same for video too) so when I download my pictures frim my iphone on the computer a few photos have been taken vertically, and when I go to put the image a gardener would come saying ' canoe photo window Viewer save the changes to this picture because there is a problem with the file of. properties of photos? What can I do to fix this?

    JW why I can't save a picture to the top of the right way in my windows photo viewer and Media Player (same for video too) so when I download my pictures frim my iphone on the computer a few photos have been taken vertically, and when I go to put the image a gardener would come saying ' canoe photo window Viewer save the changes to this picture because there is a problem with the file of. properties of photos? What can I do to fix this?

    =============================================
    I don't know if the following links answer your question, but
    they may be worth a visit:

    Good luck and * proceed at your own risk *.

    FWIW... There is a very long discussion (several pages) to the
    following link:

    Cannot change the imported iPhone 4S photo
    https://discussions.Apple.com/thread/3444951?start=0&TSTART=0

    More Discussion

    iPhone 4S image properties is not compartible with Windows?
    Editing can be done on the computer due to the error
    "Windows Photo Viewer cannot save changes to this picture.
    because there is a problem with the properties of the image file".
    Any help?
    https://discussions.Apple.com/message/17291884#17291884

    More Discussion:

    We cannot turn a few photos in Windows 7 (but can turn others)
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-pictures/cant-rotate-some-photos-in-Windows-7-but-can/3a809845-9144-4BB1-9bb3-ab4f5b856524

    A simple solution is to open the photos in paint or most other
    digital image editor and modify it.

    Some people have reported success using the following free download
    to remove the metadata.

    Property restrictions stripper iphone 4S (JPEG & PNG Stripper)
    http://www.SteelBytes.com/?mid=30&cmd=download&PID=15

    Here's a way to turn...

    Easily turn locked iPhone 4 and 4 s Photos in Windows 7 with
    the rotator Lossless JPEG free
    http://www.daleisphere.com/easily-rotate-locked-iPhone-4-and-4S-photos-in-Windows-7-with-the-free-JPEG-lossless-Rotator/

    Free download JPEG Lossless rotating
    http://annystudio.com/software/jpeglosslessrotator/

  • I need assistance with VMware Player Manifest.txt file

    I make a program of federal work with ITT Technical Institute study. Well, we have VMware Player installed on lab computers, and on a weekly basis, I have to empty the student accounts.  Well some student accounts I can't delete, I am logged in as the administrator of the Local Machine and when I try to remove most of the accounts I get the message saying that the manifest.txt file is "cannot delete manifest.txt.2: access denied."  Make sure that the disk is not full or write protected and that the file is not currently in use. »

    and see that I have clear accounts because space is limited on these machines.  I was just wondering if any 1 can help me on how to remove this file, it would be greatly appreciated and if I have this post in the wrong section will be some 1 let me know?

    Thank you

    If the boot without failure for the administrator account and not be able to delete a file under the other user account or the account itself, there is something else wrong.

    First, I make sure that no VMware not associated with the process are running which must be in Mode safe and then I would take a look at the permissions on the file and, if necessary and or possible I would take possession in order to delete the file.  Otherwise issues that may could be corruption of the file system, in which case I would run chkdsk with the argument/f or if it's just that a file could / can be an area damaged the disk hard physics so you can test the physical hard drive with a diagnostic tool specific HARD drive manufacturing.

    Other options would be to try to remove the file from the Recovery Console by booting from the installation disc or Windows using a Linux Live OS like Slax.

    BTW is this topic on the host or guest?  If in a guest I just delete the virtual machine and replace it from a backup and if it is on the host computer, then this is not really a matter of VMware itself and it is more a problem of Windows Administration and must be treated accordingly from the point of view of the user account and or file system management regardless of the application that created the file and act accordingly.

  • Problems with downloading Adobe Muse CC

    Hello

    Installed CC Installer, paid for a year, downloaded Adobe Muse CC CC through Installer, everything seems ok... but... no sign of Adobe Muse on my computer.
    Please help, thanks.

    Nico of Luxembourg.

    Hi Jeff,

    Pending contact with Adobe chat (S: Gaurav) ho told me to remove some directories of files en more... / Library /... aso.
    After this action, I had no more problems with the installation.
    Interested my site =
    Thank you very much for you support.
    Nico

Maybe you are looking for