Fix not working to disable http trace in iPlanet 6.0 SP5

Hello.
I'm running iPlanet web server 6.0 SP5 on Solaris 8. A recent security compliance scan disclosed a number of vulnerabilities, among them the fact that I have HTTP TRACE enabled. I applied the fix to obj.conf described at http://sunsolve6.sun.com/search/document.do?assetkey=1-26-50603-1&searchclause=security
stopped and restarted the server, but the TRACE did not disable. The way I test this is
<code>
telnet server-name http-portnum
TRACE / HTTP/1.1
HOST:hostname
</code>
Rather than generating an error (501?) as it should it comes back with
<code>
HTTP/1.1 200 OK
Server: Netscape-Enterprise/6.0
Date: Fri, 13 Aug 2004 20:31:44 GMT
Content-length: 36
Content-type: message/http
</code>
In addition if , instead of TRACE / HTTP/1.1 I use the command
<code>
OPTIONS * HTTP/1.1
</code>
I get
<code>
HTTP/1.1 200 OK
Server: Netscape-Enterprise/6.0
Date: Fri, 13 Aug 2004 20:32:03 GMT
Content-length: 0
Allow: HEAD, GET, PUT, POST, DELETE, TRACE, OPTIONS, MOVE, INDEX, MKDIR, RMDIR
</code>
So clearly it's not disabled.
Here is a snippet of the obj.conf file showing the inserted "fix" :
<code>
# Sun Netscape Alliance - obj.conf
# You can edit this file, but comments and formatting changes
# might be lost when the admin server makes changes.
<Object name="default">
<Client method="TRACE">
AuthTrans fn="set-variable" remove-headers="transfer-encoding" set-headers="cont
ent-length: -1" error="501"
</Client>
NameTrans fn="NSServletNameTrans" name="servlet"
NameTrans fn="document-root" root="$docroot"
PathCheck fn="unix-uri-clean"
PathCheck fn="check-acl" acl="default"
PathCheck fn="find-pathinfo"
PathCheck fn="find-index" index-names="index.html,home.html"
ObjectType fn="type-by-extension"
ObjectType fn="force-type" type="text/plain"
Service type="magnus-internal/jsp" fn="NSServletService"
Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
Service fn="shtml_send" type="magnus-internal/parsed-html" method="(GET|HEAD)"
Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
AddLog fn="flex-log" name="access"
</Object>
</code>
Can anyone suggest why this isn't working? I've beaten this one to death. Thanks. Peter.

1) Why would TRACE and OPTION request specifying HTTP 1.0 vs. 1.1 yield such different results?
Web Server 6.0 only implements the TRACE and OPTIONS methods for HTTP/1.1, not HTTP/1.0. This is reasonable as TRACE and OPTIONS are part of the HTTP/1.1 protocol and not the HTTP/1.0 protocol.
In other words, TRACE is always disabled for HTTP/1.0 requests, even if you don't use the set-variable work around.
2) Is the OPTIONS command a legitimate test of whether this fix works? If it is, has anyone managed to have the command return an "Allow:" line MINUS the TRACE?
Nope, not in Web Server 6.0. OPTIONS will always list TRACE. (Note that in Web Server 6.1, TRACE is not as tightly integrated into the server core. As a result, OPTIONS will conditionally list TRACE in 6.1.)
3) Has anyone managed to generate a 501 error message after specifying TRACE / HTTP/1.1 instead of 1.0?
Nope, not in Web Server 6.0.
4) Does this fix really work?
I wouldn't call it a fix; it's a work around. However, it does effectively disable TRACE. The work around is a bit of a kludge, resulting in the odd 413 status code.
The real "fix" appears in Web Server 6.1 where you can disable TRACE simply by commenting out the Service method="TRACE" fn="service-trace" line in obj.conf.

