Eclipse, cannot delete history.js

Does anyone else get this error when you try to do a forced
"clean" of your project? It seems that something, somewhere has got
ahold of that history.js file. I have closed down all browser
windows, even closed down Eclipse and re-started it, no luck. The
only thing that works is rebooting my computer, then I can do the
clean. Error message detail is listed below.
This happens in all of my Flex projects.
Has anyone else encountered this? Perhaps I should post this
on the Eclipse forums, but I thought I'd try here first.
Thanks!
Mike
Errors during build.
Errors running builder 'Flex' on project 'Project1'.
Problems encountered while deleting resources.
Could not delete
'C:\ColdFusion8\wwwroot\Project1\bin-debug\history\history.js'.
Problems encountered while deleting files.
Could not delete:
C:\ColdFusion8\wwwroot\Project1\bin-debug\history\history.js.

Hi again,
I was just looking at another issue I was having with add-on entries disappearing from the menu. I found it to be [http://bugzil.la/832990 bug 832990].
After disabling the "don't keep activities" checkbox in the developer settings, I am now able to clear history as it should be!!

Similar Messages

  • Make it so you cannot delete history

    Hi, i want to make it so you cannot delete this history on my computer to monitor which sites my kids are using? How can I disable this so they cannot delete the history, and i only i can do it with a password or something?

    HI and Welcome to Apple Discussions...
    If they have access to your Safari/Preferences window then they can change the way in which your control the History using the pop up menu.
    You might want to consider using Parental Controls.
    Open System Preferences/Parental Controls
    You may need to click the gold padlock icon to make changes. You will be prompted for your admin password.
    Help here to set that up. http://theappleblog.com/2009/01/13/kid-proofing-a-mac-with-parental-controls/
    And a video tutorial here. How to Setup and User Parental Controls in Leopard
    You can use the Property List Editor to see which sites have been visited without the History trail.
    Go to ~/Library/Safari and double click the History.plist file.
    ~ (Tilde) represents your Home Folder
    The Property List Editor will open.
    Click the black disclosure triangle next to: WebHistoryDates so it faces down.
    You can view website addresses in the History there.
    Carolyn

  • Cannot delete history

    i clear history, empty cache, remove all cookies, set my pref to remove history items after 1 day, do private browsing and reset safari when i am done using it, BUT when i googlesearch something -instead of typing the web address directly-, next to the website name i still see: 64visits - 10.29am. this happens all the time. what am i doing wrong? wrong settings? thanks for your help!

    reasons are of no concern.
    Actually the reason is a concern, because there are easier ways to accomplish this without all the machinations you're resorting to. It's not a browser "problem", so using Firefox would not do anything for you, other than it being a perfectly fine browser in it's own right. Rather, there is something causing this issue in Safari that we are trying to discover and remedy.
    If you have any Input Managers, you'd have an Input Managers folder in one or both of the /Library directory, but if you don't have that folder, then you don't have any to worry about. If you do have any, I'd try quitting Safari, removing them (not deleting them) and then restart the Mac and test Safari.
    You should try creating a new User Account and running Safari there to see if the problem manifests there; if it does, then it's a system-wide problem, otherwise it's limited to your primary user account.
    Mulder

  • I cannot delete history

    I go to tools, select clear recent history, and click, and the history is not cleared. I close and restart Firefox, and it still is not cleared, even when I try again.

    * In Private Browsing mode some menu items are disabled (grayed) and features like visited links are disabled and not showing
    * You are in Private Browsing mode if you see "Tools > Stop Private Browsing", possibly grayed
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"
    See also [[Private Browsing]]

  • Cannot delete reports, unless I close and open Eclipse/Tomcat

    Please can someone help me.
    I cannot delete reports. I have not worked out all the details yet but this is what I got so far...
    First I thought it was a problem with my tomcat setup, I would deploy my WAR and run the app. After
    viewing the report and closing the browser. I would not beable to delete the rpt file until I close Tomcat.
    I have now got a similar problem within Eclipse. (as far as I can tell its the same problem but even worse)
    If i create any report and design it or even a new blank report. And not do anything to it, just save it as a blank report. I then try delete the
    report. Right click and then delete.
    After a few seconds Eclipse brings up an error and says it cant delete the file, the reason it gives is
    Problems encountered while deleting resources.
      Could not delete 'C:\WorkSpace\Project\WebContent\Report1.rpt'.
        Problems encountered while deleting files.
          Could not delete: C:\WorkSpace\Project\WebContent\Report1.rpt.
    I have tried creating a fresh new project and only one report. And I still get the error.
    If I try delete the whole project perminatly it also gives the same error. (But deletes the default crystal report)
    I have to close Eclipse and then open it again before I can delete the rpt files properly.
    I have not always had this problem. It used to work fine (dont ask what I have done since
    cause I would not beable to tell, sorry)
    Hopefully someone can help me, as this is driving me insane, and having to stop and start Tomcat every
    time I want to deploy a new test version is not really an option.
    Cheers
    Darren

    Hi Merry,
    Thanks for getting back to me.
    My reports within Eclipse seem to be behaving themselves now and dying gracefully without and hassles,
    so I dont know what fixed that problem as I have not made any changes or done any updates. One of
    those things I guess.
    With regards to TOMCAT still having a handle on the reports, As far as I am aware I am putting the
    report source in session
    Below is my JSP that loads the report
    I store report name in session via a servlet and set all the DB connection details in the servlet also.
    imports....
    try {
       String reportName = session.getAttribute("Report").toString();
       ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
       if (clientDoc == null) {
          clientDoc = new ReportClientDocument();
          // Open report
          clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
          // ****** BEGIN LOGON DATASOURCE SNIPPET **************** 
             //Call the process to set all the database detail retrieved from web.xml
             // Custom function to set the connection details
             ReportFunctions.setConnection(clientDoc);
          // ****** END LOGON DATASOURCE SNIPPET ****************           
          // Store the report document in session
          session.setAttribute(reportName, clientDoc);
       // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
          // Create the CrystalReportViewer object
          CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
          //set the reportsource property of the viewer
          IReportSource reportSource = clientDoc.getReportSource();                    
          crystalReportPageViewer.setReportSource(reportSource);
          // set viewer attributes
          crystalReportPageViewer.setOwnPage(true);
          crystalReportPageViewer.setOwnForm(true);
          crystalReportPageViewer.setDisplayGroupTree(false);
          crystalReportPageViewer.setHasToggleGroupTreeButton(false);
          crystalReportPageViewer.setHasPrintButton(false);
          crystalReportPageViewer.setEnableDrillDown(false);
          // Process the report
          crystalReportPageViewer.processHttpRequest(request, response, application, null);
       // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
       } catch (ReportSDKExceptionBase e) {
        out.println(e);
    So far its very basic.
    How best can I kill and clean up once the web page is closed. I have tried a few options but dont seem to
    know the best way,
    I tried "onbeforeunload" but I dont know if this is the best practice,
    I have a session listener with sessionDestroyed but have not learnt how to envoke this correctly, or atleast when to correctly call it. And then I dont know how to clean out any loaded reports from here.
    I have used 
    request.getSession().invalidate();
    at the end of my JSP but that destoys everything everytime a user does anything on the page, (selecting any of the buttons on the report)
    I am still learning everyday, and so I appoligise for questions that I should really know, am being pushed into the deep end here so trying my best :).
    Thanks again.
    Cheers
    Darren
    Sorry for bumping this back the list, but I am at my wits end as how best to "clean out" the reports
    once they have been closed or timed out.
    Surely there must be a way to release all objects (be it a actaul rpt file or the classes12.jar) once the
    reports have been viewed and closed.
    Even if there is something I can load via another servlet that destroys anything that has to do
    with the main website.
    Thanks and again sorry for moving this back up the list. If i get no replies, ill assume this is impossible
    and that the only way to upload a new version of a report is to shut the whole Tomcat service and
    make the changes.
    Cheers
    Edited by: Darren Jackson on Dec 3, 2008 12:31 PM

  • Clear hisory ? will not hihglight , so I cannot clear or delete history

    clear history ? will not highlight , so I cannot clear or delete history,when I go to tools

    * Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"

  • Ios 6 /iphone 4s- I cannot delete Safari history

    Hello,
    I have ios 6 on an  iphone4s. I cannot delete Safari 
    I have been to settings and deleted history there and the cac.
    I have also been into advanced web settings and deleted there but the history still remains.
    Any ideas please...
    Thanks

    My 4S does this sometimes.  The best fix I've found it to turn Wifi off, reboot your iPhone, and then turn wifi back on.  If this doesn't help, then the problem likely resides with your router, so try rebooting your router.
    Hope this helps.

  • Updated my ipad 2 to ios 7.1, I cannot delete no more safari browsing history, can anyone help me?

    Updated my ipad 2 to ios 7.1, I cannot delete no more safari browsing history, can anyone help me?

    Hello, Robertofromfo. 
    Thank you for visiting Apple Support Communities. 
    This sounds like you may have Private Browsing enabled.  The article below will show you how to disable this feature.
    iOS: Safari web settings
    http://support.apple.com/kb/HT1677
    You can also attempt to clear your history via the steps below. 
    Follow these steps to clear information from your device:
    To clear your history from Safari, tap Settings > Safari > Clear History.
    To clear all cookies from Safari, tap Settings > Safari > Clear Cookies and Data.
    To clear other stored information from Safari, tap Advanced > Website Data > Remove All Website Data.
    Cheers,
    Jason H. 

  • I don't have a history option in bookmarks bar... So I cannot delete visited sites from address bar...how do I restore this ?, I don't have a history option in bookmarks bar... So I cannot delete visited sites from address bar...how do I restore this ?

    I don't have a history option in bookmarks bar... So I cannot delete visited sites from address bar...how do I restore this ?, I don't have a history option in bookmarks bar... So I cannot delete visited sites from address bar...how do I restore this ?

    The history option is the little clock icon at the bottom of the Bookmarks menu - the icon in the center between the open book and the eye glasses icons. You don't have that? Try closing Safari and see if the history option comes back
    Go to the home screen first by tapping the home button. Double tap the home button and the task bar will appear with all of your recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar. Restart the iPad.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    You can also clear the history in Settings>Safari>Clear History.

  • I cannot delete a certain history item no matter how many times I hit "delete history".  It wont go away.  also, my safari browser is now in Chinese. I beleive I got hacked, because this item contains content that no one should want to see.

    I have an item that appeared in my history, along with my language being changed to chinese.  how can I undo this?  can I reset safari?  This item wont go away no matter how much I hit delete history. 

    The "Favorites" icons that appear when you open a new tab are just a special folder in your Bookmarks.  To add items to the page, add a bookmark (by tapping the "Bookmark" item in the "Action" popover) and specify the Favorites folder as the destination.
    To remove items from the "Favorites" view, tap the Bookmarks icon, then tap "Edit" to remove bookmarks from the Favorites folder.
    You may also press-and-hold an item in the Favorites view to re-order it (rather than using the Bookmarks view to reorder them).

  • Why Can I NOT Keep My Internet Explorer "DELETE HISTORY ON EXIT" Set

    Ok I have been fighting this every since Windows 8.0 and NO success.  Its like Microsoft coded I.E. to still hold onto all of my history and cache even though I have selected "Delete on exit".  Also the Advance setting where it caches
    sites files etc, NEVER deletes.   I can perform the procedure, then close out.  Turn off my computer and when I am back into IE.  I get the "previous browser session closed yada yada.... do you wish to restore"..        
    Sure enough, when I 'restore' everything I 'deleted' still there.
    and no, I didn't "cold-shut down' the computer where programs were still running (unless it is intentional that i.e. is still running even after ive closed and deleted history MANUALLY over and again)
    Is there a better "3rd" party browser to use ?

    Karin86 wrote:
    I always get an error message "Cannot update iOS software" or something to that effect everytime I try. I've tried plugging my iPad to my laptop computer and then my computer directly to internet connection (we have a router that allows WiFi access, so I thought I'd try to bypass the router instead), but this did not work.  I've tried restoring my iPad via connected to my computer through iTunes, that worked for a short time and was able to update the apps I wanted, but soon after one of the apps stopped working properly, and then the apps I wanted to get from the App Store just wouldn't install or load...Instead they would be having "Waiting..." for the longest time until I give up and delete them. I've tried restarting my iPad, no luck either.  I've also gone through the Reset process of "Erase All Content and Settings" i.e., Restore, and like mentioned above, it worked for a little while then it went back to square one, as I mentioned a sentence or two previously.
    I've no idea what is going on, why it's not working, or anything.  I just wonder if it's got anything to do with a slow internet connection (we don't have high-speed internet access), or something else I haven't found that may be just under my nose.
    I would love some help and input into my situation, all and any ways which allow me to keep my current iPad (which is the New Generation one), not having to trash it and replace it with a new one.
    Have you tried to restore as a new device? Maybe a glitch exists on the restored backup, try this:
    http://support.apple.com/kb/HT4137
    Good Luck!

  • Delete History in Safari without Deleting Data

    I cannot delete JUST the HISTORY without deleting WEBSITE DATA in Safari with OS X Yosemite.  Every time I delete the history, I lose all my cookies that I need for certain websites.  Will Apple please fix this?

    Create an application from this Applescript with AppleScript Editor and run it whenever you want to clear just the history:
    tell application "Finder"
      activate
      delete file "History.db" of folder "Safari" of folder "Library" of folder "XXXX" of folder "Users" of startup disk
      empty trash
    end tell
    where XXXX is your Home folder name or user short name.

  • Deleting history sidebar sites

    drop down view and history for sidebar and several sites come up on the left that i cannot delete. tools etc does not erase then neither do right clicking on each item and using delete or ingnore. help please

    Did you try "Forget About This Site" ?
    Note that this doesn't only remove the history entries, but everything including cache cookies and passwords.
    See also http://kb.mozillazine.org/Locked_or_damaged_places.sqlite

  • Cannot delete the applet

    i'm working on JCOP in Eclipse and have a big problem now. normally i can install, select, and send command and finally delete applets. but the recent applet(performing class Cipher testing) i've installed, selected and run, but it can't be delete. attempting to delete always return error code 6985 and the applet stucks forever!! so i wanna know how can i delete such the applet? and can we replace the applet with a new one that has the same AID?
    the trouble code is:
    public static byte constructor01(){
              try{
                   cip = new CipherTestClass();
              }catch(Exception e){
                   return (byte)1;  // FAIL
              return (byte)0;  // PASS
         }the above code always return status word 6985 and the applet cannot be remove
    but if i change to this one, the applet can be delete with "delete" command with status word 9000:
    public static byte constructor01(){
              try{
                   CipherTestClass cip = new CipherTestClass();
              }catch(Exception e){
                   return (byte)1;  // FAIL
              return (byte)0;  // PASS
         }Both of the code have no error, can be installed, selected, and run, but only the second that can be remove from card.
    thank you

    Your first sample seems to store a reference to an object in a static field. You cannot delete an applet if a such a reference exists. (See Java Card specification!)
    If you are using a GP211 card, you can delete the entire package using the following JCShell command:
    delete -r <pkgaid>

  • I cannot delete albums from iPhoto

    I cannot delete albums from iPhoto.any advice?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.
    Posts that consist of "iPhoto doesn't work. Help" or "iPhoto won't print" or "Suddenly I have no photos!!!!!!!!!!" mean that any helper is simply guessing. More information means you get better assistance.

Maybe you are looking for