Joikuspot or Ezspot not working to browse internet...

My laptop connects to hot spot created by any of the two applications on E7-00 with belle but still I cannot browse internet. On running network diagnostics, the message says, computer is configured properly and the problem is with DNS server. I even tried ad-hoc option too. The connection detail shows IPV6 with no network access and IPV4 with internet access. Tried to contact application support through Ovi but no reply yet. My laptop has windows 7 Home 64 bit

Hi Ramin10, 
Welcome to Nokia discussions board! 
I advise you to uninstall the app and reinstall it again and try the connection again. Also, make sure that the Wi-Fi is turned off before starting the tethering. 
Alternatively, please await for a response from the publisher, or chase them if no reply.
Also, pleas perform a soft reset on your device and see if that makes a difference: type *#7780# on the keypad, the default lock code is 12345. 
Let us know how you get on and feel free to post any other questions you may have. 
Regards, 
astra2025
Press the 'Accept Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

Similar Messages

  • Help please - Cursor not working whilst browsing internet

    Hi
    Not long had my Curve 8520 and afraid I'm a bit of a techno dinosaur so please bear with me ! Wonder if someone can help with this.
    Whilst browsing the internet my "cursor" has suddenly stopped working. My "cursor" - the little black arrow - is still there but when hover over a search box for example and "click" my trackball nothing happens, similarly if the little hand symbol appears on a link if I "click" the trackball nothing happens. I've discovered I can press return when the hand appears and it goes to the link, but this is no use when only the arrow appears.
    Any help greatfully received
    Ken
    Solved!
    Go to Solution.

    Its the sort of thing that could possibly be fixed by a battery pull.
    With the BB powered on, remove the battery and keep it out for a couple of minutes. Let us know how you get on.
    Blackberry Best Advice - Back-up weekly
    If I have helped you please check the "Kudos" star on the right >>>>

  • Drop Down menus not working in newest Internet Explorer.

    Drop Down menus not working in newest Internet Explorer. Ant suggestions??

    <script language="JavaScript" src="mm_menu.js">
    Wait - are you using the long-discredited Macromedia "Popup menus"?
    I'm surprised those still work in any browser. You should read this about them -
    http://www.losingfight.com/blog/2006/08/page/3/
    It's illuminating....

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • E72 - Ctrl+C and Ctrl+V not working in browser

    yesterday i updated my nokia e72 mobile to latest firmware 31 , after that Ctrl+C and Ctrl+V and Ctrl+A shortcut keys are not working in browser. which have made me feel as bad as typing the same text again and again (usfel in blogging or web messaging).
    ALthough these shortcut keys are working in notes and sms application, but not in browser and Quick office applications (word, ecxel etc).
    Can some one tell , how to fix it. or do i need to wait for next firware update. firmware 31 was released on 31 of march 2010. and today is 26th of May. almost two months have passed, and nokia has not yet released patch for this bug ....
    Nokia, how long i need to wait ?, for this bug fix release.

    (Had to edit because didn't read previous post clearly.)
    I originally thought this was a problem of Quick office 6.2.217 Nokia_S603.2. I think it is a Nokia firmware problem as the previous post had stated.

  • Messages not working while using Internet sharing from my iMac ... Any troubleshooting tips/approaches ?

    I am connecting to the internet using the Internet Sharing from my iMac ...
    The trouble is the messages in the Messages app are not sent when I am connected through my iMac ... When I key in a message and hit send a progress bar appears fills up till 90% and just gets stuck there and after a while the red exclamation mark stating the message was not sent appears ... Now if I connect through my wi-fi router or thether through my phone it works fine ... I can send / recieve messages ...
    Similar points to note - Today when I tried to make an App Purchase - The security info screen ( new additon - http://isource.com/2012/04/11/iphone-app-store-security-info-alert/ ) popped up but I got a blank screen for the securtiy questions screen ... It was not loading the screen ... Some games the game center invite does not work through my Internet sharing (tried in MetalStorm) ... but works fine thorough wi-fi or thether ...
    What could be the problem with my iMac s sharing? Any suggestions would be really useful ///  Thanx in advance
    I am running Lion ... and I have updated to the latest Airport software ...
    Only thing I tried was changing the DNS ... but that s not related right ?

    Powerline adapters use your home powerlines (mains a/c) to connect your devices via ethernet to your modem, they're easy to set up and the they TOTALLY fixed my ATV problem, the problem seems to be with the wireless. I've been trawling through apple discussions, and did found a workaround to my problem https://discussions.apple.com/thread/4222883?start=0&tstart=0
    but its just a workaround :/

  • MacBook Air osx 10.7.5  ...   volume not working on some internet videos or songs,

    MacBook Air osx 10.7.5  ...   volume not working on some internet videos or songs,  on items used before (3wks ago) it has always worked

    Is there a volume icon at the bottom of the video window when you move the mouse pointer over to bottom
    of the window?

  • Adobe 11 is not working properly in Internet Explorer 10 (32 bit)

    >Adobe seems to only work on videos. 
    >Adobe dose not work on online games.
    >It keeps saying i have to install Adobe 11 (which i have)
    >Under 'Add-ons', it saying that it is using Adobe 11.
    >I am using Internet Explorer 10 default /32 bit.
    >Adobe 11 works fine on Firefox.
    >Adobe is enabled in browser
    <>computer type: Toshiba satellite with W7  (4 years old)
    Iv looked up many sources for an answer but came up empty handed.
    if you have >any< idea on how to fix this please comment. all answers help.
    If you have a question please ask. it might help.
    And if you are wondering why i want Internet Explorer to work if my  Firefox is working fine? i use Firefox's add-ons to help defend my  computer if i am downloading sum thing(which i have a lot of add-ons  that slow it down). And i use Internet Explorer because it is faster.

    You should ask in Help with using Adobe Muse CC
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Password Manager not working with any internet browsers

    I have Thinkvantage password manager installed (v. 3.20.0311.00) on my Thinkpad X201. I am running Windows 7 professional, 64 bit. Password Manager works for all programs except IE8 or Mozilla Firefox (eg. works for Outlook, works for iTunes, etc.). When browsing, the program simply never pops up. It worked previously, and I still have many saved website login details, but it never logs in for me any more and new sites do not activate the program.
    I have made sure that the add-on is enabled and I have checked the box next to "enable 3rd party browser extensions" in the advanced tab of internet options. I have also tried resetting internet explorer settings. As mentioned above, this in not only a problem with IE8; it also occurs with Firefox.
    Any help would be very much appreciated.
    Dr_Rap

    Same problem here. I just recieved mine (Win 7 pro 64 bit, X201 Multitouch) last week and password manager not working at all in ANY web browser. It recorded my .net password just fine, but i can't get it to work in IE8. Who pays this kind of money for something that doesnt work?
    Fix this Lenovo!

  • Some browser links not working - any browser, but just on my mac

    I have a strange issue. Over the last while certain page links on browser pages (which seem to be Java script links) won't work in any of my 5 browsers. If I put the same page in to any of my laptop's or my wife's browsers, the links work fine.
    For example, I just tried to order some stuff via Staples, and whenever I tried to go to the next screen via a button, nothing happened. Even if I switched User Agents in Safari or Firefox, the "next" button didn't work. Same in Chrome, Camino, Flock and Opera on the same pages. I have noticed lots of drop down menus are not working properly either on many sites.
    I figure some bit of OS code must be either blocking or misreading the instruction, but what?
    Any ideas? Any input would be greatly appreciated!!

    errmm... i'm not sure why you are fiddling with java and system extensions...
    java has nothing to do with javascript despite the name (you can blame sun for that) the javascript engine is an integral part of the browser not a separate extension.
    Java on the other hand is an entirely separate entity and language that is independent of any one browser and is installed on the OS.
    Javascript is commonly used in webpages (all most all these days) where as java is hardly used at all and is usually confined to little "applets" that run separately from the rest of the page.
    If you suspect that it is something to do with your settings/preferences in your library then the easiest way to find out is by creating a new User account (go to system preferences> users> and add a user.) Then log into that account and try the browsers in there.
    If you really think that it has something to do with system extensions then you can disable them by moving them out of the extensions directory (/System/Library/Extensions/) However i must stress that unless you know what you are doing and know what the extension does that you are moving to not do so... you can easily render your system unbootable if you move the wrong extension... unless you have installed a 3rd party system extension there shouldn't be anything in that directory that isn't meant to be there (this is a very different system from OS 9).
    However there are internet plugins that may be interfering with your browsers, you can find these in /Library/Internet Plugins/ you can disable these by moving them also... the defaults are various flash, java, shockwave, quartz and quicktime files.
    Message was edited by: Thomas Brierley

  • Applet with Image not working in Browser, works fine in Appletviewer

    Hi,
    I encountered a problem , running my Applet in a browser. (IE and Firefox, ame problem).
    When I use an ImageIcon, it doesnot work. in a browser.(When I remove the icon, it's oke)
    In Appletviewer it works fine. In the browser I first got a security-exception.
    I dealed with that by signing the jar (with the test certificate).
    Now the browser's java console is not showin any faults, but the applet is showing no picture at all.
    Only the text of the label is shown.
    Can someone help me?
    I downgraded the class to a very simple form, shown underneath. This runs fine in Appletviewer, but not in a Browser.
    Best Regards
    Remco

    I have recently had the same problem, after lots of searching, I found that only Java 1.1 is supported by browsers, leaving out everything else including swing. So if you cant play the applet through your browser you need to download the appropriate patch i think about 5mbs.
    You should find one at java.sun.com/getjava/download.html
    Mine worked fine afterwards

  • Java session is not working in browser sometimes

    Hi,
    In some PC, sometimes session is not working properly in browser.
    In JSP, I am creating the session like below
         session = request.getSession(true);
         session.putValue("loginid",login);
    But in next page, it is showing null value.
    I have checked the browser setting... cookies are enabled... everything is ok in browser setting..
    In our company, this issue is coming in some of PC not all in all the PC
    If we format the harddisk & again reinstall the OS, it starts working.
    Anyone can pls help me on this?. This is very urgent.
    Regards
    Selva

    As of Version 2.2 putValue(java.lang.String name,
    java.lang.Object value) has been deprecated.
    Use session.setAttribute("loginid",login) instead of putValue()

  • WRT54G not working with Satellite internet

    Please help!
    I purchased the Linksys WRT54G a few months ago, set up my home network (laptop with wireless running XP, desktop hard wired to router running 2000, and desktop wireless running XP) everything worked great!
    I got the internet installed.  We ( the installer and I ) got the internet to work on my laptop, and he left, said the rest is up to me!  I did not think it would be to bad, but I am stuck!!
    My laptop no longer connects to the network! - I can ping the WRT54G but can not see any thing else.  I can connect to the internet only if I plug directly into my laptop, if I go into the Linksys it will not work from any computer!  My other two computers still see the network and can talk to one another but not to the laptop.  I can no longer print from the laptop (which I could do before) the printer is off of the 2000 destop, used to work great!
    I have tried some things that I seen here on the forms, "cloned the Mac address" "updated the firmware" and "power cycled" until I am blue in the face, but to no avail!
    Additional info - There is a Linksys 8 port 10/100 Switch placed after the Satellite modem, to connect some other hard wired pc's in the house.
    It goes Satellite modem - Switch - (some computers attached here) - Router - (rest of the PC's attach here).
    I hope you can understand my ramblings!
    Any help is greatly appreciated!
    Thanks  
    Message Edited by samsom on 06-17-200706:36 AM
    Message Edited by samsom on 06-17-200706:37 AM

    Satellite modem: LAN side set to 192.168.1.1 (assumed)
      dhcp enabled: range: 192.168.1.20-200
    Switch: if this is an intelligent switch set it to 192.168.1.2
      dhcp: disabled
    Router: set to 192.168.1.3
      dhcp: disabled
    If the satellite modem using a different base setting (ie. 192.168.222.1) you must adjust all other values(222) to match.
    samsom wrote:
    It goes Satellite modem - Switch - (some computers attached here) - Router - (rest of the PC's attach here).

  • Flash in Iweb 08 not working on all internet browsers!

    I have incorperated flash movies into a site or two, for some reason they work fine if your using firefox or safari, but they don't work right if your using Internet Explorer. (which is what alot of people still use)
    I was just wandering if anyone else has ran into this and if so what I could do to fix it.
    You can see what I'm talking about by going to www.i2hd.com. If you have time try viewing it in both browsers and you'll see.
    Any help would be greatly appreciated!

    Hi Jean,
    Actually, we have an issue with scalable HTML content and smartshapes where smartshapes do not work as buttons in scaled mode.
    Please try switching off the "Scalable HTML Content" option in the Publish dialog before publishing. Then it should work.
    Regards,
    Chinmay

  • Flash not working properly in Internet Explorer 6

    Hello,
    Flash images are not displaying correctly in Internet
    Explorer 6. I have checked in Internet Explorer 7 and it is working
    fine.
    Could someone help me to fix this issue ?
    I have checked the Tools->Security->Custom
    Level->Run Flash image and it is enabled.
    Regards,
    PHP Developer,
    India.

    Hello All,
    Thank you for reading this topic.
    The issue above is due to the flash player plugin. I have
    checked from another explorer of same version and it is working
    fine there.
    Could someone help me to delete this topic? I don't know the
    stpes to delete a topic from the forum.
    Regards,
    PHP Developer.

Maybe you are looking for

  • Set Methods are not running

    I am writing my first jsp. I have a bean that I am wanting to use and my understanding is that if I put the following commands in, that all the set methods for my properties will run in the bean automatically as long as the names of the properties ar

  • Need help installing Camera Raw plug in

    I recently had to reinstall CS5 and now I can no longer convert my raw files to DNGs when I download through Bridge and I can not find the right plug in, all I get is the separate DNG converter. Can someone point me in the right direction? Thanks.

  • 2013 Mac Pro and Logic, which processor?

    I'm about to buy the new Mac Pro and was wondering if more cores or faster clock speed suit Logic X more. I know it supports multi-threading etc but can it really make use of 12 cores etc? I was thinking of just getting the entry processor as it has

  • Multiple instances of parameter input form opens in Citrix environment - stumped

    Post Author: debmilner CA Forum: General One of our clients is getting multiple parameter input forms, specifically 4 instances, opening when running a report.  This only happens when she attempts to run the report when connected to the software usin

  • Embedding javascript goodies (Etsy Mini)

    I use iWeb for my websites lately, and I am having trouble embedding an Etsy Mini. Here is the code that I am to embed: <script type='text/javascript' src='http://www.etsy.com/etsy_mini.js'></script><script type='text/javascript'>new EtsyNameSpace.Mi