Why upgraded version of web cache 2.0.0.2.0 do not accept OSRECV_TIMEOUT parameter?

Hi all:
I did upgrade Web Cache 2.0.0.1.0 to 2.0.0.2.0 with a path
downloaded from OTN and I am trying to set the attribute
OSRECV_TIMEOUT according to the instruction on readme.html file.
The webcached do not start because OSRECV_TIMEOUT is not in dtd
definition.
Is internal:///internal.dtd upgraded into this patch? or I need
to install a complete version of 2.0.0.2 (not patch 2.0.0.1).
Best regards, Marcelo.

Wow, no one responded to this. Sorry about that. Did you resolve your problem? Note that the 9.0.2.0 release is out now, so that's the one you should be using.

Similar Messages

  • Hello. I would like to activate my CS3 Educational Program (version 2007) on my new computer. Unfortunatly he is not accepting my serial number. What can I do? I have delated the program on my old computer but it doesn't accept the activation on the new l

    Hello. I would like to activate my CS3 Educational Program (version 2007) on my new computer. Unfortunatly he is not accepting my serial number. What can I do? I have delated the program on my old computer but it doesn't accept the activation on the new laptop.

    Make sure you are using the  correct serial number.  Find your serial number quickly
    If you did not deactivate the original installation then it is possible your two allowed activations have been used and you need to reset your activation count.  To do that you need to contact Adobe Support thru chat and ask them to reset your activations.  If you ask for more than that they will tell you they cannot offer you any support.
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Upgrade Bug from 3.0.1 to 4.0.1 - syntax not accepted now

    Hi,
    I have just upgraded to Apex 4.0.1 (full installation from previous installed 3.0.1) in order to add the Ajax item functionality to my existing 3.0.1 app and getting the following really weird syntax error when I try to build an existing 'On Submit - Before Computations and Validations' process (get error just by clicking Apply Changes without making any modifications to it).
    The error is flaggged for the line below (which constructs a report column title) and subsequent references where APEX 4 doesn't seem to build the &P11_PCT_DRIFT1. syntax which previously worked? Bit lost on this as none of the items have changed at all here it seems to have been caused purely by the upgrade. I also tried to Apply Changes in Mozilla as Apex 4 requires you upgrade IExplorer to 7 however both browsers show the same issue. Any help would be appreciated. Thanks.
    :P11_LTG1_TITLE := 'LTG ' || &P11_PCT_DRIFT1. || '% drift';
    P11_LTG1_TITLE is Hidden
    P11_PCT_DRIFT1 is a Select List
    1 error has occurred
    ORA-06550: line 71, column 30: PLS-00103: Encountered the symbol "&" when expecting one of the following: ( - + case mod new null <an identifier> <a double-quoted delimited-identifier> <a bind variable> continue avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date <a string literal with character set specification> <a number> <a single-quoted SQL string> pipe <an alternatively-quoted string literal with character set specification>
    declare
    cursor col_titles_cur(column_name VARCHAR2) is
    select col_title, order_by
    from display_column_titles_v
    where col_name = column_name;
    col_titles_rec col_titles_cur%ROWTYPE;
    tempVal VARCHAR2(2000):= :P11_DISPLAY_COLUMN_ORDER;
    round_selected NUMBER := instr(:P11_DISPLAY_COLUMN_ORDER, 'bfr.round');
    show_summary_only NUMBER := instr(:P11_DISPLAY_COLUMN_ORDER, 'summary');
    currVal VARCHAR2(2000):= '';
    field_pos NUMBER := 0;
    begin
    :P11_COURT := :P4_COURT;
    if :P11_COURT != '-1' then
    :P11_COURT_DISPLAY := :P4_COURT_DISPLAY;
    -- :P11_COURT_IN := replace(:P11_COURT_IN_PARAM,':',',');
    -- :P11_COURT_IN := '' || replace(:P11_COURT,':',''',''') || '';
    -- :P11_COURT_PARAM_IN := '' || replace(:P11_COURT_PARAM_IN,':',''',''') || '';
    else
    :P11_COURT_DISPLAY := '- All Courts -';
    end if;
    :P11_SUBMIT_COUNT := to_char(2);
    :P11_COL1_TITLE := 'null';
    :P11_COL2_TITLE := 'null';
    :P11_COL3_TITLE := 'null';
    :P11_COL4_TITLE := 'null';
    :P11_COL5_TITLE := 'null';
    :P11_COL6_TITLE := 'null';
    :P11_COL7_TITLE := 'null';
    :P11_COL8_TITLE := 'null';
    :P11_COL9_TITLE := 'null';
    :P11_COL10_TITLE := 'null';
    :P11_COL1_VALUE := 'null';
    :P11_COL2_VALUE := 'null';
    :P11_COL3_VALUE := 'null';
    :P11_COL4_VALUE := 'null';
    :P11_COL5_VALUE := 'null';
    :P11_COL6_VALUE := 'null';
    :P11_COL7_VALUE := 'null';
    :P11_COL8_VALUE := 'null';
    :P11_COL9_VALUE := 'null';
    :P11_COL10_VALUE := 'null';
    :P11_COL_ROUND_ID_VALUE := 'null';
    :P11_COL1_GROUPBY := 'null';
    :P11_COL2_GROUPBY := 'null';
    :P11_COL3_GROUPBY := 'null';
    :P11_COL4_GROUPBY := 'null';
    :P11_COL5_GROUPBY := 'null';
    :P11_COL6_GROUPBY := 'null';
    :P11_COL7_GROUPBY := 'null';
    :P11_COL8_GROUPBY := 'null';
    :P11_COL9_GROUPBY := 'null';
    :P11_COL10_GROUPBY := 'null';
    :P11_COL_ROUND_ID_GROUPBY := 'null';
    :P11_COL1_ORDERBY := 'null';
    :P11_COL2_ORDERBY := 'null';
    :P11_COL3_ORDERBY := 'null';
    :P11_COL4_ORDERBY := 'null';
    :P11_COL5_ORDERBY := 'null';
    :P11_COL6_ORDERBY := 'null';
    :P11_COL7_ORDERBY := 'null';
    :P11_COL8_ORDERBY := 'null';
    :P11_COL9_ORDERBY := 'null';
    :P11_COL10_ORDERBY := 'null';
    :P11_LTG1_TITLE := 'LTG ' || &P11_PCT_DRIFT1. || '% drift'; -- *** error flagged for this line, and following 8 lines if this is commented out ***
    :P11_LTG2_TITLE := 'LTG ' || &P11_PCT_DRIFT2. || '% drift';
    :P11_LTG3_TITLE := 'LTG ' || &P11_PCT_DRIFT3. || '% drift';
    :P11_LTB1_TITLE := 'LTB ' || &P11_PCT_DRIFT1. || '% drift';
    :P11_LTB2_TITLE := 'LTB ' || &P11_PCT_DRIFT2. || '% drift';
    :P11_LTB3_TITLE := 'LTB ' || &P11_PCT_DRIFT3. || '% drift';
    :P11_DTB1_TITLE := 'DTB ' || &P11_PCT_DRIFT1. || '% drift';
    :P11_DTB2_TITLE := 'DTB ' || &P11_PCT_DRIFT2. || '% drift';
    :P11_DTB3_TITLE := 'DTB ' || &P11_PCT_DRIFT3. || '% drift';
    if show_summary_only <= 0 then -- do all routine allocating columns only if a summary isnt in selected shuttle list
    --

    Thanks very much.
    Also have an issue relating to forming an IN CLAUSE dynamically within an items LOV definition when using the new Cascading LOV Parent Item(s) functionality.
    I dont really understand and cant find examples of how you reference the multiple values returned from a multiselect list parent within the IN CLAUSE of a child LOV definition or the syntax.
    Wondered how would the following Child LOV definition look synctactically for both string values returned from the parent (maybe you have to insert quotes around each of the individual returned strings and replace colons with commas?) and also for numeric values returned from the parent?
    select a,b .... where col in (PARENT MULTI LOV MULTIPLE VALUES RETURNED)
    I have a parent Multiselect LOV P4_SERIES which filters another Multiselect LOV P4_SERIES_CHILD and I was previously forming the in clause for the child LOV, P4_SERIES_IN, in a Submit Process by replacing the colons with commas and quotes surrounding each comma then using this syntax to get the IN CLAUSE .... series in ('&P4_SERIES_IN.'). An example of how this breaks down is -
    P4_SERIES parent multiselect result string1:string2:string3
    Submit Process contained statement: :P4_SERIES_IN := '' || replace(:P4_SERIES,':',''',''') || '';
    After submit process P4_SERIES_IN in clause part formed as string1','string2','string3
    The child LOV, P4_SERIES_CHILD, definition is
    select .... where (series in ('&P4_SERIES_IN.') or :P4_SERIES = '-1')
    which when substituting in P4_SERIES_IN parses as
    select .... where (series in ('value1','value2','value3') or :P4_SERIES = '-1')
    With the new Cascading LOV Parent Item(s) functionality I am hoping to move the child LOV 'IN CLAUSE' formulation directly in the LOV definition instead of the Submit Process
    as the Submit Process will no longer be needed because the change of parent lov will cause the child lov SQL to be called to filter its values. The main issue I dont understand is how to form the IN CLAUSE syntactically to get the equivalent of the above. I only got this to work experimentally in the first place apologies for my newness to this syntax and lack of understanding.
    Need to combine
    select .... where (series in ('&P4_SERIES_IN.') or :P4_SERIES = '-1')
    with
    :P4_SERIES_IN := '' || replace(:P4_SERIES,':',''',''') || '';
    to give
    select .... where (series in ('string1',string2,'string3') or :P4_SERIES = '-1')
    I also have a requirement for numeric ids returned from a different parent lov into another child lov which you would presume might be done with (note ',' instead of ''',''')
    :P4_PARENT_IN := '' || replace(:P4_PARENT,':',',') || '';
    to give child lov definition
    select .... where (numcol in (1,2,3) or :P4_PARENT = '-1')
    This doesnt seem to work for me so the syntax to achieve this is not clear to me.
    Thanks

  • Why do I get an error message that my macbook pro will not accept an adobe update

    I have a Mac OS 10.9.1 and flash player version of 12.0. Now all of a sudden after latest download of adobe I get an error message that Mac OS system is not compatible with Adobe Player. Also I can"t print .pdf anymore.

    There are three Airport resets, soft, hard and factory default.  It would probably be beneficial if you tried each one in sequence.  Actually, you could jump to the factory default reset if you don't mind reconfiguring from scratch.

  • Upgrade product CS5 from CS3 to run on Mac -serial number not accepted

    Hi I spoke to your team last week before ordering CS5 for my first time buy Mac.
    I was told that I DID have a qualifying product running on my Windows laptop - I have a registred copy of CS3
    I am trying to iinstall the new CS5 onto the Mac and I am told that the serial number is valid but does not qualify for the product I have bought on your avice
    Please can you help me

    Hi there, the software for Mac OS won't accept a Windows serial number. You'll need to contact Customer Service and they'll help you to get things working. For the best assistance, I reocmmend our chat support at http://adobe.ly/tuMwkC

  • Unable to start web cache Service

    Hi,
    I have installed 9iAS-10200 version successfully on windows-2000
    but in last when it started all the selected services then
    It fail to start web cache Service....
    In event_log file of web cache error msg is like this :-
    0800 -- Information: Max Connect Count exceeds compile time limit - defaulting to connect limit: ( 744 )
    What is this error ?//
    Web Cache Admin service is running fine..
    but cache service is not....
    Any body know what may be the Problem...
    Thanx in Advance
    Akhil

    Could be a file descriptor limit problem. But this is the least of your problems. The biggest issue is that the version of Web Cache you are using is over 3 years old. You should upgrade to the latest 9.0.x version or simply download the standalone install from OTN. The URL is http://otn.oracle.com/software/products/ias/devuse.html
    This version is backward compatible with prior versions of iAS.

  • Unable to start Web Cache service on Win2000

    Hi,
    I am unable to start the Web Cache service.
    On startup the service errors out with the error as follows
    "The OracleiSuites_homeWebCache service failed to start due to the following error:
    The service did not respond to the start or control request in a timely fashion."
    I tried reinstalling 9iAS but still get the same error.
    Please let me know how to resolve this.
    Thanks,
    Sudin

    Could be a file descriptor limit problem. But this is the least of your problems. The biggest issue is that the version of Web Cache you are using is over 3 years old. You should upgrade to the latest 9.0.x version or simply download the standalone install from OTN. The URL is http://otn.oracle.com/software/products/ias/devuse.html
    This version is backward compatible with prior versions of iAS.

  • Web Cache 2.0.0.2.0 Available

    In case you haven't already noticed, Web Cache 2.0.0.2.0 is
    available for download on OTN. There is also an additional patch
    set or two available on Metalink.

    I can't figure out where is WebCache 2.0.0.2.0 stand alone
    download.
    I only found these links:
    Oracle9iAS Web Cache for Sun SPARC Solaris
    webcache20020_solaris.zip - Note: requires prior installation of
    Web Cache 2.0.0.1.0 - see the readme. (10,022,460 bytes)
    webcache20010solaris.tar.gz - (64,298 kb) - Note: This download
    is Oracle9iAS Web Cache (v2.0.0.1.0), a later version than is
    currently shipping in Oracle9iAS v1.0.2.2.
    esikit2.zip - (146 kb)
    The latest release of Oracle9i Application Server includes
    support for ESI (Edge Side Includes) technology that will improve
    the response time and scalability of even the most dynamic Web
    sites.
    Or is necesary to download "Oracle9iAS v1.0.2.2.1 Core for Sun
    SPARC Solaris"
    Best regards, Marcelo.

  • Discoverer Servlet with Web Cache gzip Compression

    Hi,
    we have some Discoverer Worksheets which we want to access by ISDN dial in (64 kbit/sec). To speed up the response time when users use this slow connection, we want to activate Web Cache gzip compression.
    But even when we enable Web Cache for Discoverer (configuration.xml), Web Cache don't compress pages generated by Discoverer Viewer. We found out that the generated responses contain the "content-disposition" HTTP-Header entry. Are we correct that this is the reason why there is no gzip compression? AND DOES ANYONE KNOW A WORKAROUND???
    Best regards,
    Matthias Scherer

    When you set the caching rules, you can also specify whether or not you want the pages to be compressed. Web Cache compresses html pages and relies on the accept-encoding: gzip from the client header to determine whether or not to send the content compressed.

  • Is it possible to enable Web Cache gzip compression with 9iAS Disco Viewer?

    Hi,
    Sorry for repeating this question. But it's very urgent and we don't have any idea yet how to solve / work around it:
    To keep it short: Is it possible to use Web Cache gzip compression for pages rendered by 9iAS Discoverer Viewer???
    Our scenario: We have some Discoverer Worksheets which we want to access by ISDN dial in (64 kbit/sec). An average page needs 2 minutes only for sending the html/javascript output rendered by Disco Viewer to the client browser.
    To speed up the response time when users use this slow connection, we want to activate Web Cache gzip compression.
    The problem: But even when we enable Web Cache for Discoverer (configuration.xml and Web Cache rules), Web Cache doesn't compress pages generated by Discoverer Viewer. We found out that the generated responses contain the "content-disposition" HTTP-Header entry. Are we correct that this is the reason why there is no gzip compression? AND DOES ANYONE KNOW A WORKAROUND (p.e. configure Disco not to add the content-disposition http header)???
    Best regards,
    Matthias Scherer

    When you set the caching rules, you can also specify whether or not you want the pages to be compressed. Web Cache compresses html pages and relies on the accept-encoding: gzip from the client header to determine whether or not to send the content compressed.

  • Problems with invalidating web cache

    Currently we display the current date (portal smart link) in the top region of each portal page. We have been having problems with the date not refreshing, rather old pages continue to be served up. I set up a database job using wvuxtil to send an XML document to invalidate all documents in the web cache under root at midnight. (The caching of every portal page is set to "content and definiton at system level" for 1440 min). This morning, the job ran but when checking the pages from a client machine, the date still displayed as yesterday's for SOME of the pages (not all)- clearing the clients IE cache made no difference. Logging on to the server, I accessed the relevant pages displaying yesterday's date on the client - and they showed the correct date on the server. Going back to the client machine, the dates are now correct ? Help anyone ? What should I be checking/looking at next ?
    Cheers
    Brent Harlow

    Hi Brent,
    Which version of Web Cache and Portal are you using? A similar problem with dates and invalidation has been reported before, so you may want to check with Oracle Support for the appropriate patch.

  • Can Web Cache rewrite HTTP_REFERER headers?

    Can Web Cache be configured to rewrite the HTTP_REFERER header to replace the Web Cache site address:port with the dispatched application server address:port?
    i.e.
    If there is a Web Cache site listening on webcache.domain:80 and it is mapped to application servers: appserver1.domain:7778 and appserver2.domain:7778.
    And a user requests page webcache.domain/page1, which contains a link to page2.
    And then the user opens the link to page2, and Web Cache decides to send the request on to appserver2.
    Can Web Cache be configured to change the HTTP_REFERER header from webcache.domain/page1 to appserver2.domain/page1?
    This is important to our application, because we want to verify that our processing pages are invoked from our application validation pages (we know this method is not 100% tamper proof).
    We would prefer to not have to change our application code to support Web Cache
    Thanks for any info or suggestions, -Steve

    Thanks Jean
    I've added comments to extracts from your post.
    Let's say you suddenly get a request for p2, even if
    it was from the history of the browser, it would still
    contain a referer header of p1, and is no different
    from what it would be when the user was going through
    the proper steps? Are you saying the p2 generated from
    your JavaScript will have a different referer from the
    p2 generated from browser history? If so, how are they
    differ exactly?The browser history does not include the referer. So p2 requested from the history list does not include a referer although the original link from p1 did.
    Without Web Cache, the flow is:
    Step 1: a user requests appserver/page1. page1 is added to the browser history. page1 is loaded and executes JavaScript to display page2 in an iFrame. page2 is not added to the browser history (just like style sheets and other embedded requests do not get included in the history). page2 is loaded and executes JavaScript to submit an html form to load page3 into a hidden iFrame and wait for it to load. page3 is added to the browser's history becuase it was submitted; not embedded. Assuming that the request for page1 came from the browser's history, favorites, a link from an e-mail (the usual for us), or was entered manually - there will be no referer for page1. The expected referer for page2 is appserver/page1, and the expected referer for page3 is appserver/page2.
    Step2: while processing page3, the application compares the server name in the requested URL (appserver/page3) with the server name from the referer URL (appserver/page2), if the servers match, page3 accesses the database and sends the requested data to the browser
    Step3: JavaScript in page2 detects that page3 has loaded, interprets the results from page3, updates the content displayed by page2, and returns control to the browser user
    Since this works with your app, how is webcache in
    front going to break it? Note that when passing a
    request
    to the app server, web cache does not modify the
    host header in the request.without Web Cache the browser sends requests directly to the appserver, so the request/referer entries seen by the application look like:
    appserver/page1 -
    appserver/page2 appserver/page1
    appserver/page3 appserver/page2
    with Web Cache the browser sends requests to webcache, so the request/referer entries seen by the application look like:
    appserver/page1 -
    appserver/page2 webcache/page1
    appserver/page3 webcache/page2
    This is because the Web Cache changed the request URL and did not change the referer URL.
    So request to webcache.domain/abc will be sent to your
    app server as is.I don't think so, doesn't the requested URL change as a result of the Web Cache mapping? i.e. webcache.domain/abc --> appserver.domain/abc
    And since we do not change the referer
    header, either, whatever works for your app now should
    still work for you with webcache in front. This is
    assuming you only do comparisons on the 2 hosts to see
    if they are the same. Web Cache is changing one (request URL) of the two items (request URL and referer URL) that the application server compares.
    The reason has been that we are
    a cache, and in principal should be as transparent
    as possible, so we try to stay away from app-sever/
    apache like functionality.I support that principle 100% - from the application server perspective, it should not need to differentiate between a request directly from a browser, and a request that was issued by the cache on behalf of a browser.
    The cache should completely pretend that it is the originating browser. A browser sends the request and the referer URLs. In application flow, a relationship can be inferred/required between the two URLs. Web Cache is changing one without changing the other and breaking the relationship that the application server would normally expect.
    But I'm still
    not convinced that you need that in webcache. :)If we want to use Web Cache in front of this application, without changing the application, then we need it. :)
    Of course, we could change our application, but the more I think about the principles involved, the more I believe that it is the cache that needs changing. However, I will take another look to see if there are other standard headers related to a request that are present with and without Web Cache, and that can be used to reliably compare the server in the request URL with the server in the referer URL. If there are, then I can happily change our application so that it will work with or without Web Cache.
    -Steve

  • Everytime I load upgraded Firfox 3.6.6 I get an error message saying the new version does not accept the proxy setting.

    Every time I load the newest version of Firefox 3.6.6 it says it is not accepting the proxy setting. Since I've never had a problem like this, I don't know how to correct it.
    == This happened ==
    Every time Firefox opened

    In Firefox 3.6.4 the default connection settings have been changed to "Use the system proxy settings".
    See "Connection settings": [[Firefox cannot load websites but other programs can]]
    You can find the connection setting here: Tools > Options > Advanced : Network : Connection
    If you do not need to use a proxy to connect to internet then select ''No Proxy''

  • Upgrade 4.41 to 4.5 not acception connections

    hi,
    i have tar my sgd 4.41 and transfert on a new server then install the rpm 4.5.
    next i stop my old 4.41 and tarantella uninstall and tarantella start
    next i get the login but hang on sun logo
    why /opt/tarantella/bin/tarantella status said
    Array members (1):
    - www1 (primary): NOT ACCEPTING CONNECTIONS.
    do i need to upgrade my license number ?

    right license list retreive my license number.
    i have clean the logs directory and restart tta.
    now i get a missing file ?
    2010/01/20 09:55:44.553 (pid 11420) server/login/error #1263977744553
    Sun Secure Global Desktop Software (4.5) ERROR:
    Failed to load ./com.sco.tta.server.login.NamedUserLicensingLoginFilter.properties.
    Exception was: javax.naming.NameNotFoundException: com.sco.tta.server.login.NamedUserLicensingLoginFilter.properties [Root exception is java.io.FileNotFoundException: /opt/tarantella/var/serverconfig/global/beans/com.sco.tta.server.login.NamedUserLicensingLoginFilter.properties/com.sco.tta.server.login.NamedUserLicensingLoginFilter.properties]
    this file exists in 4.41

  • Website will not accept Firefox 4; also,can't tell whether any connection is encrypted--how do I get back to earlier versions( my 3.6 file is corrupted)?

    I bank by the internet. I upgraded to Firefox 4.0, and my bank indicates it does not accept this version of Firefox. Also, I was using 4.0 to order some products over the internet, and noticed that the "padlock" indicating a secure(encrypted) connection is not present on the 4.0 version--so I did not complete my order.
    When I tried to reload my previous version(3.6), I got a message that the file was corrupted(possibly because I upgraded to 4.0). I didn't have these problems before I upgraded to 4.0--how do I get a clean version of Firefox 3.6( your website only offers 4.0)?

    In Firefox 4 you no longer have the Status bar that showed the padlock in previous Firefox versions.
    You can click the "Site Identity Button" on the left end of the location bar to see the padlock.<br />
    See: [[Site Identity Button]]
    A click on the "More Information" button will show details about the connection.<br />
    The background color of the "Site Identity Button" on the left end of the location bar will change color (blue or green) and show the domain in case of a secure https connection.
    * Hover the Site Identity Button then to see "Verified by xxxx"
    * Click the [[Site Identity Button]] on the left end of the location bar to see the padlock
    * Click the "More Information" button in that pop-up to see additional information about the connection.
    You can find Firefox 3.6.x here:
    *http://www.mozilla.com/en-US/firefox/all-older.html

