OS 10.7 and iBook  Help needed

I just installed OS 10.7 on my iBook and have no sound.  In System Preferences I can't access any of the options to select devices.  I also get an Insecure Starup Item disabled message. because a device does not have the proper security settings.  HELP

Be sure to read what it says under the screen on the screen frame itself.  Do not attempt to call it what it is not.  Apple stopped making iBook computers May 15, 2006 and after that point the polycarbonate case notebooks from Apple which was sometimes black, sometimes white was known as the MacBook.  Briefly in 2008-2009 they had a model which was aluminum casing but slower than the MacBook Pro.  But the label on the screen frame told you what it was all along.

Similar Messages

  • [Mostly Sorted] Extracting tags - regexp_substr and count help needed!

    My original query got sorted, but additional regexp_substr and count help is required further on down!
    Hi,
    I have a table on a 10.2.0.3 database which contains a clob field (sql_stmt), with contents that look something like:
    SELECT <COB_DATE>, col2, .... coln
    FROM   tab1, tab2, ...., tabn
    WHERE tab1.run_id = <RUNID>
    AND    tab2.other_col = '<OTHER TAG>'(That's a highly simplified sql_stmt example, of course - if they were all that small we'd not be needing a clob field!).
    I wanted to extract all the tags from the sql_stmt field for a given row, so I can get my (well not "mine" - I'd never have designed something like this, but hey, it works, sorta, and I'm improving it as and where I can!) pl/sql to replace the tags with the correct values. A tag is anything that's in triangular brackets (eg. <RUNID> from the above example)
    So, I did this:
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       export_jobs
    WHERE      exp_id =  p_exp_id
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))Which I thought would be fine (having tested it on a text column). However, it runs very poorly against a clob column, for some reason (probably doesn't like the substr, instr, etc on the clob, at a guess) - the waits show "direct path read".
    When I cast the sql_stmt as a varchar2 like so:
    with my_tab as (select cast(substr(sql_stmt, instr(sql_stmt, '<', 1), instr(sql_stmt, '>', -1) - instr(sql_stmt, '<', 1) + 1) as varchar2(4000)) sql_stmt
                    from export_jobs
                    WHERE      exp_id = p_exp_id)
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       my_tab
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))it runs blisteringly fast in comparison, except when the substr'd sql_stmt is over 4000 chars, of course! Using dbms_lob instr and substr etc doesn't help either.
    So, I thought maybe I could find an xml related method, and from this link:get xml node name in loop , I tried:
    select t.column_value.getrootelement() node
      from (select sql_stmt xml from export_jobs where exp_id = 28) xml,
    table (xmlsequence(xml.xml.extract('//*'))) tBut I get this error: ORA-22806: not an object or REF. (It might not be the way to go after all, as it's not proper xml, being as there are no corresponding close tags, but I was trying to think outside the box. I've not needed to use xml stuff before, so I'm a bit clueless about it, really!)
    I tried casting sql_stmt into an xmltype, but I got: ORA-22907: invalid CAST to a type that is not a nested table or VARRAY
    Is anyone able to suggest a better method of trying to extract my tags from the clob column, please?
    Message was edited by:
    Boneist

    I don't know if it may work for you, but I had a similar activity where I defined sql statements with bind variables (:var_name) and then I simply looked for witch variables to bind in that statement through this query.
    with x as (
         select ':var1
         /*a block comment
         :varname_dontcatch
         select hello, --line comment :var_no
              ''a string with double quote '''' and a :variable '',  --:variable
              :var3,
              :var2, '':var1'''':varno'',
         from dual'     as string
         from dual
    ), fil as (
         select string,
              regexp_replace(string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null) as res
         from x
    select string,res,
         regexp_substr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level)
    from fil
    connect by regexp_instr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level) > 0
    /Or through these procedures
         function get_binds(
              inp_string in varchar2
         ) return string_table
         deterministic
         is
              loc_str varchar2(32767);
              loc_idx number;
              out_tab string_table;
         begin
              --dbms_output.put_line('cond = '||inp_string);
              loc_str := regexp_replace(inp_string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null);
              loc_idx := 0;
              out_tab := string_table();
              --dbms_output.put_line('fcond ='||loc_str);
              loop
                   loc_idx := regexp_instr(loc_str,'\:[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
                   exit when loc_idx = 0;
                   out_tab.extend;
                   out_tab(out_tab.last) := regexp_substr(loc_str,'[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
              end loop;
              return out_tab;
         end;
         function divide_string (
              inp_string in varchar2
              --,inp_length in number
         --return string_table
         return dbms_sql.varchar2a
         is
              inp_length number := 256;
              loc_ind_1 pls_integer;
              loc_ind_2 pls_integer;
              loc_string_length pls_integer;
              loc_curr_string varchar2(32767);
              --out_tab string_table;
              out_tab dbms_sql.varchar2a;
         begin
              --out_tab := dbms_sql.varchar2a();
              loc_ind_1 := 1;
              loc_ind_2 := 1;
              loc_string_length := length(inp_string);
              while ( loc_ind_2 < loc_string_length ) loop
                   --out_tab.extend;
                   loc_curr_string := substr(inp_string,loc_ind_2,inp_length);
                   dbms_output.put(loc_curr_string);
                   out_tab(loc_ind_1) := loc_curr_string;
                   loc_ind_1 := loc_ind_1 + 1;
                   loc_ind_2 := loc_ind_2 + length(loc_curr_string);
              end loop;
              dbms_output.put_line('');
              return out_tab;
         end;
         function execute_statement(
              inp_statement in varchar2,
              inp_binds in string_table,
              inp_parameters in parametri
         return number
         is
              loc_stat dbms_sql.varchar2a;
              loc_dyn_cur number;
              out_rows number;
         begin
              loc_stat := divide_string(inp_statement);
              loc_dyn_cur := dbms_sql.open_cursor;
              dbms_sql.parse(c => loc_dyn_cur,
                   statement => loc_stat,
                   lb => loc_stat.first,
                   ub => loc_stat.last,
                   lfflg => false,
                   language_flag => dbms_sql.native
              for i in inp_binds.first .. inp_binds.last loop
                   DBMS_SQL.BIND_VARIABLE(loc_dyn_cur, inp_binds(i), inp_parameters(inp_binds(i)));
                   dbms_output.put_line(':'||inp_binds(i)||'='||inp_parameters(inp_binds(i)));
              end loop;
              dbms_output.put_line('');
              --out_rows := DBMS_SQL.EXECUTE(loc_dyn_cur);
              DBMS_SQL.CLOSE_CURSOR(loc_dyn_cur);
              return out_rows;
         end;Bye Alessandro
    Message was edited by:
    Alessandro Rossi
    There is something missing in the functions but if there is something that may interest you you can ask.

  • Dreamweaver and PHP Help Needed!

    If there is anyone out there who can help, I am working with
    a back-end secured website that is in php and need to manipulate
    and change pageson-the-fly. I'm not sure how to view and actually
    see in Design View my PHP page, as I can best work in Design View.
    Can anyone help out there?
    The website I need help with is
    http://www.businesscreditbuilder.com
    Help needed as soon as possible...
    Thank you...
    If you want to help, I can compensate you for helping with an
    immediate page..

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Various Direct Debit and Billing Help Needed

    FAILURE TO DELIVER BILL IN PAPER FORMAT: Firstly when I discovered that my account number was encrypted in the email and that I could not pay the bill online, without having the whole account number in full - I contacted BT who told me that they would post my bill and it would arrive in paper form.  A week later, no sign of it so phoned again and again I was told that another paper copy would be sent out - waited another week - still no sign! Got a reminder email that my bill had not been paid - doh! I knew that but I was trying to get that sorted out! So phoned again today and the guy in India or wherever the heck he is, told me that he would setup a profile on BT.com for me and this would allow me to pay online.
    TEMPORARY ACCESS TO BT.COM?: The email address which this member of staff had set up on BT.com for me was identical to my old btinternet.com account minus a number! The new email address with this new account is somewhat different and when I try to edit simple information on the profile page, it does not allow me to do so.  Can anyone explain why?
    UNABLE TO SET UP DIRECT DEBIT:  I log-in to My BT (whether it's temp. access or not) and then click on Bills and Payments but instead of more options I get a graphic which has got "Ugrade to an online account" on one side and "Help with Billing and Payments" on the other side.  When I click on "see all billing and payments help" nothing happens and in fact NONE of the links work.
    Would it be the better idea to re-register with BT.com and this time put the correct BT email address in, the one that i was given with this account - see if it works that way?
    PLEASE HELP!!!

    This is essentially a customer to customer help forum; I could make one or two suggestions which might explain things but would be equally likely to complicate the matter. It all looks a bit messy and you need to get BT's help in sorting it out. The moderators who oversee this forum are jolly good at that and you can contact them here: Contact BT Care Team.
    They are busy and may take a few days to respond but will contact you by email or phone, and will have access to your account in order to put things straight.
    [Edit: My daughter turned up in the middle of writing this and by the time I posted it KB had replied in similar vein.]
    You can click the white star next to this message if you think it was helpful.

  • Flash fading movies and sound-HELP NEEDED

    hey guys i need some help
    firstly if u want to help me could u please visit this site
    http://www.thetimemovie.com/
    this site is what i want to do
    notice the fading pictures that can be controlled and the
    sound bar at the bottom on the left
    Any help would b aprreciated GREATLY
    thanks in advance
    BUTCH101
    PS: email [email protected] if u have any info
    thanks

    What I see in the sample site is that the "sound bars" aren't
    sync'd at all. They are just a looping clip that stops in diagonal
    shape when clicked. And, the sound is not actually being stopped
    when you click the bars. Rather, the actionscript is actually
    turning the volume down, gradually. The sound is still continually
    playing, you just can't hear it. This is evident in the fact that
    when you restart the sound, it picks up not where you left off, but
    at the point where it would have been anyway, had you not clicked
    the button.
    I believe that the sound is set to streaming and as such can
    be dealt with frame by frame. So, your real quest is to have
    someone (more knowledgable than me) provide sample code that would
    begin reducing the volume of the sound object in increments as the
    movie moves through frames. Something like:
    onFrame (95){
    mySound.setVolume(80);
    onFrame (110){
    mySound.setVolume(60);
    onFrame (120){
    mySound.setVolume(40);
    onFrame (130){
    mySound.setVolume(20);
    onFrame (140){
    mySound.setVolume(10);
    onFrame (150){
    mySound.setVolume(0);
    Obviously, you wouldn't use frame numbers, but a variable
    representing the current frame relative to the frame the movie was
    in when you clicked the button.

  • OS X Yosemite and CS6 help needed.

    Hello,
    I have a MacBook Pro (2013) which I want to update to OS X Yosemite but I have one question about CS6.
    When I update my Mac system to OS X Yosemite do I have to remove and reinstall CS6? Or can I leave the program on my Mac and update it when OS X Yosemite is ready?
    I'm quite worried about this because I'm a student who needs CS6 every day to make my homework. Any help would really be appricated!

    @runtimer
    @JasonBrimer
    Thank you for your reply both. I will wait for a weeks before I update to Yosemite.
    This has helped me a lot and ease my worries.
    @runtimer
    @Rockwellsulcata
    @gener7  
    @Nancy O.  
    I would appicate if you guys would take the other question to another discussion, because I keep getting alerts on my phone which is really annoying. My answer got answered so there is no reason to keep continue this,

  • IPhone 5s and iTunes Help Needed - NEW PC

    Hi, I got the iPhone 5s back in October (1st ever Apple product) and transfered my music and photos onto it via iTunes.
    What I need help with is as my laptop is in for repair (complete system restore) can I download  iTunes on mums laptop and put a few songs and pics on my iPhone WITHOUT clearing the  curent files and leaving me without nothing on it.
    Thanks
    James

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

  • SWF and FLV - help needed

    Hi,
    I'm finding flash very difficult, i've read tutorials and i still find it confussing. What i'm trying to do is embed my FLV video into my website that keeps my XHTML 1.0 Transitional page vaild.
    I download swfobject 2.2 and i have a FLV file that i exported from premiere pro CS3, from what i understand i need SWF file to go with the FLV.
    When i import my FLV into Flash CS3, choose the skin i want  then export everything. I then have three files; FLV, skin and the player. What i don't understand is, i've seen certain skins that are two in one, both the skin and the player.
    Could someone please tell me what are the main files that i require in order to get my flash on my html page.
    I've spent hours trying different embed codes and nothing seems to work.
    I've created a lot of websites, but when it comes to flash i'm puzzled.
    Any help is much appreciated, thanks.

    Thanks for your reply.
    I eventually got everything working with swfobject.
    I think i'm finally getting the hang of flash, well the basic stuff anyway, lol.

  • Best practices and tips help needed to create animation

    Hi There
    I am producing my first project in AE and came across this example which is similar to what  of which I need to implement in the project.
    http://www.lonja.de/wikipen/
    (see 8 seconds in on the imagespot video)
    My scenario is I need to portray a network of nodes that are all interlinked (and possibly increasing in number, network links and nodes flourishing from spawn points of other nodes portraying that the network is an infinite expandable entity).
    Could anyone suggest how I'd create this, point me to tutorials, or let me know what the actual term for that kind of linked kinetic motion is?
    The important thing I suppose is how I manage the workflow efficiently. There must be a more effective way than animating 50+ nodes individually, also how would I best tie the network links that connect the nodes (as in the example) so that they follow the nodes wherever they are (this motion can be random).
    Any help appreciated
    thanks
    Matt

    Effects --> Generate --> Beam, the Plexus plug-in, my old network tutorial at creativeCOW. so many ways...
    Mylenium

  • Conservation-help please webdesigners and other help needed

    are you interested in world conservation issues? Would you like to be part
    of a team developing a website that may change the way people act towards
    conservation and may indeed change the future of conservation volunteering
    itself. [email protected] if you are interested a mission plan can be
    obtained from the above address we will see were things go from there. This
    is not a wind up in any way this is -planned to be both a serious tool in
    terms of science and in terms of conersvtaion help mostly in the uk but also
    abroad, the site will have a broad span of features. I need skilled web
    designers and others who can help me market the idea, also once the site is
    set up the way the site works will require a few trusted overseers, it must
    be stressed that the site is none profit making in intent possible small
    amounts may be paid for its construction but these will not be large. Anyone
    interested in helping in the construction of this website will be rewarded
    but further down the line and through simplwe satisfaction of seeing a
    useful and well thought out idea coming to life at their own hands. please
    reply to the sender address or [email protected] please if yopu have any
    inclination do reply we need you as they say , if no one volunteers this
    project wont getr carried out, any help will be greatfully accepted if you
    give me 1hr or 2 of your time i will be very greatful indeed. The website
    being constructed is only in web format because it makes it easy to access
    and it is the easiest medium in which to get setup quickly advertising is
    likely to follow in other mediums and over time the scope of the website as
    explained in the brief which I will send you if you are interested will
    increase and hopefully the good work which comes from that will increase
    also. Thank you for your time
    andrew cuthbert

    are you interested in world conservation issues? Would you like to be part
    of a team developing a website that may change the way people act towards
    conservation and may indeed change the future of conservation volunteering
    itself. [email protected] if you are interested a mission plan can be
    obtained from the above address we will see were things go from there. This
    is not a wind up in any way this is -planned to be both a serious tool in
    terms of science and in terms of conersvtaion help mostly in the uk but also
    abroad, the site will have a broad span of features. I need skilled web
    designers and others who can help me market the idea, also once the site is
    set up the way the site works will require a few trusted overseers, it must
    be stressed that the site is none profit making in intent possible small
    amounts may be paid for its construction but these will not be large. Anyone
    interested in helping in the construction of this website will be rewarded
    but further down the line and through simplwe satisfaction of seeing a
    useful and well thought out idea coming to life at their own hands. please
    reply to the sender address or [email protected] please if yopu have any
    inclination do reply we need you as they say , if no one volunteers this
    project wont getr carried out, any help will be greatfully accepted if you
    give me 1hr or 2 of your time i will be very greatful indeed. The website
    being constructed is only in web format because it makes it easy to access
    and it is the easiest medium in which to get setup quickly advertising is
    likely to follow in other mediums and over time the scope of the website as
    explained in the brief which I will send you if you are interested will
    increase and hopefully the good work which comes from that will increase
    also. Thank you for your time
    andrew cuthbert

  • Offscreen drawing and Events help needed!!

    Hi,
    I have run into a problem... I need to create a rather complicated image with lots of interactivity. As a simplified example, I need to add a grid, a histogram, and a pie chart on the same JPanel.
    Normally, you create your images in your class, set up listeners on your graphics objects and voila, clickable images.
    But I want to create all my images in a separate class, attach listeners there and then add that image and its listeners to my JPanel. Otherwise my class gets huge and painful- some of these objects (the histogram for example) need to establish URL connections, execute JDBC querys, be threaded, etc. According to what I know about OOP, these should certainly be in their own class.
    So, if I wanted to draw a 10x10 grid, I could simply do:
    DrawGrid grid = new DrawGrid( 10, 10 ); In DrawGrid, I would have listeners on each cell, so I can keep track of what was clicked.
    Adding grid to my JPanel also adds the listeners associated with grid...
    I initially tried this as a separate JPanel, and then to just add the new JPanel to the 'central' one, but this wont work because some of my graphics must overlap each other- and I couldnt get graphics to overlay multiple JPanels.
    I also created my graphic by extending BufferedImage and then doing:
    g2d.drawImage( buffer1, 0, 0, this);
    g2d.drawImage( buffer2, 0, 0, this);
    Which worked for the images- but none of the listeners worked. :(
    I really need some help on this one.
    Also what are the best books for Java 2D graphics and interacting with them??? I gotta buy one.
    Thanks!
    Bryan

    From what I understand, you want to have multiple images on one surface and have them all contain their own mouse listeners. As far as i know this is impossible (but what do i know:)
    What you could do is have a single mouse listener and subdivide the surface whenever images are placed there. So when the user clicks it checks to see in which section was clicked, then forwards that info to the appropriate object. And to deal with overlapping just have the top image have control over that area. If you needed to get more complex wich your bounderies you could have an array of pixels representing the surface and flag them bassed on the objects in that area.
    It may get a bit slow if your boundaries are too complex

  • EJB ACLs and permissions, help needed urgently

    Hello,
    I am using WL6.1. I need to use weblogic.security.acl.Security.checkPermission
    to check if a user has permission to acess an EJB method. I know one can call
    the method and check the exception to see yes or no. But that requires knowing
    the method signature (parameters and return types etc.).
    I read the documentation and here is what I got:
    ACLs and permissions for WebLogic EJBs differ from ACLs and permissions for other
    kinds of WebLogic Server resources in the following ways:
    1. EJB ACLs are configured in the access control properties of the EJB's deployment
    descriptor.
    2. Permissions are granted on individual methods of a bean; there are no predefined
    permissions.
    3. Permissions on EJBs are granted to Roles, which map to groups in WebLogic Server.
    So if I read it correctly:
    1. One does not need to use WL console to configure EJB ACLs? If otherwise, how
    do we do it?. There is no documentation for it.
    2. What is the ACLName to use when I call the method weblogic.security.acl.Security.checkPermission(java.security.Principal
    principal, java.lang.String aclName,
    java.security.acl.Permission permission,
    char sep)?
    I tried with JNDI name and EJB name and nothing seems to work.
    Can anyone help me out?
    Thanks.
    Ling Wang

    It all depends on where do you want to keep your ACLs and the rest of security.
    Simplest will be fileRealm, but it has limited capability (10k ACLs I recall).
    You do not heed console to set it up. Here is an excert from ACL file:
    acl.read.OT_INTEGRATIONOBJREF=everyone
    acl.read.OT_ORGTRANSPORT=OrgAdmin,AppAdmin
    acl.read.OT_ORGUNITOFMEASURE=OrgAdmin,AppAdmin
    # from nonWorkflowEvents.template
    acl.execute.ET_QUERY=everyone
    acl.execute.ET_BATCH=everyone
    read/execute is action. Caps keep resource (name). On the right hand is a list
    of roles. The security call will be lokking like:
    boolean result = Security.hasPermission("ET_BATCH",
    new PermissionImpl("read"), '.');
    It does not throw, just returns a boolean.
    Now, this is all about programmatic security. If you are up to declarative, you
    need to assign role names to method names in deployment descriptor of your bean
    and map them to actual roles.
    Also you may have problems while asking security question about another principal
    (nto the one currently logged in). Not that it does not work -- just needs caution.
    Hope it helps.
    "Ling Wang" <[email protected]> wrote:
    >
    Hello,
    I am using WL6.1. I need to use weblogic.security.acl.Security.checkPermission
    to check if a user has permission to acess an EJB method. I know one
    can call
    the method and check the exception to see yes or no. But that requires
    knowing
    the method signature (parameters and return types etc.).
    I read the documentation and here is what I got:
    ACLs and permissions for WebLogic EJBs differ from ACLs and permissions
    for other
    kinds of WebLogic Server resources in the following ways:
    1. EJB ACLs are configured in the access control properties of the EJB's
    deployment
    descriptor.
    2. Permissions are granted on individual methods of a bean; there are
    no predefined
    permissions.
    3. Permissions on EJBs are granted to Roles, which map to groups in WebLogic
    Server.
    So if I read it correctly:
    1. One does not need to use WL console to configure EJB ACLs? If otherwise,
    how
    do we do it?. There is no documentation for it.
    2. What is the ACLName to use when I call the method weblogic.security.acl.Security.checkPermission(java.security.Principal
    principal, java.lang.String aclName,
    java.security.acl.Permission permission,
    char sep)?
    I tried with JNDI name and EJB name and nothing seems to work.
    Can anyone help me out?
    Thanks.
    Ling Wang

  • N97 wifi and connectivy help needed

    Hi everybody: I have for about 3 weeks  owned and using an unbranded N97, upgraded it to 11, and for the last 2 years was using an N95 also unbranded, with no issues.(still using it as second line).
    The N97 recognizes my Wifis at home, in the office, at the airport , connects perfectly. But never stops looking for that wifi when going to another one.
     For example when I leave home to go to office even with priority set, I need to tell it to connect on arrival. .
    But then if I click on accuweather update (or for that matter any other stuff) the phone still tries to connect to the previously  used wifi, and screams repeatedly disconnect . Dispite what the manual says, the phone does not offer me a "disconnect all"option .
    Only solution I have is turn of the phone. Then on, and phone is asking me to chose which connection to use,then I select the one that is available.
    Any ideas to have a seamless connection disconnection, including use of gprs when out in the street ?
    Thanks of any help 
    Solved!
    Go to Solution.

    When you access "Destinations" on top of the screen should read " Network Destinations      Default: Internet"  the way to change this is by selecting Options -> Default Connections and selecting Internet.
    Once all of this is place make The Internet access point your default.  
    What's happening here is that the Internet access point encompasses all your registered access points into the one access point therefore enabling the phone to automatically search for available connections and connecting following your priority order. 
    Set Internet as your deault in your browser, and all other apps that allow you to define an access point, note though that in some apps you will need to select Default Connection
    Do this for both WLAN's Destinations -> Internet -> WLAN -> Use Access Point-> Automatically and let the phone scan for WLAN every couple of minutes I've set mine to every 5 minutes as I want it connected to WLAN as soon as it becomes available.
    My setup is like this
    Destination -> Internet -> @Home priority1 -> @Work priority2 -> Orange Internet priority3 Orange java priority4.
    The phone manages to automatically switch from @home to Orange Network when I leave the house and from Orange Network to @work when I get to work and the other way round. Note though that when connection is lost from both WLAN's I get a beep notifying me.
    Hit Kudos if I Helped out.
    Nokia 3310-> 8810->N95->N95 8Gb->
    Nokia N97 Black v21.0.045 RM-505 Code-0585162 (handset No 3)

  • Webform and Redirect Help Needed

    I have a site in development with 25 pages, of those 5 are only accessible if you fill in a form and each form will be slightly different on each of the 5 pages. I have no issues with setting up the forms. My issue is this. If I fill in any one form on any of the 5 pages it needs to remove the form(s) from the other 4 pages. So essential unlock the content that is being protected by the form(s). Any insight would be appreciated.

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Oracle Wallet Setup and Use Help Needed - Respond

    We are trying to make our shell scripts use the wallet rather than using the files which has password in them
    What are the advantages of wallet over the password file?
    Also let us discuss the disadvantages of oracle wallet as well. So we can decide on using the existing system of keeping the passwords in the password file itself or migrating to oracle wallet
    Thanks for your time

    Hello, iam trying to install oracle ifs on my laptop. You can hekp me out..
    1>I have installed oracle 9.0.2 database.
    My question is do we need to install oracle IAS also. I have installed that one too..and intstalled ifs in the same folder of ias. But iam facing problem iam trying to open login page ..http server is not finding my login page . Http server is in oracle database..can u help me out thanks

Maybe you are looking for