Macbook creating weird application problem

everytime i download a program; for example Skype, i follow everything and copy the icon to my application folder after installation is done. however, when i open my applications folder to use it, it has a weird "do not enter" logo instead of the regluar logo. how can i fix this?

Try resetting PRAM, SMC, and safe boot. Most likely, that will not resolve the issue. Send it in for a repair.

Similar Messages

  • Macbook Pro weird boot problems

    Hello!
    I have a macbook Pro (late 2012) with OS X Yosemite (latest update) and I have some weird stuff going on in it...
    2 days ago, I was using normally it, as I use it for work, when it suddenly freezes (never happened before). when i turn it on again, a empty symbol shows instead of the grey apple until i turn it off.
    then, when i opened the recovery mode to see if my HD was damaged or something, it just do not shows my HDD at all to verify for integrity. I trun it off and let it be.
    After several hours later, i decided to try to boot it again, and, for my surprise, it boots normally and all my files are normal. But after 10-15 minutes backing up all my important files to cloud services, it begins to be really slow. The spinning disk is shown even when i tried to close a finder window, move simple pages files or even to open the top menu to shut it down. The weird part is going even crazier: when i put a freezing gel (a gel packet that freezes and thaw without water is involved) under the macbook, the slowness is off and it works almost at normal speed. when the freezing effect is off, the slowleness is back
    All this parts repeats very often.. sometimes the empty symbol appears when booting, sometimes it boots normally and after several minutes it becomes really slow. I tried to diagnose if a hardware problem was involved (pressing "D" after pushing the power button), but no problems were found at all.
    what is going on? do you guys even had this? I hope it´s not the logic board!
    (Sorry for my bad english)

    The startup drive is failing, or there is some other internal hardware fault.
    Back up all data on the drive immediately if you don't already have a current backup. There are ways to back up a computer that isn't fully functional—ask if you need guidance.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    Apple also recommends that you deauthorize a device in the iTunes Store before having it serviced.
    *An SSD doesn't need to be zeroed.

  • Macbook Air weird audio problem?

    Hello all,
    This is about an issue I have with my speakers, I realize there are alot of similar questions out there, but I have yet to find a solution, and since none of the cases I have read completely matched my situation I thought I might as well make a new post.
    About a year ago my laptop (Macbook Air 2,1 late 2008) speakers suddenly gave out during a movie, I always assumed I blew my speakers because of the weird sound they made right before they died. Since then I have always used headphones or external speakers whenever I needed audio, but it does get a bit tedious at times..
    Just recently I was browsing through my preferences when I noticed something odd. In the sound panel the output name was referred to as "Internal Speakers" but under output type it said "Headphone Port". Now, whenever I plug in my headphones or external speakers it says "Headphones" under output name and "Headphone Port" under type, which makes sense. But if it were just my speakers that are physically broken, shouldn't it still say "Built-In Output" under output type if the headphones are unplugged?
    I was wondering/hoping that this might be some kind of software problem after all, and that it could still be fixed. Maybe somebody on the forums would be so kind as to give me their thoughts on this? Please note that I do not hear a chime on start up, I can adjust my volume just fine and there is no red light coming out my headphone port (I've had this issue before and was abe to solve it). I have already tried an NVRAM reset, but no luck..
    Is there anything else I could try?
    Thanks,
    Genkakuzai

    UPDATE: I performed an smc reset as well, the audio type change to "Built-in", but shouldn't it say "Built-in Out"?

  • Macbook Air Weird Sound Problem

    Hi,
    I have the following problem: the sound stopped working on my macbook air (the previous model). I was sure that it is hardware issue: sometimes it appears for a couple of sec, then disappears, sometimes I have the sound with weird noise in the background. I wanted to get it to service center, but I need the laptop for use and can't get it to repairs for at least a month. However, later I found that when I boot from bootcamp and use windows 7 - the sound works perfectly. I assume that if it is working in windows 7 - then it could be non-hardware problem. Do somebody have any recommendations what to do?
    Thanks for your help!

    You should post your message in the proper thread. This thread is for the new MBA.

  • Creating new application problem

    I try to create a new application to switch streams. I call it "studia".
    I place the server-side code in a file named main.asc and create new folder "studia" in the rootinstall/applications folder.
    I copy main.asc file to this folder and start Adobe Flash Media Live Encoder 3 and try to broadcast to this URI (localhost/studia) with stream name "livestream1".
    My application do not start, in fms consol do not appear application name and Live Encoder say me "Falure to connect to primary server".
    I add the string "studia_DIR = C:\Program Files (x86)\Adobe\Flash Media Server 4.5\applications\studia" to the fms.ini file script and restart my computer.
    I repeat my attempt - the same answers and no effect from application "studia".
    I create folder "mixer" in the rootinstall/applications/studia folder, create folder "script" in this folder, replase main.asc file to it and start Adobe Flash Media Live Encoder 3 and "livestreams" application to broadcast to URI localhost/studia/mixer (or even to  localhost/studia) by two streams with stream names "livestream1" and "livestreams2" - broadcasts are suссesful, the application name "studia/mixer" (or even  studia/_definst_) appear in the fms console with client=2.
    But application "studia" do not work.
    Here is my main.asc script:
    application.myRemoteConn = new NetConnection();
    application.myRemoteConn.onStatus = function(info){
        trace("Connect " + info.code + "\n");
        // Reply to all clients
        for (var i = 0; i < application.clients.length; i++){
            application.clients[i].call("onServerStatus", null, info.code, info.description);
    // Use NetConnection object to remote server connect (the remote server works with other application wery good)
    application.myRemoteConn.connect(rtmp://RemoteServer/live/);
    // Server stream estimation
    application.myStream = Stream.get("livestream");
    if (application.myStream){
        // Switching sequence of liveStreams
        application.myStream.play("liveStream1", -1, 15);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
    I have few questions:
    1. Why application "studia" do not start when I create folder "studia" in the rootinstall/applications folder, place main.asc in it and broadcast "livestream1" to this folder by Flash Media Live Encoder?
    2. Why application "studia" begin to work only when I create folder "mixer" in the rootinstall/applications/studia folder and place main.asc file to rootinstall/applications/studia/script folder?
    3. Why FMS do not execute main.asc script?
    What i do wrong?

    Is it means that my main.asc code:
    application.myRemoteConn = new NetConnection();
    application.myRemoteConn.onStatus = function(info){
        trace("Connect " + info.code + "\n");
        // Reply to all clients
        for (var i = 0; i < application.clients.length; i++){
            application.clients[i].call("onServerStatus", null, info.code, info.description);
    application.onConnect = function(clientObject){
    clientObject.callFromClient = function(){
    trace("The client just invoked callFromClient);
    // Use NetConnection object to remote server connect (the remote server works with other application wery good)
    application.myRemoteConn.connect("rtmp://RemoteServer/live");
    // Server stream estimation
    application.myStream = Stream.get("livestream");
    if (application.myStream){
        // Switching sequence of liveStreams
        application.myStream.play("liveStream1", -1, 15);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
        application.myStream.play("liveStream2", -1, 5, false);
        application.myStream.play("liveStream1", -1, 5, false);
    must to be like this one?
    and where I must to place this fragment:
    // Create a remote method on the Client class prototype
    Client.prototype.callFromClient = function(){
    trace("The client with ID "+this.id+" just invoked callFromClient);
    in client side code?

  • I have the Numbers-applications on both Mac mini and Macbook Air. My problem is that they don't sync so when I create a Numbers-file on the MacBook  while travelling, it will not be on my Mac mini when I get home :(((

    I have the Numbers-applications on both Mac mini and Macbook Air. My problem is that they don't sync so when I create a Numbers-file on the MacBook  while travelling, it will not be on my Mac mini when I get home :(((

    Hey iWeb plubishing problems,
    I would first check to make sure that you meet the system requirements for OS X to support Documents in the Cloud. For that your Mac’s needs to be running at least OS X Lion 10.7.5 or later to make sure that everything syncs. Take a look at the article below for more information. 
    iCloud: Troubleshooting Documents in the Cloud
    http://support.apple.com/en-us/HT203517
    Take care,
    -Norm G. 

  • A problem when I try to create a application view throug a Bea MQSeries Adapter8.1

              Hi, guys!
              I have installed Weblogic platform 8.1 beta, and try to use the MQSeries Adapter
              which provide by Bea weblogic, and it's seems I must deploy the .ear file which
              is an application include the MQ Adapter, on a domain which provide the Integration
              function, the ear file I was download from bea site. So I deploy it in the samples/domain/platform
              domain as the docs told me. And after that I create a new directory called session
              and a subdirectory contain a manifest.xml file, I do this also due to the docs
              provide by Bea. And then I can create the application view in the application
              view console, BUT, when I try to add a Event in the console, the page and OS console
              both print this message :
              DEBUG 21 ?? 2003 20:43:11,906 BEA_MQSERIES_1_0.DesignTime - getMergedDictionary
              got exception:
              DEBUG 21 ?? 2003 20:43:11,906 BEA_MQSERIES_1_0.DesignTime -
              StackTrace:
              java.lang.NullPointerException
              at com.ibi.beamqseries.web.DesignTimeRequestHandler.getMergedDictionary(DesignTimeRequestHandler.java:372)
              at jsp_servlet.__addservc._jspService(__addservc.java:120)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1047)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:383)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:301)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:547)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:364)
              at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:153)
              at jsp_servlet.__display._jspService(__display.java:632)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1047)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:383)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:301)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6319)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:97)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3525)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2553)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
              And I'm not quit sure about how to make the Schema directory correcttly, I just
              make one manifest.xml file. and hope I can find more document about the adapter,
              or can fix this problem.
              by the way, I just have userguid, installguide and releasenotes pdf file which
              can be download from Bea
              Regards,
              shannon
              

    Can you tell me the exact url of the BEA_MQSERIES_8_1.ear?
              Please give it to me... Thanks in advance...

  • Problems in creating a application system

    RME-00011: Operation 'open' on ACTIVITY has failed
    RME-00011: Operation 'INS' on ci_application_systems has failed
    These are the errors i get when i try and create a application system. Can some plz tell me what to do exactly. Iam all confused.
    Thanks

    It doesnt work, because i deleted the ' while chaning the caption to currency....
    OK here is my original Text....
    chart:
    <Graph graphType="PIE">
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData rowCount="{count(xdoxslt:group(DATA/query_DATA/ROW, 'POS_EURO_TXT'))}" colCount="1">
    <RowLabels>
    <xsl:for-each-group select="DATA/query_DATA/ROW" group-by="POS_EURO_TXT">
    <xsl:sort select="POS_EURO_TXT"/>
    <Label><xsl:value-of select="current-group()/POS_EURO_TXT"/></Label>
    </xsl:for-each-group>
    </RowLabels>
    <DataValues>
    <xsl:for-each-group select="DATA/query_DATA/ROW" group-by="POS_EURO_TXT">
    <xsl:sort select="POS_EURO_TXT"/>
    <RowData>
    <Cell><xsl:value-of select="sum(current-group()/NET)"/></Cell>
    </RowData>
    </xsl:for-each-group> </DataValues>
    </LocalGridData>
    </Graph>
    <DATA>
    <query_DATA><ROW>
    <KUNGRUPPE>ABC</KUNGRUPPE>
    <POS_EURO_TXT>USD</POS_EURO_TXT>
    <NET>7785763.25</NET>
    </ROW><ROW>
    <KUNGRUPPE>ABC</KUNGRUPPE>
    <POS_EURO_TXT>EURO</POS_EURO_TXT>
    <NET>15242332211.9</NET>
    </ROW><ROW>
    <KUNGRUPPE>XXX</KUNGRUPPE>
    <POS_EURO_TXT>EURO</POS_EURO_TXT>
    <NET>7894268.84</NET>
    </ROW></query_DATA>
    </DATA>
    Greetings

  • Modify a  Page created in Application Builder (cursor problem)

    I created a application in the 'Application Builder' that comes with Oracle Express. I can not get the cursor to start in the first field if that field is a 'text field automatically submit when enter pushed'. it only works when I change that field to 'text field'.
    Is there a way to fix this?
    or
    Can I pull up the code for that page and modify it manually?
    or
    Can I open that form in JDeveloper?
    Thanks.

    Hello Garrett,
    Around here, apex, ApEx, APEX, is short for Oracle Application Express.
    Oracle XE comes with Oracle Application Express, however it is Application Express version 2.1. The latest production version of Application Express is version 3.2.1.00.12. See here: http://www.oracle.com/technology/products/database/application_express/download.html for information on upgrading your version of ApEx to the latest version. It provides tons of improvements over what was already a sweet tool.
    Application Builder is just one of the tools (albiet the primary tool) in ApEx. It sounds like you're definitely going to want to spend some time with the Help, and also in the number of tutorials available at http://apex.oracle.com/i/index.html to get up to speed with it. There's too many places to list here where you can incorporate Javascript into your applications - but check out the help and tutorials and I'm sure you'll soon no longer be a "total noob"! I'm assuming you do mean Javascript - not Java - two very different languages used for two completely different things.
    Hope this helps,
    John

  • Weird internet problem / ssl connection error, site loads in safari not in firefox or other way around

    I really can't figure out this problem. Search the internet tried all kinds of things, nothing help so far.
    I have a Macbook Pro (Lion originally installed) running on Mavericks (all latest updates). SSD installed and the DVD tray is replaced by the original HDD.
    The laptop wasn't running very smooth anymore so decided to give it a fresh Mavericks install (even though I know it's not really necessary for mac, it helped, everything is much faster except a weird internet problem came up).
    After freshly installing Mavericks I couldn't get into my google account anymore, just wouldn't load. Tried Safari (use this normally) and Firefox and Chrome, this last was gave a SSL connection error, both Safari and FF said the website couldn't be loaded because the server didn't respond. For Gmail I use Mailplane which is just stuck on a white page. I tried repairing the keychain, repaired disk and disk permissions, cleaned browsers, turned off firewall and antivirus (Shopos) started in safe mode, checked time settings which were all good. Nothing of this helped. I even ended up creating a usb bootdisk for Mavericks, formatted the disk and reinstalled from the start just Mavericks and nothing else, started Safari, still the same problem. As even this didn't help I figured it's not worth reinstalling all software so put back my backup.
    Now I ended up somehow only being able to use Gmail normally in Firefox, Chrome still gives SSL error and Safari can load the inbox, but I can't open any messages. I get the error there is a problem with the connection. If I try in Basic HTML mode it surprisingly does work.
    You would say, just use Firefox, finished...but the thing is that sometimes random websites won't load in Firefox, when I load the same site in Safari it works perfectly.
    O yes, I also tried the connect to my iPhone and use the Cellular data network, then it's no problem using Gmail in Safari normally. You would say it's a router problem, but I have another Macbook Pro (just one model later running Mountain Lion) this one works perfectly with every browser. Also my iPhone does everyting logged into the WiFi network.
    You can understand I really have no clue what's going on here, I don't see any logic. I can only think of a hardware problem in my Macbook, but don't see how that could cause these problems.
    I hope someone is ably to help me ?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • After downloading software for 123Cheese Photobook (Australia), when I try to open the program, i get: "Initialization error... Could not create the application support directory 'Macintosh HD:Library:Application Support:123 Cheese:'. Please help.

    After downloading software for 123Cheese Photobook (Australia), when I try to open the program, i get: "Initialization error... Could not create the application support directory 'Macintosh HD:Library:Application Support:123 Cheese:'. Please help. The MacBook Pro is one day old.
    Thanks

    Hi, Im am also having this same problem,same message, trying to make a photobook with a non-refundable voucher. my Macbook pro is like 2 months old and im up to date with all of my updates.
    What ended up happening with this problem for you because, Ive emailed cheese123 3 times and they haven't replied???
    Can you help me? Thanx

  • Error while creating OCA application in NWDS 7.1

    Dear Experts,
    I am creating mobile application for Handhelds (OCA) using mobile 7.1.
    I created the service component, ui component and application component. Added the dependencies, build the application, uploaded the 3 components to the server, assigned it to my device.
    But when I login into the mobile client in PDA, in application launcher screen, no application appears. In Device admin portal when i check, the status of MCD is installed.
    Also when i simply run the application from NWDS using the built in PDA simulator, the application doesnt show any data and on the NWDS console i get the following error
    2009-02-10 20:22:22 ...  (com.sap.tc.mobile.cfs.pers.PersistenceManager:release resultset) Thread: Finalizer Error: java.sql.SQLException: Result set is closed
    I am sure the coding part is not a problem. As before this application i created a similar application for Laptops and its working fine.
    Reply Awaited
    Regards
    Priya

    Hi Veera/Abhi
    I have installed MinDB and all the required files on the PDA. It is synchronizing with the middleware.
    On my NWDS PDA  Simulator , the application is appearing but when i click on the application there is no data and it is giving exception
    2009-02-11 13:02:40 ...  (com.sap.tc.mobile.cfs.pers.PersistenceManager:release resultset) Thread: Finalizer Error: java.sql.SQLException: Result set is closed
    Madhu--
    Please find my ans to the following points mentioned by you
    1) BASIS SWCV must be assigned in the Distribution Model Software Component Version tab of the device.
    It is assigned
    2) Activate the "DISTRIBUTE_USER_DETAILS" Rule in the admin.
    Rule is activated
    3) Activate the "DISTRIBUTE_USER_AUTHORIZATIONS" Rule in the admin.
    Rule is activated
    4) Make sure that you have installed the following components in the following sequence in the PDA
    - Creme
    - MinDB/DB2e
    - PDA_eswt_container
    - PDA Runtime.
    Client is  installed in this sequence only. I referrred to help.sap.com while installing
    the application should atleast work in the NWDS PDA simulator. My basic problem is it is not picking  up the data. giving the above mentioned error.
    Regards
    Priya

  • Error While create web application

    When I try to create new web application on my server it return error as the Virtual directory already in use. For example if I create the web application in 9090 port means it shown the error the virtual directory 9090 was already used by other application
    . but I am sure there are no site in the directory. I am try with 3 or 4 different port same problem. I have try to create web application with host header and without host header also same problem was occur.
    Any Suggestion? Thanks in advance
    Ravin Singh D

    Hi Ravin,
    According to your description, my understanding is that you got an error when you create a new web application.
    Please log on the server with administrator account.
    And please check the followings:
    Ensure you have a proper dns name / entry in the hosts file of your server for the new url you are wanting to create.
    Ensure you have typed in the ‘host header’ typed in when creating the new web application.
    If this doesnt work, open IIS Manager – Start>run> inetmgr> and verify the home directory – it could be located on a different drive.
    More information:
    http://www.jeremytaylor.net/2010/01/13/the-directory-cinetpubwwwrootwssvirtualdirectories80-is-already-being-used-by-another-iis-web-site-choose-a-different-root-directory-for-your-new-web-application/
    If this issue still exists, please check the log file to find more information about this issue. The path of the file is: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • CAN SOMEONE SOLVE THIS APPLICATION PROBLEM? URGENT!

    As per the installation instruction in the "Read Me for
    Installing Schema and Examples for the Tutorial " write-up, I
    executed all the scripts listed there. But when I try to add
    the application component portlet, I do not find the
    TUTORIAL30_APPLICATION listed under TUTORIAL APPLICATION. When I
    try to access the TUTORIAL30_APPLICATION by clicking the
    Applications under the provider "Oracle Portal", it lists the
    TUTORIAL30_APPLICATION but when I try to select this
    application, it gives the following error messages:
    NOTE: THIS PROBLEM I AM FACING WHATEVER I CREATE UNDER
    APPLICATION and TRY TO ADD IT. WHEN I TRY TO FIND OUT MY
    PARTICULAR FORM OR REPORT UNDER MY NEWLY CREATED APPLICATION
    ALSO, THE PROBLEM IS SAME. SHOULD I RE-INSTALL PORTAL FROm THE
    SCRATCH?
    <!--StartFragment-->PORTAL30.wwpob_page.render_portlet_screen:
    SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: P_APP_ID
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:^^9
    DAD name: portal30
    PROCEDURE : PORTAL30.wwpob_page.render_portlet_screen
    URL :
    http://GALAXY:80/pls/portal30/PORTAL30.wwpob_page.render_portlet_
    screen?
    p_providerid=927142&p_portletid=10&p_referencepath=&p_mode=100&p_
    back_url=&p_app_id=1880851862
    PARAMETERS :
    ============
    P_PROVIDERID:
    927142
    P_PORTLETID:
    10
    P_REFERENCEPATH:
    P_MODE:
    100
    P_BACK_URL:
    P_APP_ID:
    1880851862
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Apache/1.3.12 (Win32) ApacheJServ/1.1
    mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.22
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=GALAXY
    REQUEST_METHOD=GET
    QUERY_STRING=p_providerid=927142&p_portletid=10&p_referencepath=&
    p_mode=100&p_back_url=&p_app_id=1880851862
    PATH_INFO=/pls/portal30/PORTAL30.wwpob_page.render_portlet_screen
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=127.0.0.1
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.5; Windows
    NT 5.0)
    HTTP_HOST=galaxy
    HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg,
    image/pjpeg, application/vnd.ms-excel, application/msword,
    application/x-comet, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-us
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=portal30=1099809DBE27A307E6FF5A5FF7E396AF52E5454321FA
    A327D5BB5E6DA30D30796B206707FAE9EB7BD8790F59A74BBB23B583571C566D2
    DADAA731C1568F3FCB57FBF52030A3048D4134154E7045BD074000B614984DF6A
    3F;
    portal30_sso=2FB35B6FA45359778768C27D9B08A5F491569395DDA49D88BC88
    C9AF1C05A5AAAA444725B5302FDCE62BDF1DE2596D12314B3C01B14129371F9BC
    3E2281C7BF3E737399C65AC10E97D8441700B9D7A9DE7DEDD8E5D64A8F7
    Authorization=
    HTTP_IF_MODIFIED_SINCE=
    Please look into the problem and provide me the solution.
    If I want to un-install the tutorial etc. what should I do?.
    I suspect in the execution of the following command script:
    cd ..\src\wwu\appimp.cmd -s <PortalOwner_username> -p
    <PortalOwner_password> -m CREATE -a TUTORIAL30_APPLICATION -f
    <demo_dir>/hlw30_trl_comp.sql -o portalnew -c <connect_string>
    I executed the above command as follows:
    c:\pschema> appimp.cmd -s portal30 -p portal30 -m CREATE -a
    TUTORIAL30_APPLICATION -f hlw30_trl_comp.sql -o portalnew -c
    ORCL8
    How to re-execute the above script?. I tried to re-execute the
    above script by deleting the TUTORIAL30_APPLICATION rows from
    wwv_modules$ table, but the appimp.cmd script terminated after
    the following messages:
    ...Importing component: ID = 3365687784 Name = TUTORIAL_HRREP
    Owner = TUTORIAL30_APPLICATION Type = REPORT
    Input truncated to 6 characters
    Disconnected from Oracle8i .......
    Thanks,
    A. Moyeed
    E-mail: [email protected]
    Note:
    OS Windows 2000 Professional
    Database: Oracle 8.1.6.0.0
    Portal 3.0.6.3.3

    InPHeCTed wrote:
    Most Wifi hotspots are configured for PC's and not Macs. Most will work with macs, but will have some issues. Unfortunately there is no way to solve this other than asking the hospitals to update their wifi network with Mac-friendly wireless routers
    How do you configure a hot spot for PC only? What are "Mac-friendly wireless routers"? Hot spots use wifi technology based on 802.x. This is a wifi standard supported by wifi routers, PCs, and Apple products.

  • How to create an application with a 'Windows' like interface?

    Hi,
    I am trying to create an application with an windows like interface where menu selections need to open bound taskflows in a page/window but i can not get it to work. I did the following
    - i created a page template with a panelStretchLayout
    - added a menuBar with commandMenuItems
    - created a start page based on the template
    - created bound taskflows with page fragments for all menu items
    - placed a dynamic region on the start page which initially shows a taskflow with an empty/blank page fragment
    - change the dynamic region taskflow from every menuitem and added partial triggers on the dynamic region for every menu item
    When i run the application the first empty page fragment is showed correctly but when i select a menu item the correct new page fragment is showed but it keeps showing a loading data .... hint and seems to freeze. So no data is showed while the underlying datacontrols work while using the bc tester.
    Besides this problem i am wondering if i at all am going the right way with this with using a dynamic region? In the final application i will have a total of about 25 menu items over several menus and if they all will be showing in one main dynamic region with partial triggers set to all menu items it may get a bit complex? I saw you can also create a window in a popup which i like even more because it looks like an actual window but this is modal. I would like a bound taskflow to be opened whenever a menu selection is made.
    Any pointers or tips or the solution to not showing data?
    Kind Regards,
    Andre

    Hi Sascha,
    If have not encountered that problem. Are you sure you have a taskflow entry under the executables tag in the page definition of the page which has the dynamic region on it? I have one like this:
    <taskFlow id="dynamicRegion1" taskFlowId="${DynamicRegionBean.dynamicTaskFlowId}" xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
    During the selection of its initial value when it is rendering for the first time it should have the session bean already initialized. My bean looks like this:
    public class DynamicRegion {
    private String taskFlowId = "/WEB-INF/startTF.xml#startTF";
    public DynamicRegion() {
    public TaskFlowId getDynamicTaskFlowId() {
    return TaskFlowId.parse(taskFlowId);
    public String feitenTF() {
    taskFlowId = "/WEB-INF/feitenTF.xml#feitenTF";
    return taskFlowId;
    public String themasTF() {
    taskFlowId = "/WEB-INF/themasTF.xml#themasTF";
    return taskFlowId;
    public String feitCategorienTF() {
    taskFlowId = "/WEB-INF/feitCategorienTF.xml#feitCategorienTF";
    return taskFlowId;
    The startTF is the initial taskflow and the other methods are being called from my menu. The dynamic region has the menu items as partial triggers. That is all i did.
    Kind Regards,
    Andre

Maybe you are looking for