Script busy or not working

FF or Google or Extreme Security cause? Upon opening FF, it crashes occasionally. I have version 3.6.23 with a Google FF search page and I use Zone Alarm Extreme Security's latest firewall, etc. When it does crash, I get a message as follows: A script on this page may be busy or it may have stopped working. You can stop the script now or you can continue to see if the script will complete. The script is chrome://zonealarm_extreme_security/content/ctoolbar.js:412

Thanks, Cor-el. However in the process of updating my Zone Alarm Extreme Security, I'm into a whole other problem. When I tried to uninstall my current version of ZA in order to update to the newer version (ZA techie's advice), I couldn't recall my Administrator password in Program Control of my PC. His advice last night was to go into Program Control and delete ZA, then follow the steps as per 2 other links which he provided - that I installed to my Desktop.
The ZA techie has sent me a HUGE list of steps I should take to overcome this but I see this morning that his preamble is "The ONLY way to remove a '''ZA''' password that is forgotten...is to remove the database files associated with True Vector, as follows".
Before I go into all of this, I'm going to try one other ZA password that I do recall (while in Program Control) on my PC - can't see how this would work. ZA has stated that their firewall is compatible with FF7 so that issue is not a concern. I read your Mozilla link above and understand now that there is no urgency to update to FF7 but do you foresee any reason not to?

