I use reliance dongle to browse internet on mountain lion, at first it gave me problems but after updating the reliance software it worked fine.  Now i have upgraded my osx to mavericks.  The reliance software gets installed but dosent open giving some er

i used reliance dongle to browse internet on mountain lion, at first it gave me problems but after updating the reliance software it worked fine. Now i have upgraded my osx to mavericks. The reliance software gets installed but dosent open giving some error, Now i cannot use the internet !!! and itz the latest version of reliance software,,, plz help me !!!

At last i did some experiments and it solved my problem... heres the solution :
1. Install the reliance drivers and software from their website.
2. As the reliance software is not supported my mavericks it wont open, but dont worry.
3. Now after installation go to system preferences->network->and select  "ZTE Wireless Terminal".
4. Configuration: Default
     Telephone number: #777
     Account name and password should be the owners number.
5.Finish ! press apply and click Connect...
   Enjoy browsing !!!

Similar Messages

  • Tried to reinstall OSX Mountain Lion 10.8.4 and every time i start with the installation i get a requested time out message, had to shut down my MacBook Pro retina. Now when i start up it automatically start internet recovery

    tried to reinstall OSX Mountain Lion 10.8.4 and every time i start with the installation i get a requested time out message, had to shut down my MacBook Pro retina. Now when i start up it automatically start internet recovery for two ouers. After the internet recovery the same problem with reinstalling OSX message

    Gave up on the GUI.  This script derived from http://blog.netnerds.net/2012/07/os-x-how-to-setup-nat-on-lion-and-mountain-lion / seems to work for me:
    gwdev=en0 # This is my WiFi connection (has Internet connection)
    targetdev=en1 # This is the USB to Ethernet adapter (to give Internet connection)
    /sbin/ifconfig $targetdev down
    /sbin/ifconfig bridge0 create
    /sbin/ifconfig bridge0 up
    /sbin/ifconfig bridge0 addm $gwdev
    /sbin/ifconfig bridge0 $HOST_ADDR
    /sbin/route add default -interface bridge0 -ifscope bridge0 -cloning
    /usr/sbin/sysctl -w net.inet.ip.forwarding=1
    /sbin/ipfw add 100 divert natd ip from any to any via $gwdev
    /usr/sbin/natd -interface $gwdev -use_sockets -same_ports -unregistered_only -dynamic -clamp_mss -enable_natportmap -natportmap_interface $targetdev

  • Our Client gave a requirement to mass update the additional attributes in Install base for instances in Release 11i.

    Hi,
    Our Client gave a requirement to mass update the additional attributes in Install base for instances in Release 11i.
    So I tried the below code to update:
    But getting the error:
    The Object Version Number passed does not match with the one existing in Installed Base tables.
    Can any one please help how to fix it.
    Code:
    declare
    x_instance_rec CSI_DATASTRUCTURES_PUB.INSTANCE_REC;
    p_ext_attrib_values CSI_DATASTRUCTURES_PUB.EXTEND_ATTRIB_VALUES_TBL;
    p_party_tbl CSI_DATASTRUCTURES_PUB.PARTY_TBL;
    p_account_tbl CSI_DATASTRUCTURES_PUB.PARTY_ACCOUNT_TBL;
    p_pricing_attrib_tbl CSI_DATASTRUCTURES_PUB.PRICING_ATTRIBS_TBL;
    p_org_assignments_tbl CSI_DATASTRUCTURES_PUB.ORGANIZATION_UNITS_TBL;
    p_asset_assignment_tbl CSI_DATASTRUCTURES_PUB.INSTANCE_ASSET_TBL;
    p_txn_rec CSI_DATASTRUCTURES_PUB.TRANSACTION_REC;
    x_instance_id_lst CSI_DATASTRUCTURES_PUB.ID_TBL;
    x_return_status VARCHAR2(2000);
    x_msg_count NUMBER;
    x_msg_data VARCHAR2(2000);
    x_msg_index_out NUMBER;
    t_output VARCHAR2(2000);
    t_msg_dummy NUMBER;
    p_validation_level NUMBER;
    p_commit VARCHAR2 (5);
    p_init_msg_lst VARCHAR2 (500);
    cursor stg_tab_cur is select instance_id,Safety_line_type from gewind_ib_iea_values;
    TYPE stg_tab IS TABLE OF gewind_ib_iea_values%ROWTYPE INDEX BY BINARY_INTEGER;
      stg_tab_var stg_tab;
      stg_tab_bin_int BINARY_INTEGER;
    BEGIN
    x_instance_rec.instance_id := FND_API.G_MISS_NUM;
    x_instance_rec.object_version_number := FND_API.G_MISS_NUM;
    p_txn_rec.transaction_id := FND_API.G_MISS_NUM;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    stg_tab_bin_int :=0;
    For gewind_ib_iea_values in stg_tab_cur LOOP
    stg_tab_bin_int := stg_tab_bin_int + 1;
    P_ext_attrib_values(stg_tab_bin_int).instance_id :=gewind_ib_iea_values.instance_id;
    P_ext_attrib_values(stg_tab_bin_int).attribute_id := 10023;
    P_ext_attrib_values(stg_tab_bin_int).attribute_value := gewind_ib_iea_values.Safety_line_type;
    dbms_output.put_line(P_ext_attrib_values(stg_tab_bin_int).instance_id);
    dbms_output.put_line(P_ext_attrib_values(stg_tab_bin_int).attribute_value);
    csi_item_instance_pub.update_item_instance(
    1.0,
    p_commit,
    p_init_msg_lst,
    1,
    x_instance_rec,
    p_ext_attrib_values,
    p_party_tbl,
    p_account_tbl,
    p_pricing_attrib_tbl,
    p_org_assignments_tbl,
    p_asset_assignment_tbl,
    p_txn_rec, x_instance_id_lst,
    x_return_status,
    x_msg_count,
    x_msg_data);
    commit;
    -- Output the results
    if x_msg_count > 0 then
    for j in 1 .. x_msg_count
    loop
    fnd_msg_pub.get ( j , FND_API.G_FALSE , x_msg_data , t_msg_dummy );
    t_output := ( 'Msg' || To_Char ( j ) || ': ' || x_msg_data );
    dbms_output.put_line ( SubStr ( t_output , 1 , 255 ) );
    end loop;
    end if;
    dbms_output.put_line('x_return_status = '||x_return_status);
    dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
    dbms_output.put_line('x_msg_data = '||x_msg_data);
    COMMIT;
    end loop;
    END;
    Regards,
    Ravichander

    This question is Assumed Answered -- It would be great if you could share the solution with us.
    Thanks,
    Hussein

  • Audio hangs on all videos played in firefox after updating to 3.6, everything works fine in internet explorer.

    sound locks up and repeats while videos play, sound resumes as it should after a second or so, happens once every few seconds while playing any video within firefox. (youtube) flash applications work fine. internet explorer runs all videos fine. let me know if i need to dig up some more info to help figure out what my be causing the problem.
    == This happened ==
    Every time Firefox opened
    == firefox 3.6 update

    This will require advanced help. I believe it has something to do with the session restore feature of Firefox, but I can't help you fix it.
    In the meantime (that is, before another contributor that knows how to help you comes here), you may want to try creating a new Firefox profile ([http://support.mozilla.com/en-US/kb/Managing+profiles managing profiles]) and see if the same issues occur on that one. This profile can be erased if you don't want it, of course. Please tell us whether the new profile has the same issues or not.

  • I used to run this scrip before updating my FireFox and it worked fine, now it is not working, plz help javascript:%20void%200

    I used to use this Java Scrip before updating my FireFox
    now its not working, the script is as under
    javascript:%20void%200
    this script open more then 50 pages in sequence as per the http addresses given on few web pages.
    please help

    All I am trying to do is enable "one click" functions for downloading gifts on Farmtown. I am on Windows Vista; have upgraded to Firefox5; updated Java today. When I try to download stuff from www.farmtown-links.com, a tab appears with "javascript:%20void%200" I have NO IDEA what this all means...I need an easy fix, PLEASE. I know a lot of FT people are going to this site. I have also added this addon: http://www.grizzlyape.com/addons/multilinks/. Still no luck. Even though some claim Chrome works better, I am still a happy camper w/Firefox and hardly ever use IE.

  • Problem arised after updated the intel wireless lan

    Hello, everyong
    My laptop is T510. I just updated the intel wireless lan to the version of 15.02.0000.1258. After the updates, my wireless router was down when the laptop started. Initially it can connect to the router for a few seconds, then the router was down with all the lights going off except the power light. Once I restart the router, everything goes fine, my laptop is able to connect to the router without any problems. So I have to restart the router everytime when I start my laptop. Please help me. How to fix this problem?

    Why do you have to restart the router.
    Have you checked the computer WiFi profile? Why or what is not allowing the connection.
    You could delete the computer profile in Access or whatever you're using and discover, reconnect to it again as if its the first time. It may resolve the issue which is unknown.
    T520 Model 4239 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz
    Intel Sandy Bridge & Nvidia NVS 4200M graphics Intel N 6300 Wi-Fi adapter
    Windows 7 Home Prem - 64bit w/8GB DDR3

  • Installed Windows 8 on a late 2011 MacBook Air and was working fine now keyboard not working so cannot enter password? Caplocks key works but I am locked out on my own PC and cannot seem to get it to recognize built in keyboard,bluetooth,generic USB one.

    Installed Windows 8 on a late 2011 MacBook Air and was working fine now keyboard not working so cannot enter password? Caplocks key works but I am locked out on my own PC and cannot seem to get it to recognize built in keyboard,bluetooth,generic USB one.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • HT201272 Getting a "not currently available" message when trying to download old itunes music purchases to new "authorized" computer. I was able to download the first 500 songs no problem, but now I keep getting the "not currently available" message. Can

    Hi! I'm getting a "not currently available" message when trying to download old itunes music purchases to new "authorized" computer. I was able to download the first 500 songs no problem, but now I keep getting the "not currently available" message. Can u help? Thnx!

    Hey SDGardella,
    Thanks for the question. I understand that you are receiving error 499 when attempting to download purchases from the iTunes Store. The following resource outlines this error message:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    "Error 499"
    This alert occurs due to security software. Follow iTunes for Windows: Troubleshooting security software issues.
    Thanks,
    Matt M.

  • I can't back up my phone, they ask me to delete the back up, but I don't want to because I lost everything after updating the iTunes, How can I get back the back up?

    Everytime I try backing up my phone, it says there's something wrong and wants me to delete the back up...But I don't want to delte the back up because I just lost everything after updating the iTunes, Is there any way I could get back everything from the back up?

    Thank you for answering my question. If I reinstall itune, is it mean that I need to install music, apps, video...everything in itune again? also intall everything in my iphone again?

  • Recently the sound on my Iphone 4 for texts, and email alerts started working intermittently.  I have upgraded to the latest software and the Apple store even replaced the phone but safe issues

    Recently the sound on my Iphone 4 for texts, and email alerts started working intermittently.  I have upgraded to the latest software and the Apple store even replaced the phone but safe issues

    For each mail account, along with designating a primary SMTP server, you should be able to just turn off any and all other SMTP servers you have listed.  In that case, if there is a problem with comcast, the message send should just fail.
    Also make sure your comcast smtp settings are correct (port, likely 587 but might be something else for comcast, whether you should be suing SSL or not, do you need authentication or not).
    You might find the comcast forums useful for getting the settings right - I found this:
    http://forums.comcast.com/t5/E-Mail-and-Xfinity-Connect-Help/iphone-email/m-p/66 1151?view=by_date_ascending#M131151
    The second poster notes, SSL should be on, authentication should be "password" and you should be using port 995

  • My ipod 4th gen screen kept jumping this morning. Had to do a restore on it and it is working fine now. However, when I did the restore it did not load the Nike   app that was factory installed on my ipod. I use this app daily. Any idea how to get it back

    My ipod 4th gen screen kept jumping this morning. Had to do a restore to factory conditions and it is working fine now. However, it originally had a factory installed Nike+ app on it and it did not install with the restore. I use this app daily with the running chip to log my workouts. Anyone know how to get this app back from Apple? Loading the Nike app from the app store is not the same thing as you need gps running continually for it to work (as with an iphone). Can't have that with my ipod unless I'm connected to wifi. Help?? Thanks.

    If you go to Settings do you see an entry for the Nike app? There is no way to delete or hide that app?
    Have you tired using the Spotlight search? Maybe you just can't find it.
    Next would be to restore a gain. First from backup then next to factory settings/new iPod.
    The Nike app you can download/install
    Nike+ Running for iPhone 3GS, iPhone 4, iPhone 4S, iPhone 5, iPod touch (3rd generation), iPod touch (4th generation), iPod touch (5th generation) and iPad on the iTunes App Store
    Does work on the iPOd. You just do not get all the information that GPS/cellular connection can get. You will still be able to get distance/footstrikes like the installed app an you do not need the shoe sensor.. It uses the built-in sensors on the iPod

  • When I click on the button to download the new IOS software, I get a message saying that all the items on my iTouch will be removed.  Will I have to reload everything after updating the software?

    When I click on the button to download the new IOS software, I get a message saying that all the items on my iTouch will be removed.  Will I have to reload everything after updating the software?  Because I had to have my hard drive wiped a while back, I have items on my iTouch that are not in my iTunes.  Is there a way to copy everything on the iTouch into iTunes, if necessary, before I load the new software?

    It is possible to transfer purchases from your iPod back into iTunes before updating the OS. If you had any CDs from your personal collection, these you have to put back into iTunes manually. Hope this helps you & good luck!

  • I have upgraded to OS X mavericks and there is now a problem with my email. I have discovered several emails no longer contain the original message instead another completely different message is appearing but under the name of original sender. Any ideas?

    I have upgraded to OS X mavericks and there is now a problem with my email. I have discovered several emails no longer contain the original message instead another completely different message is appearing but under the name of original sender. Any ideas?

    With the account mailbox selected, Mailbox menu, Rebuild.

  • I have forgotten my administrator password, and there are no hints. I have a Mac OS X Mavericks. When I get to the reset password screen, it has no hard drive to select. What now?

    I have forgotten my administrator password, and there are no hints. I have a Mac OS X Mavericks. When I get to the reset password screen, it has no hard drive to select. What now?

    If you're using FileVault, you first have to unlock the startup volume in Disk Utility. Select it and click the Unlock button in the toolbar. Of course, this is only possible if you know another password to unlock the volume. If you don't, follow instead these instructions.

  • Safari is not connecting to internet on my iPad.  Says "could not open the page becuase the server stopped responding."  Everything else that updates over wireless connection is working fine.  Get same response on any site I try to visit.  Need Help!

    Safari is not connecting to internet on my iPad.  Says "could not open the page becuase the server stopped responding."  Everything else that updates over wireless connection is working fine.  Get same response on any site I try to visit.  Need Help!

    I am having identical problem on my iPhone 4 running iOS6.  Did NOT experience this issue prior to upgrade.

Maybe you are looking for

  • Importing new business systems into Integration Directory PI 7.1

    Team SDN, Team We have presently upgraded to PI 7.1(inline upgrade XI 3.0 was the older version).  There are some changes like Import of software component version from SLD to ESR. intially we use to do in Xi 3.0 by selcting tools and import, but now

  • How can I change the language of the time and date and numbers?

    Hey I bought the iPhone 5 and when I setted the settings I chose the country where I live now but the time and date and other numbers because in the language of the country and not in the language that I chose which Is english so how can I change the

  • Lumia 800 has no "Podcast" option in MarketPlace?

    Hi All, I have a shiny new Lumia 800 and have read all support documentation I can find and, apparently, "to download an audio or video podcast on your phone" I go to "Start, tap Marketplace, and then tap Podcasts." My problem is that I go to "Start,

  • EJB and JDBC operation

              Hi,           We r using both JDBC and EJB's to perform DB operations.           We have encountered a problem where operations on the EJB's           dont apply on JDBC operations done later on in the same txn.           The same goes the

  • Which 1GB RAM configuration would be better overall?

    Would it be better to get one 1GB stick so that when I want to go to 2GB it'll be much easier, or would the performance of two 512s be better? They would cost roughly the same amount.