Similar Messages

  • [svn:bz-trunk] 16395: Bug: #2621264 [Regression] Small messages not working with NIO-HTTP endpoints in LCSD/trunk.

    Revision: 16395
    Revision: 16395
    Author:   [email protected]
    Date:     2010-06-02 05:00:56 -0700 (Wed, 02 Jun 2010)
    Log Message:
    Bug: #2621264 Small messages not working with NIO-HTTP endpoints in LCSD/trunk.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Details: This is the BlazeDS side of the fix. This wasn't a regression, it probably never worked correctly. So, in the scenario where there's a Producer and a Consumer, and Producer sends a message for the Consumer, there are 2 messages from the server. The ACK message for Producer's send, and the actual message Consumer receives. I found that the ACK message was in small form, but the actual message was not in streaming messages. This was because we never really tried to convert streamed messages into small messages before.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/StreamingAMFEndpoint.java
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/StreamingHTTPEndpoint.java

  • ValueChangeListener is not working.for disable property

    valueChangeListener is not working for disable property with following details. Requirement is to enable to date if from to date is entered.
    Field 1:
    <af:inputDate value="#{bindings.PrintFromDate.inputValue}"
    label="#{bindings.PrintFromDate.hints.label}"
    required="#{bindings.PrintFromDate.hints.mandatory}"
    shortDesc="#{bindings.PrintFromDate.hints.tooltip}"
    id="id2" autoSubmit="true"
    *valueChangeListener="#{reprintBean.enableToDate}">*
    <f:validator binding="#{bindings.PrintFromDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.PrintFromDate.format}"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.PrintToDate.inputValue}"
    label="#{bindings.PrintToDate.hints.label}"
    required="#{bindings.PrintToDate.hints.mandatory}"
    shortDesc="#{bindings.PrintToDate.hints.tooltip}"
    id="id1"
    *disabled="#{!requestScope.enableToDate}"*
    *partialTriggers="id2"*>
    <f:validator binding="#{bindings.PrintToDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.PrintToDate.format}"/>
    </af:inputDate>
    public void enableToDate(ValueChangeEvent valueChangeEvent) {
    System.out.println("IN enableToDate");
    if (valueChangeEvent.getNewValue() != null) {
    FacesContext context = FacesContext.getCurrentInstance();
    System.out.println("Enable to Date");
    context.getExternalContext().getRequestMap().put("enableToDate",true);
    Please suggest me what is wrong on this.
    Edited by: SrinivasA on Jan 28, 2011 5:34 PM

    I still not able to achive this. (null the to date value if the FromDate has changed)
    <af:inputDate value="#{bindings.PrintFromDate.inputValue}"
    label="#{bindings.PrintFromDate.hints.label}"
    required="#{bindings.PrintFromDate.hints.mandatory}"
    shortDesc="#{bindings.PrintFromDate.hints.tooltip}"
    id="id2" autoSubmit="true"
    *binding="#{reprintBean.fromDate}"*
    *valueChangeListener="#{reprintBean.enableToDate}"*>
    <f:validator binding="#{bindings.PrintFromDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.PrintFromDate.format}"/>
    </af:inputDate>
    <af:inputDate value="#{bindings.PrintToDate.inputValue}"
    label="#{bindings.PrintToDate.hints.label}"
    required="#{bindings.PrintToDate.hints.mandatory}"
    shortDesc="#{bindings.PrintToDate.hints.tooltip}"
    id="id1"
    disabled="#{bindings.PrintFromDate.inputValue eq null}"
    binding="#{reprintBean.toDate}"
    *partialTriggers="id2">*
    <f:validator binding="#{bindings.PrintToDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.PrintToDate.format}"/>
    </af:inputDate>
    Value change method:
    public void enableToDate(ValueChangeEvent valueChangeEvent) {
    *setToDate(null);*
    This method is not able to reset the to date value to null. Please help to find the issue here.
    Edited by: SrinivasA on Feb 1, 2011 5:12 PM

  • HT1212 Reset does not work on disabled Ipod touch.  I did the never synced device option on a computer that we have never synced with.  Still says try again in 22,462,172 minutes.  Itunes says it cannot sync also.  Any ideas???

    Reset does not work on disabled Ipod touch.  I  performed the reset procedure Apple recommended and it did not work(Never synced device with itunes).  Comes back to try again in 22,462,160 minutes.  I tunes says Ipod is locked and can not access.  Any ideas???
    Thank you

    Place the iPod in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen
    If recovery mode does not work try DFU mode.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • RDP does not work after disabling TLS 1.0

    RDP does not work after disabling TLS 1.0
    Had to re-enable it .... what can i do to make it work with TLS 1.2 ??

    Hi,
    Disabling TLS 1.0 will break RDP under default settings.  Did the security scan say specifically to disable TLS 1.0?  Normally you should be able to disable use of certain ciphers or prioritize ciphers.  You may want to try IISCrypto, on
    it you click the PCI button, then Apply button, then restart your server.
    Additionally there are still a substantial number of web browsers in use that do not support TLS 1.1/1.2.
    If you would like to continue with TLS 1.0 disabled you may change the RDP Security Layer.  To do this please open Terminal Services Configuration (tsconfig.msc), double-click RDP-Tcp, change Security Layer to RDP Security Layer.
    IMPORTANT:  You are vulnerable to MITM attack when using RDP Security Layer because there is no Server Authentication.  If you are running RDP over a VPN connection and there is no risk for interception then this may be okay.  I recommend
    you re-enable TLS 1.0 and have a ssl certificate from a public authority set on your RDP-Tcp listener.
    Quoted from this thread answered
    by TP, for more information you can go through that thread. 
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Just want to say that's Block pop-up windows it's realy need to fix not work ever i think in Microsoft explorer it's work good but in firefox else new virsion Firefox4 it's not work right so please yts have to fix it it's so many important addon

    just want to say that's Block pop-up windows it's realy need to fix not work ever i think in Microsoft explorer it's work good but in firefox else new virsion Firefox4 it's not work right so please yts have to fix it it's so many important addon

    [Quote]
    Waiting for Tidbits and Elector to grace my post with there constant negativity and start a war of words as usual... since they love stirring the pot and angering the Windows Phone Community every time they reply to posts.  I just can't believe they spend that much time here on the forums replying if they are not a paid Verizon employee or a paid basher from a competing platform.
    [/Quote]
    Well I found nothing wrong in your post. So why even make a statement like the quote I included?
    Once more I am a retired government employee. So I have the time to post. Or has my rights been taken away to voice an opinion?
    Your posts was great you were not whining about your rights to file complaints to the FCC or FTC etc. One of the best I have read.
    And I am not trying to sway you from your phone choice. If you looked at my avitar it shows apple iphones. But I use and have used androids and not Windows phones.
    However your numbers of windows phone users all leaving over the issue is miniscule in the number of users of Android and iOS devices.
    I have written many times I wish all the devices get updated like iOS devices do. But at present that is not happening
    No bashing, no adversarial post just a little common sense is all I use.
    And again your post was great.
    Good Luck

  • JSPs and Servlets do not work on Apache HTTP- Procesor Intel P4

    Computer description: Intel Pentium 4 processor with 20GB HD
    drive, 1GB RAM, Windows 2000Pro, Service pack II
    Before installation:
    We created a temporary directory on our Intel Pentium. 4
    processor server (e.g. \TEMP).
    Copied the contents of the Oracle* Server CD to the temporary
    directory.
    Renamed each copy of the SYMCJIT.DLL to SYMCJIT.OLD.
    Set the java_compiler=none environment variable.
    Installation:
    We run the SETUP.EXE from the \TEMP\install\win32 directory and
    install Oracle 8.1.7 EE Rel 3 Typical
    Configuration tool Net8 Configuration Assistant succeeded
    Configuration tool Oracle Database Configuration Assistant
    succeeded
    Configuration tool Starting Oracle HTTP service: 7 times error
    message (java.exe has generated errors and will be closed by
    Windows, You will need to restart the
    program, An error log is being created)
    HTTP server responses.
    All Java programs do not respond (e.g. IsItWorking does not work)
    After installation:
    Open the jserv.conf file chack that ApJServManual is set to Off.
    set ApJServLogLevel debug (will give more informative errors for
    debugging)
    set ApJServDefaultHost www.in.oracle.com (to your machine name
    with the
    domain name or IP address)
    set ApjServDefaultPort 80000
    Open the jserv.properties files and make the following changes:
    bindaddress=www.in.oracle.com (Same name as ApJServDefaultHost
    in jserv.conf)
    port=80000 (same port as in the jserv.conf)
    Enable all log options in jserv.properties:
    log=true
    log.file=/usr/local/apache/var/log/jserv.trace
    log.timestamp=true
    log.dateFormat=[yyyyMMdd HHmmss:SSS]
    log.channel.init=true
    log.channel.terminate=true
    log.channel.serviceRequest=true
    log.channel.authentication=true
    log.channel.requestData=true
    log.channel.responseHeaders=true
    log.channel.signal=true
    log.channel.exceptionTracing=true
    log.channel.servletManager=true
    Java servlets and JSP still do not redspond.
    If we try to start HTTP server from Windows service, we always
    get message: unable to locate dll: The dynamic link
    library Perl.dll could not be found in the secified path (our
    path: C:\oracle\ora81\bin;C:\oracle\ora81\Apache\Perl\5.00503
    \bin\mswin32-x86;
    C:\Program Files\Oracle\jre\1.1.7
    \bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;) and
    error message: Could not start
    OracleOraHome81HTTPServer service on local computer. The service
    did not respond to the start or control request in a
    timely fashion.
    Starting Oracle HTTP service from Start/Programs/Oracle: 7 times
    error message (java.exe has generated errors and will be closed
    by Windows, You will need to restart the
    program, An error log is being created)
    We tested also modifications of oraparam.ini
    a. Copy only the install directory from the CD to the hard
    disk ,say, e:\temp.
    b. Open oraparam.ini and make the following modifications
    (Assuming CD
    drive is f:)
    * Change the "SOURCE=" line to use the full path to the CD
    instead of a
    relative path. (i.e., SOURCE=f:\stage\products.jar)
    * Change the "JRE_LOCATION" line to use the full path to the CD
    instead of a
    relative path. (i.e.,
    JRE_LOCATION=f:\stage\Components\oracle\swd\jre\1.1.7\1
    \DataFiles\Expanded)
    * Change the "OUI_LOCATION" line to use the full path to the CD
    instead of a
    relative path. (i.e.,
    OUI_LOCATION=f:\stage\Components\oracle\swd\oui\1.6.0.9.0\1
    \DataFiles\Expanded
    * Change the "JRE_MEMORY_OPTIONS" line to add "-nojit" as the
    first argument.
    (i.e., JRE_MEMORY_OPTIONS=-nojit -ms16m -mx32m)
    ^^^^^^
    * Other entries should remain the same
    c. Launch setup.exe from the temporary location on your hard
    drive (i.e.
    e:\temp\install\ win32\setup.exe). This will use the modified
    oraparam.ini and pick up the information from the CD since the
    absolute
    locations are specified.
    After that modification of oraparam.ini, the HTTPServer does not
    respond at all.
    So we undo changes on oraparam.ini and reinstall HTTP.
    We copied SYMCJIT.DLL and jvm.dll from JDK 1.1.8_008 to
    Apache\jdk\..
    Since then at least the demo IsItWorking responses, but database
    connection can not be established. But jsp demo still do not?
    THX in advance
    Neja

    I'm still having problems with Portal config (as part of 9iAS) on
    a P4 but i have cleared the hurdle of the HTTP listener (i
    think).
    I downloaded and installed the JRE that is P4 compatible from
    www.sun.com (it puts it under c:\program files)
    then overwrote all the files in the jre directories in the cd
    staging area with the files from Sun (i.e. all symcjit.dll
    locations). I also had to put a file "javai.dll" in the same
    directory as the file "java.exe". This got the install all
    working.
    The service will fail first time because the install creates
    another set of incompatible jre files. You must again search for
    symcjit and repeat the above procedure.
    You must also overwrite the files in the c:\program
    files\oracle\inventory\jre directories (sorry cant remember exact
    path).
    Hope this helps.
    Mark Gornicki
    PS if anyone knows why Portal config hangs at 67%
    (before/during/after processing "bulkload.jar" section) please
    let me know :-)

  • Disable HTTP TRACE causes error 413 instead of 501

    Hello,
    I�ve tried to disable the HTTP TRACE Method for a Webserver 6.0 SP5 Instance as described in the according SUN Solve document:
    obj.conf:
    <Object name="default">
    <Client method="TRACE">
    AuthTrans fn="set-variable" remove-headers="transfer-encoding"
    set-headers="content-length: -1" error="501"
    </Client>
    (authtrans method in one line..)
    After a Restart I got the following result:
    telnet muwebt1sn1 80
    Trying <IP-Adress>...
    Connected to muwebt1sn1.
    Escape character is '^]'.
    TRACE http://muwebt1sn1/ HTTP/1.1
    HTTP/1.1 413 Request Entity Too Large
    Server: Netscape-Enterprise/6.0
    Date: Tue, 20 Apr 2004 06:51:00 GMT
    Content-length: 168
    Content-type: text/html
    Connection: close
    <HTML><HEAD><TITLE>Request Entity Too Large</TITLE></HEAD>
    <BODY><H1>Request Entity Too Large</H1>
    A request entity is longer than the server can handle.
    </BODY></HTML>Connection closed by foreign host.
    I would have expected an error code 501 / Method not supported. Does anybody know what went wrong ?
    Thanks
    Wolfgang

    Nothing went wrong. That's the expected behaviour on 6.0 SP5.

  • Random thumbnail problem +quick fixes not working on others.

    I have system 10.6.8,Iphoto '11 9.2.3(IMAC).Some thumbnails in "photos"(under library on left of screen)are blank but when double click them they open,briefly show ! and then open and edit ok.Shot pictures the other day in JPEG+RAW and random JPEGS will not edit with quick fixes(crop etc)and some will.All RAW seem to work ok.Pix downloaded from 3 camera cards.I rebuilt Iphoto library checking the first 3 boxes.Also some photos (JPEGS)from various dates display the ! when double clicked.Any help would be much appreciated.

    Addendum-All raw do not work ok.Some will not let me edit major fixes such as cropping and go out of focus when edit is selected and remain there until double click them out of edit.

  • Unable to Validate Muse Subscription - fixes not working

    I have the same problem that others have had with the error message "Unable to validate your Adobe Muse subscription.  We haven't been able to validate your Adobe Muse subscription  for some time. If you don't connect to the internet in the next few days, Adobe Muse will no longer be able to launch."
    I subscribed to Muse in Dec. 2012 & have been billed monthly successfully for the last couple months, however I recently changed the card number to be charged - could that be the issue?
    I am not signed up for Creative Cloud, which one of the discussion solutions seemed to mention, so might that be part of the problem?  But if so, why now after a couple months with no issues?
    Where the error message mentions connecting to the internet, I'm not sure what that means or how to do that - does that have something to do with Cloud?
    I'm building a new site & we're not yet ready to publish, so we aren't ready for hosting, but I'm hoping that is not part of the issue?
    I've tried some of the solutions posted in discussions (e.g., deleting certain folders & files), but before I uninstall/reinstall Muse, I'm hoping someone can help.  I'm down to 1 day on the clock, so I'm hoping not to be shut out of Muse.
    Any help would be greatly appreciated.

    I had the same problem this week. Amy via @AdobeMuse on Twitter sent me this solution:
    http://helpx.adobe.com/muse/kb/error-unable-validate-your-muse.html
    In following the steps provided in this URL, I discovered that somehow the Firewall in Norton Security Suite had been set to block Muse, although all the other Adobe CC products were set to "Allow" in the Norton firewall.
    By changing "Block" to "Allow," Muse now opens fine, but fair warning: I lost all the Muse sites I had been working on by following the other steps in this URL.
    I suggest that the first step in the instructions in this URL should be changed to: check your firewall first to see if Muse has been blocked. If I had done that first, it appears that I would not have lost 10 months of work.

  • Blue screen on start up, even in safe mode, common fixes not working

    I did quite a bit of searching for the problem I'm having, and it seems some of the symptoms are common, but none of the various fixes I've come across have worked. Any help pointing to other things to try would be appreciated, as it is getting harder to search for things without finding repeats of what I've already tried. Also, I was going to post this on the OSX 10.4 board, but changes in symptoms (mentioned at the end of this post) are starting to make me think this could be a hardware issue.
    The main problem is that my computer boots normally until the blue screen just before the login window should appear, then hangs.
    My system: iBook G4, 800 MHz, running 10.4.11, has an extra GB of RAM installed (for a total of 1.1 GB), new hard drive that is less than a year old.
    Things I've tried:
    Booting in safe mode: No change, still hangs at blue screen.
    Removing airport card, and extra ram has no effect.
    I've done a PRAM reset
    I've done a PSU reset
    Checked for file system and permissions errors with Disk Utility on OS CD
    Booting into single user mode works fine, where I tried:
    fsck -fy, no errors reported
    running /etc/rc worked fine for a while
    No unexpected errors or problems seen in /Library/Logs/Console/501/console.log, or in /var/log/system.log
    I've temporarily moved /Library/Preferences, /Library/Caches, and /System/Library/Caches, /User/Library/Caches, /User/Library/Preferences, /System/Extensions.kextcache and /var/db/netinfo/local.nidb to make sure none of those were corrupted (plus checked preferences with plutil), nothing fixed.
    I've double checked the permissions of the root directory.
    This problem did not follow an update or installation of any kind. The computer just completely locked up in the middle of using Safari (and just typing in an edit box, nothing with much of a workload) and the blue screen hang happened upon rebooting after shutting down by holding down the power button.
    Single user mode appeared to work fine, although I did get single user mode to hang when trying to back up a few GB of files onto a thumbdrive after copying about 90% of the files. And then a new problem came up where afterward, now the blue screen pops up and hangs about 30 seconds after running /etc/rc returns to the prompt (and about 20 seconds after last of it finishes outputting). I've tried clearing caches again but /etc/rc still causes this.
    I was going to try to run AppleJack (recommended for checking permissions and clearing caches) after copying the files to the thumbdrive, but of course didn't think to install that until after I had a problem. And now that /etc/rc causes a problem, I don't know how to attach the AppleJack .dmg file other than hdiutil, which needs the /etc/rc to have been run, and also can't remount the thumbdrive to copy any more files over.
    After this recent problem, I noticed that now booting from the OS CD goes to the blue screen too and no further. Has anyone else seen such a problem? I've heard of some issues with loose GPUs in the iBook G4, but they seem to mention scrambled or no/black video (video looks fine in single user mode and in open firmware, and up to the blue screen which is clear and bright). So now I don't seem to have an option to try an Archive & Install of the OS (which I was hoping to avoid, due to effort needed to reinstall other software).

    Thank you, I had forgotten about target mode. I was able to back up all of my files. I also copied some additional 50 GB of files of the disk as a stress test and the hard drive worked fine and quick (and because it was quicker than retrieving the same files from a network drive to my desktop).
    I was hoping to also unpack the Applejack files on my desktop and put them back so I could run them in single user mode without running /etc/rc. However I haven't been able to get my Linux desktop to mount the iBook in Read-Write instead of Read-Only yet (I don't have access to another Mac at the moment).

  • Lost photos updating to 4, iphone explorer fix not working.

    History of my update.
    First attempt.
    Using my offices PC, I plugged my 3G in and it proceeded to start backing up. It proceeds very slowly, and stops before it completes backup.
    I figure in order to speed up the backup, I will delete all my free apps on my phone manually. I don't have many apps, I left the one app that actually cost me something.
    I plug it in to my wifes macbook, the backup completes a lot quicker. I unplug the phone just to let it do it one more time. We then download the OS 4 update.
    I plug the phone back in to update my phone to the new OS. It starts doing a backup which appears to go EXTREMELY slow. It's late so I went to bed, wake up the next morning with OS 4 running but all 1800 of my pictures are gone except the first 30 or so I took when I got the phone, and my guitar tuner app that I left on the phone is also gone.
    We checked the mobile backups and there are no backup files on my wifes mac.
    I read about the iphone explorer fix. we download it, and there aren't any files in the media folder to show.
    I have most of my important pictures on facebook, but it would be nice to get them all back.
    I'm not very technical, obviously, any help would be appreciated.

    Sorry. Forgot the URL. Here it is:
    http://discussions.info.apple.com/thread.jspa?messageID=11734450

  • My HP Envy Touchsmart 15 jo52nr mousepad does not work or disabled

    My HP Envy Touchsmart 15 jo52nr Notebook PC mouse is disabled I have to use my touchscreen im actually typing from my Envy Touchsmart Plz Help

    Hi @Sajid_Ali ,
    Welcome to the HP Forums!
    I would like to take a moment and thank you for using the forum, it is a great place to find answers. For you to have the best experience in the HP forum, I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    Thank you for your query.
    I grasp that after an Windows 8.1 update that you lost the sound on your headphones.   There has been a recent Windows update that has been causing some audio issues.
    No Sound from Speakers (Windows 8)
    If this has not resolved your issue I would do a recovery back to factory and then retry the update.
    Performing an HP System Recovery (Windows 8)
    During the recovery process you will have an opportunity to backup your personal files to prevent data loss. If you have not already done one, I suggest you do one now.
    Restoring Files that were Backed Up Using HP Recovery Manager (Windows 8)
    Here is a link to Updating Windows 8 to 8.1 to assist with updating it again.
    You can also contact HP support for assistance. They can remotely log onto your system to help locate and resolve issues.
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region Technical Support Sitemap .
    I hope this is helpful!
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Stubborn Darwin/BSD boot, usual fixes not working

    I installed 10.3.2 to a Powerbook G3 Pismo. While downloading the 10.3.9 update, it froze hard at 73% done, could not access Finder nor force-quit, and when i restarted (via keyboard restart command), it booted in to Darwin/BSD. I've tried the fixes in this topic
    http://discussions.apple.com/message.jspa?messageID=1047613&ft=y&amp;#1047613
    but even with a Safe Boot it goes to Darwin, and it returned to Darwin after a install-disk startup/run of Disk Utility showed HD to be ok.
    It dismayed me to see the hard drive described as "10.3.9" in the Install disk's Start Up Disk window... the update hadn't finished downloading. Could this be the problem? Am i stuck with erasing and reinstalling the disk? That'll mean reinstalling 9.2 first, too, since i want a bootable copy of it on the drive... arg

    Hi LisaJoy,
    Welcome to Apple Discussions
    This has happened to me before, my brother wanted to use my computer so he restarted it. Anyways, you will need to do a clean install because you have part of both systems. Just for clarification, you were installing the system update. Downloading is putting it on your computer, installing is incorporating it. This causes a conflict with the startup. I suggest backing up you hard drive using your install disc (Disk Utility) and then doing a clean install. I would also recommend bring it to your local Apple Store. This happened to my iBook G3 and I brought it there because I didn't have a external drive big enough. They can also install the system software again.
    I hope that helps,
    Jon
    PS You can also do an Archive and Install, but I am not completely positive.

  • IOS 5 fix not working battery Life not any better about 80% loss in 8 hours with no use

    I updated my iPad with the 5.0.1 update, to fix my battery issues. This hasn't fixed anything, what to do. 80% battery life loss in 8 hours with nothing being used?

    Have you checked all your settings to see if anything is running in the background e.g. location services, frequent email fetching, notifications etc - there are some tips on this page which might help, including doing a charge cycle (charging to 100%, running it down so that it powers off, and then charging back to 100%) : http://www.apple.com/batteries/ipad.html
    Also are then any apps on the taskbar that might still be active ? To close apps completely : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of an app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    You could also try a reset and see if that makes any difference : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • How to create a dynamic screen (play with containers !) ?

    Hello, Here is the screen I want to do (one splitter with two containers) : |                                |    | button 1 |          | button 2 |              |________________________________________ |                                             

  • PDF viewer in Firefox doesn't handle feathering of edges and soft shadows

    In Firefox 25.01 for Mac OS 10.6.8, I have looked on a website at a pdf created in and exported to pdf from inDesign. The pics and text use some of the basic filters - like drop shadow and basic feather. This all comes out blocky as if it has no idea

  • Manipulating an existing XML document

    Hi, is it possible to use SAX to parse an XML document and append new elements to it? i know it can be done using DOM but in this case DOM is too expensive so is there any way that the same can be achieved using SAX? Any help is greatly appreciated

  • RAW files do not import to iPHOTO?

    My camera is supported by my the current version of iPHOTO. Two issues: I've imported 600+ photos in the past week. After importing I can view them, but the next time I open iPHOTO, I cannot locate them? I've checked everywhere??? Also, I shoot in RA

  • SDHO - question on variant creation

    "Hi team I need you HELP!! I have generate a transaction variant for tcodes: CO11N and CO15 then I have assigned some users to both transactions. in SHD0 First I set the users to CO11N variant --> assign variant and set proposal. with the same group