Similar Messages

  • Enabling Global Script Protection is not working while adding "&"

    Hi All,
    To prevent crosssite scripting attacks I ticked the the check box "Enable Global Script Protection" in CF admin. But it is not working , I mean not able to prevent the scripting attacks.
    Steps I followed
    1] I executed the below URL.
         https://xyz.abc.com/index.cfm?cardholder_number=&<script>alert(1)</script>
    2] In the fornt end I got a javascript alert message as injected in the URL.
    But this alert message should not come as I have enabled script protection in CF admin. Right????
    Now I removed "&" (https://xyz.abc.com/index.cfm?cardholder_number=<script>alert(1)</script>) from the above URL  then I was not getting the javascript alert message. Does this mean that script protection will not work if we are adding "&" to the URL????.
    I searched the neo-security.xml and its looks like below.
    <var name='CrossSiteScriptPatterns'><struct type='coldfusion.server.ConfigMap'><var name='&lt;\s*(object|embed|script|applet|meta)'><string>&lt;InvalidTag</string></var></st ruct></var>
    Can any one help me out to fix this.

    Abdul L Koyappayil wrote:
    But still one doubt remains why alert message is coming only when there is "&" in the URL??
    This happens with "&" because it is a special Javascript symbol whose purpose is to delimit - that is, separate - the key-value value pairs in the URL's query-string. For example, in the URL www.myDomain.com/index.cfm?a=1&b=2, the "&" delimits the query-string into the 2 key-value pairs
    a=1
    b=2
    Let us then consider the case where the URL is www.myDomain.com/index.cfm?cardholder_number=&<script>alert(1)</script>. The & will delimit the query-string into
    cardholder_number=
    <script>alert(1)</script>
    The presence of '&' implies there are 2 variables. However, there is only one '=' sign, which means there is just one key-value pair. In addition, cardholder_number is a legal name for a URL variable, whereas <script>alert(1)</script> is not. The browser therefore sends the following query-string to your application
    cardholder_number=EMPTY_STRING&<script>alert(1)</script>
    However, Coldfusion's scriptprotect feature will intervene and neutralize this to
    cardholder_number=EMPTY_STRING&<invalidtag>alert(1)</script>
    which is harmless. These will enter into Coldfusion as the URL variables
    cardholder_number=EMPTY_STRING
    EMPTY_STRING=EMPTY_STRING
    The special nature of '&' as delimiter is what prompts the browser to run the script. In fact, by default, browsers will run any Javascript that you place in the query-string. Run this, for example
    http://www.myDomain.com/index.cfm?<script>alert(1)</script>
    But what reason will I say if they are asking me why javascript alert is coming then.
    As you have just seen, the <script> tag cannot come in. The alert occurs at the browser - that is, at the client - but Coldfusion runs at the server. Communication between client and server is by means of the URL variables that the client sends to the server. For the attack to be effective, it has to be sent in the form
    sneakyVar=<script>alert(1)</script>
    That is not the case here.

  • CS4 Photoshop Scripts and Actions not working

    Hi All,
    I just upgraded my suite to CS4 from CS3.  Now all my actions and default scripts such as "Load Files to Photoshop Layers" from Photoshop & Bridge are not working.  I've tried remaking my actions and renaming files but no luck.  I've tried deleting preferences but no luck as well.  Im stuck.
    Here are my machine specs:
    Model Name:    Mac Pro
      Model Identifier:    MacPro1,1
      Processor Name:    Dual-Core Intel Xeon
      Processor Speed:    2 GHz
      Number Of Processors:    2
      Total Number Of Cores:    4
      L2 Cache (per processor):    4 MB
      Memory:    9 GB
      Bus Speed:    1.33 GHz
      Boot ROM Version:    MP11.005C.B08
      SMC Version (system):    1.7f10
    Any ideas?

    Hello,
    Its actually doesn't do anything.  Once you figure out that PS is not responding then you try to do it again -  this comes up "photoshop is currently busy with another task.  Would you like to queue this process?"

  • Powershell Script Send-zip not working when running in cmd

    I found there is powershell send-zip script available in technet.  I tested it and found that it works when the script is running under powershell env, but when it is calling in cmd env, I can see the zip file, but there is nothing in it.  If
    I add the "-noexit" switch it runs normally.  Anyone have ideas what might be happening?
    The orig codes is as following:
    function global:SEND-ZIP ($zipfilename, $filename) { 
    # The $zipHeader variable contains all the data that needs to sit on the top of the 
    # Binary file for a standard .ZIP file
    $zipHeader=[char]80 + [char]75 + [char]5 + [char]6 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0
    # Check to see if the Zip file exists, if not create a blank one
    If ( (TEST-PATH $zipfilename) -eq $FALSE ) { Add-Content $zipfilename -value $zipHeader }
    # Create an instance to Windows Explorer's Shell comObject
    $ExplorerShell=NEW-OBJECT -comobject 'Shell.Application'
    # Send whatever file / Folder is specified in $filename to the Zipped folder $zipfilename
    $SendToZip=$ExplorerShell.Namespace($zipfilename.tostring()).CopyHere($filename.ToString())
    SEND-ZIP C:\abc\a.ZIP C:\a\a.bak

    I've had the same problem with similar code found on another web site.
    The reason the zip file ends up being empty is that the temporary $ExplorerShell object you created is deleted when the send-zip function returns,
    and any incomplete copy operation that may still be ongoing at that time is aborted. (The copy operation is asynchronous, and continues after the CopyHere() function returns.)
    To work around this, you need to add a delay loop before you return, waiting for the copied object to appear in the zip.
    (Note that adding a fixed delay, like I've seen on other web sites, does not work: Small files appear almost immediately, whereas large file or worse still large subdirectory trees can take a long time to appear.)
    Try changing the end of your routine to something like...
    # Create an instance to Windows Explorer's Shell comObject 
    $ExplorerShell=NEW-OBJECT -comobject 'Shell.Application' 
    # Open the zip file object
    $zipFile = $ExplorerShell.Namespace($zipfilename.tostring())
    # Count how many objects were in the zip file initially
    $count = $zipFile.Items().Count
    # Send whatever file / Folder is specified in $filename to the Zipped folder $zipfilename 
    $SendToZip=$zipFile.CopyHere($filename.ToString())
    # Wait until the file / folder appears in the zip file
    $count += 1 # We expect one more object to be there eventually
    while ($zipFile.Items().Count -lt $count) {
        Write-Debug "$filename not in the zip file yet. Sleeping 100ms"
        Start-Sleep -milliseconds 100
    # Return deletes the $zipFile object, and aborts incomplete copy operations.

  • Additional Fields for ESS-Business Card Not Working for Certain Countries

    Dear Experts,
    We were trying to configure the additional fields to be displayed in Business Card - Overview Screen for all countries. We don't have problem configure and get the new fields display for Malaysia (Molga = 14) but having problem for the field to display for Hong Kong (Molga = 27) and Singapore (Molga - 25).
    The strange thing is I am following the same steps as I configured for Malaysia. Somehow it is not working for Hong Kong and Singapore. As I understand, there is only 1 place to configure in SPRO for this requirement:
    Personnel Management -> Employee Self-Service -> Service-Specific Settings -> Own Data -> Customizing of Personal Information Screens -> Determine Fields for Business Card on Overview Screen
    Please help!

    Hi Siddhart,
    Thank you for the information. We are currently in EhP3 with below Support Components installed.
    Software Component: SAP_HR
    Release: 600
    Level: 60
    Highest Support Package: SAPKE60060
    Software Component: EA-HR
    Release: 603
    Level: 34
    Highest Support Package: SAPK-60334INEAHR
    The note 1159911 provided is within SAPK-60304INEAHR. Thus, I don't think this is the root cause of this inconsistency base on the Highest Support Package installed in our system.
    Anymore hint? Anyone? Please...

  • Free busy information not working in new exchange site.

    HI,
    We have central site Exchange 2010 setup and it working fine . For business requirement we Installed new Exchange server(Mail/CAS/HUB) in new site.
    Post installed, Auto discover and mail flow are working fine but Free/busy information is not working for new site mailbox users(Not working in outlook and OWA also).
    I am having a strange error coming from outlook. When I run "Test E-mail AutoConfiguration" in Outlook, it comes up with Protocol: Exchange Http "wrong server name"
    Please share your suggestion to change/configure  "correct server name"  in "Protocol: Exchange HTTP"
    Protocol: Exchange HTTP
    Server: wrong server name
    Login name: testuser
    SSL: Yes
    Mutual Authentication: Yes
    Note : ( Protocol: Exchange RPC show correct server information and other Urls (OOF, OAB, OWA, Availability server).)

    Hi will martin,
    Thanks for your reply..
    Yes , I already pointed internal web  service virtual directory ( "https://casarrayname/EWS/Exchan...) to CAS server in new site. Other internal URLs (OWA,ECP,OOF,Availability service) also pointed to
    new site CAS server.
    But , when i check Auto discover internal URI and URL. below is the result.
    Result 1
    [PS] C:\Windows\system32>Get-AutodiscoverVirtualDirectory -Server Servername
    Name                                    
    Server                                  InternalUrl
    Autodiscover (Default Web Site)        
    Servername
    Result 2
    [PS] C:\Windows\system32>Get-ClientAccessServer -Identity servername |fl *internaluri*
    AutoDiscoverServiceInternalUri : https://casarrayname/Autodiscover/Autodiscover.xml
    When i tried to set interurl using the below command and it completed with no error but still InterURL not reflect. 
    command : Set-AutodiscoverVirtualDirectory -InternalURL https://casarrayname/Autodiscover/Autodiscover.xml

  • Scripting Context - Does not work as invocable?

    Hi
    I am using the Java Scripting implementation, in my case Rhino, and actually I am very happy with it. Nearly everything runs as expected. But there is one thing regarding Context per Script, actually bindings because of variables per script.
    I had a look at http://java.sun.com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html#scopes and if I do it like that everything works fine. Now, I have a script with several functions and I want to invoke specific functions. Again I take that example and extend it to something like:
    engine.eval("function printSomething() {println(x);}", newContext);
    In my "small world^^'" this should do the same, but I have to invoke printSomething:
    Invocable inv = (Invocable)engine;
    inv.invokeFunction("printSomething");
    If I do so, I get a
    java.lang.NoSuchMethodException: no such method: printSomething
    What am I getting wrong? I want to do the same as in the example, provide another Script with another Context (specifically Bindings), but as soon as I invoke the function, it says the function is not available even if it is very much visible.
    If I remove the
    newContext
    from
    eval()
    it works, but does not have the other Binding.
    How can I make that happen?
    I hope this is the right forum and someone can "light me up" where I just see darkness right now.
    Many thanks in advance

    Your script needs something from the default context.
    When you create a new context it will not work anymore.
    Just get hold of the original context (or a copy of it) and add your bindings
    and pass that.
    Something like [http://forums.sun.com/thread.jspa?messageID=10978511#10978511]

  • E-Recruitment,Syncronization for Employee and Business Partner not working?

    hi there,
    i itend to create a business partner for employee in SAP E RECRUITMENT but when i run the report HRALXSYNC for an employee, the result i am getting is total blank. I suppose there should be some errors if it is not working properly, but the the screen after running the report is total blank.
    are any prior settings must me meet before the business partners can be created using HRALXSYNC?
    thanks you

    HI Ravi
    Requirements to use the report are the activation of the integration for buisness partner. You could get details from sap note  550055.
    You have to switch on the following keys in table T77S0  with  SM30:
    Group    Sem. ID
    HRALX   HRAC           to  'X' for global HR-Integration
    HRALX   OBPON        to "ON"  for activate the integration between organization object  and business partner 
    HRALX   PBPON         "ON"  for activation the integration between central perosn and business partner
    Hope this helps.
    Regards
    Bernd

  • People and Business Widget not working

    I cannot get these to work; I get the following messages:
    People: "Data Unavailable" and
    Business: "No Results Found"
    Please advise...
    Imac,
    Intel Core 2 Duo
    2006 Intel 10.6.8

    These are Apple widgets that came bundled with dashboard. I used mine often now it's not working.
    If Apple just disabled it  with out so much as a heads up, that's not OK and not a way to treat loyal customers.

  • People and Business Widgets Not Working

    Hi,
    My people and business widgets have stopped working. Instead of having fields to enter name, zip, etc., there are blue boxes (that look like legos) with questions marks.
    I have read elsewhere that this means a needed plugin is missing.
    Removing and replacing the widgets doesn't help.
    Creating a new user account doesn't help.
    Deleting symbolichotkeys, dock, dashboard, dashboard.client, and widgets plists doesn't help.
    I downloaded the 10.4.4 update and used Pacifist to extract just the people widget and placed it in both the system and user library/widgets folders. Didn't work.
    I called apple care and they told me to make a posting here. I really hope someone can point me in the right direction!
    Thanks in advance for you time.

    These are Apple widgets that came bundled with dashboard. I used mine often now it's not working.
    If Apple just disabled it  with out so much as a heads up, that's not OK and not a way to treat loyal customers.

  • Busy Search Not Working

    Hey All - thanks for looking at the post...
    I have GWE 7.0.1 Gateway up and running, but am unable to get busy search
    to work in either direction.
    From GroupWise to Exchange a free busy search is executed and I see it
    logged in the GWE gateway logs, but nothing is returned to the GroupWise
    client during the busy search even though there are appointments posted for
    the day for the Exchange user(s).
    From Exchange to GroupWise the busy search returns nothing. I have run
    through the manual like 10 times and all configuration options have been
    configured with the appropriate options. Anything I am missing that might
    not be documented?

    I have resolved the problems that I was having and wanted to share what I
    found out. Turns out there was a bug in the 1/23/07 file version of the
    exgate 7.0.1. A new version was given to me by Novell support, but I don't
    know what the timestamp on the file is from novell b/c windows screwed it
    up, but I don't see that's it's been released yet on downloads.
    The bug was that you could not do a busy search from GroupWise to Exchange
    if the primary SMTP namespace for the Active Directory users did not match
    the Active Directory domain name. Basically, the gateway would try to
    perform a busy search using an LDAP query on username@ADdomainname and
    would fail if you gave your users an alternate primary SMTP namespace with
    a recipient policy in Exchange.
    Hope that helps someone b/c it took me about a week working with Novell to
    get it figured out. The gateway support folks (still in the US thank
    goodness) were awesome.
    > Hey All - thanks for looking at the post...
    >
    > I have GWE 7.0.1 Gateway up and running, but am unable to get busy search
    > to work in either direction.
    >
    > From GroupWise to Exchange a free busy search is executed and I see it
    > logged in the GWE gateway logs, but nothing is returned to the GroupWise
    > client during the busy search even though there are appointments posted for
    > the day for the Exchange user(s).
    >
    > From Exchange to GroupWise the busy search returns nothing. I have run
    > through the manual like 10 times and all configuration options have been
    > configured with the appropriate options. Anything I am missing that might
    > not be documented?

  • SSIS 2012 Script Task Debugging not working (VSTA Popup but no script displayed in IDE)

    Hi,
    I am trying to debug 2012 SSIS Package but for some reason its not working. Basically when I run package (64bit mode) it pop up Script IDE but never brings up Script (see below). Usually when debugging of script starts it should break execution at the code.
    Anybody experienced this issue with SSIS 2012 ?
    Thanks,
    Nayan
    Visit My Blog (Home of BI Articles) 

    Hi,
    I am trying to debug 2012 SSIS Package but for some reason its not working. Basically when I run package (64bit mode) it pop up Script IDE but never brings up Script (see below). Usually when debugging of script starts it should break execution at the code.
    Anyone has clue whats going on here?
    Thanks,
    Nayan
    My Blog |
    Convert DTS to SSIS |
    Document SSIS |
    SSIS Tasks |
    Real-time SSIS Monitoring

  • Action Script 3 code not working for start and stop button?

    Ok so I have this simple animation I created of a circle that moves from one side of the stage to the other. I have added a new layer and called it buttons. On this layer I have added 2 buttons. One for start and another one for stop. The purpose is to get my circle to move from one side of the stage to the other but be able to use my buttons so that I can start and stop the animations at random times during playback. I fixed all my compiler errors now the problem lies in that everytime I click the start or the stop button I get an output error. I have a 3rd layer in which is titled actions and this is where all my code is posted. I removed that layer and placed my code in the first frame of the buttons layer to see if this would change anything but I still get the same output errors. So I just added back my actions layer. What could I be doing wrong? I have made sure to name all my movie clips and buttons correctly and I even added an instance name to them.
    Here is my code and the errors I am getting when I press the play and stop button on test-
    start_btn.addEventListener(MouseEvent.CLICK, startCircle);
    stop_btn.addEventListener(MouseEvent.CLICK, stopCircle);
    function startCircle(e:MouseEvent):void{
        circle.play();
    function stopCircle(e:MouseEvent):void{
        circle.stop();
    green_btn.addEventListener(MouseEvent.CLICK, greenCircle);
    red_btn.addEventListener(MouseEvent.CLICK, redCircle);
    function greenCircle(e:MouseEvent):void{
        circle.play();
    function redCircle(e:MouseEvent):void{
        circle.stop();
    Here are my output errors-
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/redCircle()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at exercise2_fla::MainTimeline/greenCircle()

    ok so my circle is my movie clip and it is titled circle and the instance name is circle. Am I supposed to change MovieClip to circle? I put the code at the top of my actions script but for some reason it did not work. I did change play to stop and it got the movie clip to stop when I do test movie but my buttons still do not work. So I changed stop back to play. Strange.
    I did try changing MovieClip to circle but that did not work so I did Circle with a capital C and that did me no good eigther.
    I meant to add that I did get an error that said- 1180 Call to a possibly undefined method circle.

  • IGS (Business Graphs) not working

    Hi,
    I want to create some business graphs in web dynpro java. for this I have configured IGS URL in Visual admin
    I went to Server>Services>Configuration Adapter>webdynpro>sap.com>tcwddispwda>PropertySheetdefault.
    than i clicked on IGSURL and added the following entry in the custom value field
    http://servername.companyname.com:40080/ and I restarted the server, but even now its showing graphic rendering problem, graphs are not coming.
    Also when I run this url  ( http://server.companyname.com:40080/ ) in webbrowser its showing me   SAP IGS is running.
    Also, eveything is working fine in Portal Dev server with the above configuration, graphs are coming properly in Dev Portal server , but in Portal QA server graphs are not coming even after the above configuration.
    So what could be the problem in Portal Qa server when graphs are coming properly in piortal Dev server with the above configuration.
    please reply..

    Check the following link:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a552a4fb-0701-0010-4191-a55bbb6a9a2d?quicklink=index&overridelayout=true
    Regards

  • Saved Queries in Business Partners not working

    Hi All,
    I have 2 saved queries that populate the following Business Partners fields with default data:
    Group - I have a default group for a Vendor and a different default group for a Customer
    ShipType - I have a default Ship Type for a Vendor and a different default Ship Type for a Customer
    To trigger these saved queries, I have used Auto Refresh when BP Type changes.  The problem I am having is you have to change the field from Customer to Vendor and back to Customer again to trigger the saved queries for a Customer.
    Questions: 
    Is there an alternative to using BP Type that will trigger the saved queries that return a different result depending on the BP Types?
    Should I set the default programically instead? And, if so, what event will capture if an 'Add' is a customer or a vendor - keeping in mind you do not change the combobox for customer (because it is already displayed in the combobox as the default in SAP)?  Also, keep in mind the combobox value is returning =Nothing unless I physically change it.
    Any suggestions would be greatly appreciated!
    Ramona

    Hi All,
    I would like to let you all know I have used the following to solve my question:
    1)  The event that works well at capturing whether the data returned is a Customer, Vendor or Lead in FIND mode (when the form is first loaded)is SAPbouiCOM.BoEventTypes.et_FORM_DATA_LOAD.
    I have set default data and default UDF categories depending on if the data returned is a Customer, Vendor or Lead.  I have removed the saved queries.
    2)  For the ADD, I have used a menu event that will force the combobox to change from the default of "customer" to "vendor" when someone clicks on the add button.  Then I have added code to the Combo_Select Event that will populate the defaults.
    I appreciate the responses I received.
    Ramona

Maybe you are looking for

  • Parking the document at the time of F-48

    Hi SAP Guru's, Is there any facility to park the document at the time of F-48? Is there any way to put an autorisation check. Please help me out. Thanks in advance.

  • How to import photoshop layers into keynote 08

    Hi, i am trying to import multilayer files from Photoshop into Keynote 08, where it is possible to move the separate layers like objects. Can anybody give me a hint if this is possible? For powerpoint there is a tool that is capable to do it. Is ther

  • IPHOTO Sony RAW Support

    I have a Sony Alpha 300 camera. When will Apple support editing RAW files from this camera?

  • Image border property

    Hi I just upgraded to Dreamweaver 12.2 and want to know what happened to the tag panel where I could add an image border? Has it be "depreciated", moved or integrated with a different dialog panel? Thanks Rose

  • Firefox 5.0 locks up while navigating on page.

    Since upgrading to 5.0, when navigating on a page with my mouse, the arrow will freeze and my computer will lock up. I've tried waiting and half an hour. No change. I can only hit the reboot button.