Maybe you are looking for

  • "ORA-1715 : UNIQUE may not be used with a cluster index" but why?

    "ORA-1715 : UNIQUE may not be used with a cluster index" but why and what "may" means here? Any comments will be welcomed, thank you and best regards; show rel release 1002000300 CREATE CLUSTER sc_srvr_id ( srvr_id NUMBER(10)) SIZE 1024; SELECT clust

  • HELP...need info on rewire...

    I've been running current Logic 8 with OSX 10.5.2. Last nite I installed Melodyne 3.1 and Recycle 2.1 Both were running fine.. This morning, Logic 8 would crash every time on start up. The crashed thread. had 00's and ??'s in it.. The thread before i

  • Files disappear at file transfer

    I connected to my selfphone through IrDA and transfered picture files through Nokia PC Suite. I moved them to a folder, and when it finished "moving", the files weren't in the folder nor in the selfphone anymore. **bleep**?

  • Mission Control crashing

    I have installed Lion a few moments ago. Mission Control is not working. It crashes every time and I see the following message on console: 20/07/11 19:11:41,991 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSAp

  • Creating a button that leads back into the main Pages/States from a custom component

    Hello Y'all! isnt F.C. awesome! BUT... just cant get a button that leads from a custom component ive made back into the main bulk of pages and states ive created to work. it runs a bit like this: Main title page...                         Photography