DSN CONNECTION problem

Its getting sort of urgent now. Can anybody on this forum
help me solve my problem?
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=189&threadid=1161876&en terthread=y#4161091
Its to do with dsn connections

I get Page does not exist on your forum link. Sorry.
Nancy Gill
Adobe Community Expert
BLOG:
http://www.dmxwishes.com/blog.asp
Author: Dreamweaver 8 e-book for the DMX Zone
Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
A Beginner's
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
Web Development
"cookieblast" <[email protected]> wrote in
message
news:e6fgc0$l2j$[email protected]..
> Its getting sort of urgent now. Can anybody on this
forum help me solve my
> problem?
>
>
>
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=189&threadid=
> 1161876&enterthread=y#4161091
>
> Its to do with dsn connections
>

Similar Messages

  • DSN connection not available in connection manager

    Hi -- I am having problems connecting to an ODBC data source with SSIS.
    I am trying to connect to a mysql database.  The connection is set up in "Administrative Tools" as a System DSN, and I can sucessfully connect using "Test" from there.
    But the connection is not shown as available in SSIS.
    In Connection Manager, I create a new ADO.NET connection, choose New, ODBC data provider, but my system DSN connection is not in the dropdown (no ODBC connections are), and if I try to specify it with a connection string
    Dsn=ConnectionName;
    I get:
    Test connection failed because of an error initalizing provider.  Error [IM002] [Microsoft] [ODBC Driver Manager] Data source name not found and no default driver specified.
    I have tried recreating it, creating a new data source with a new name, but none of the Dsn's come are seen by SSIS.
    To make it more frustrating, it was working just days ago and I don't know what changed...
    Any help appreciated,
    Mike

    The BIDS development environment is 32 bit. So it looks for the 32 bit providers at design time. However, when the package is run in BIDS, it will use the 64-bit providers, as long as the Use64BitRuntime property of the project is set to TRUE.
    Outside of BIDS, which set of providers is used depends on which version of DTEXEC you run. There is a 32-bit version and 64-bit version - each will load the matching provider. Something else to be aware of - not all providers have 32- and 64-bit versions. The Jet providers (used for Excel and Access) only have 32-bit versions, for example.

  • 64 bit OBI Connection problem

    Hi all,
    I have a problem with oracle bi-database connection. Currenty when I try to import from ODBC 3.5 datasource what oraclebi shows me does not exist in ODBC connection, and also when I added a new odbc connection to system dsn I cannot see it from Oracle BI. It is like looking to entirely different machine.
    Computer is 64 bit windows. I installed OBISE1, in installation both oracle and obi software were installed succesfully but I had a problem when it was trying to create the sample bise1db database(credential retrieval failed). Then I installed 64 bit oracle software, pachted it to 10.2.0.4 and created the database instance(I received the same error when creating 64 instance but I updated sqlnet.ora and I successfully created instance).
    I restated Oracle BI services but now Oracle BI is behaving like it is not in the same computer I am looking at. It is not possible to import from ODBC 3.5 because it is not seeing System DSN connections. I also tried to create new database and connection pool and manually configure in the physical layer but still I get connection errors.
    Currenty there are two oracle software in the computer, 32bit 10g and 64 bit 10g and only one instance that is created with 64 bit software.
    I am not sure it was a mistake to install OBISE1 software to 64 bit machine.
    Any help would be appreciated..

    I assume that when solaris 10 boots up, it only checks the land line NIC card, not the wireless card. If there is no lan connection, then so be it.
    Is that right?No! :-)
    nwam only supports one device but the device is selectable. physical should activate all devices regardless. So if your Wifi isn't working then I would use wificonfig to see what it can see. Check the man page for scan and showstatus options. Then you'll know what it's seeing.
    alan

  • Java DSN connection to database

    This code compiles without error and executes as anticipated but does not make the database update...
    public void updateFunctionality(String lastName, int goalsIntScored )
                         String sql = "Update UsersTable Set PlayerGoalsScored= " + goalsIntScored + " Where PlayerLastName= " + lastName + ";
          try
         dbAccessCon.getStatement().execute(sql);
         System.out.println("Data Updated");
         dbAccessCon.disconnect();
         catch ( SQLException e )
         System.out.println( "Error: " + dbAccessCon.getLastError() );
         System.out.println("Record Updated");
         }Can a pair or fresh eyes help me?

    It still won't make the update, it has to be the SQL statement doesn't it?
    I've tried all the ' and " combinations possible and still no luck.
    public void updateFunctionality(String lastName, int goalsIntScored ) throws SQLException
                         String sql = "Update PlayerTable Set PlayerGoalsScored= " + goalsIntScored + " Where  PlayerLastName= ' " + lastName + " '";
         try
              dbAccessCon.getStatement().execute(sql);
              System.out.println("Data Updated");
              dbAccessCon.disconnect();
              dbAccessCon.close();
         catch ( SQLException e )
                              System.out.println( "Error: " + dbAccessCon.getLastError() );
         System.out.println("Record Updated");
         }Here is how I make my DSN connection:
    public boolean connect( String user, String password, String dataBase)
    //     If we are connected, disconnect first!
         if ( isConnected )
              if ( !disconnect() )
              return( false );
    //     Construct a JDBC connection URL
                         String dbUrl = "jdbc:odbc:" + dataBase;
    //     Was there a problem?
                         if ( dbUrl == null )
         return( false );
    //     Try to make a connection...
         try
    //     Make a properties object to pass to the JDBC driver...
              Class myClass = sun.jdbc.odbc.JdbcOdbcDriver.class;
              Properties p = new Properties();
              p.put( "user", user );
              p.put( "password", password );
    //     IDS Connections require a little more...
              myConnection = getConnection( dbUrl, p );
              myStatement = myConnection.createStatement();
                         catch ( SQLException e )
              lastError = e.toString();
              System.out.println( "Error during driver initialization: " + lastError );
              return( false );
    //     It worked!
         isConnected = true;
         System.out.println("isConnected = " + isConnected);
         return( true );
         }I definitely make the disconnection so the SQL has to execute but still no change in the anticipated field.

  • How do i configure DSN connection to database Programmatically

    Hi to all,
    Can anybody assist me as how could i configure DSN connection to database Programmatically.
    Thanks in advance.
    Regards
    khiz_eng

    Hi DrClap,
    Many thanx for your advise, i have also done with MS-Access but now i wnated to have with .csv value, how i am going to have this .I have searched the whole JDBC forum already unable to find for .csv
    Please provide me and solve my problem
    Thanks in advance.
    khiz_eng

  • Simple cfquery dsn connection...

    Hi,
    Still struggling to get a DSN connection working on a GoDaddy
    server. This works just fine on my local machine with testing
    server running, but I just want to make sure I'm not missing
    anything that would be required for this to work on a remote
    server. I've built a couple practice CF sites locally, but this is
    my first attempt to publish one.
    Anyway, here's the cfquery:
    <cfquery name="rs_TEST"
    datasource="mysqlcf_oldoakstesttwo">
    SELECT *
    FROM table01
    </cfquery>
    Just a simple request to return records from table 1 of a
    sample database. The DSN is the name GoDaddy's control panel
    assigned to my database. I created a DSN with the same name
    locally, and it works. I get a security error when I publish. From
    what I understand, GD doesn't require a username or password in the
    DSN connection, but I tried that anyway... still no dice. I'm
    really starting to suspect the problem is on their end, but just
    want to make sure this should work.
    So, does it look ok?
    Thanks guys...
    Joe

    I would contact godaddy and tell them the security error you
    are getting.
    The <cfquery> is fine
    Ken Ford
    Adobe Community Expert Dreamweaver/ColdFusion
    Adobe Certified Expert - Dreamweaver CS3
    Fordwebs, LLC
    http://www.fordwebs.com
    "StearmanDriver" <[email protected]> wrote
    in message
    news:ga2inq$123$[email protected]..
    > Hi,
    >
    > Still struggling to get a DSN connection working on a
    GoDaddy server.
    > This
    > works just fine on my local machine with testing server
    running, but I
    > just
    > want to make sure I'm not missing anything that would be
    required for this
    > to
    > work on a remote server. I've built a couple practice CF
    sites locally,
    > but
    > this is my first attempt to publish one.
    >
    > Anyway, here's the cfquery:
    > <cfquery name="rs_TEST"
    datasource="mysqlcf_oldoakstesttwo">
    > SELECT *
    > FROM table01
    > </cfquery>
    >
    > Just a simple request to return records from table 1 of
    a sample database.
    > The DSN is the name GoDaddy's control panel assigned to
    my database. I
    > created
    > a DSN with the same name locally, and it works. I get a
    security error
    > when I
    > publish. From what I understand, GD doesn't require a
    username or
    > password in
    > the DSN connection, but I tried that anyway... still no
    dice. I'm really
    > starting to suspect the problem is on their end, but
    just want to make
    > sure
    > this should work.
    >
    > So, does it look ok?
    >
    > Thanks guys...
    > Joe
    >

  • Unspecified error (ASP DSN connection)

    I am using Dreamweaver CS3 , XP, MS Access and IIS6 and IE7 on host machine and IE6 on another.
    I have a DSN connection
    My problem is that the connection works fine once or maybe twice, I then get the unspecified error pointing towards the connection string, I can also get the 'file in use' error sometimes instead. To clear this I have close down and restart dreamweaver in order for localhost to display the page.
    I get the same error when browsing from another machine.
    IUSER has correct permissions on db folder.
    I thought I had sorted the problem out by adding UID='';PWD= ''; to my connection string as it worked fine for sometime, but I created a new asp ( Classic) page and it has gone back to only displaying once before server error again..
    This all worked fine on my old win 2k machine and also on the live server, the only difference I can see is that I was Administrator on my old machine but I'm only a power user on this XP PC, could this be the problem?
    any help appreciated.

    Please post your question to a Database forum; someone there should be able to help you.
    http://forums.oracle.com/forums/index.jsp?cat=18
    PS - Messages in ALL CAPS are hard to read.

  • Dsn connection string syntax

    i have successfully set up a dsn connection, username and password using godaddy’s web portal.
    when setting up the connection with dreamweaver accordingly, the following connection code is generated:
    Dim MM_Custom4dsn_STRING
    MM_Custom4dsn_STRING = “dsn=access_Custom4.dsn;uid=aonefun;pwd=****;”
    when testing the connection the following error is returned:
    [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
    Does the Dreamweaver connection code syntax look right?

    Hi, I have been articulating the problem incorrectly.
    The Excel file is located in the root of my website. For example, if I just type in the url: www.abc.com/dates.xls in my browser it launches Microsoft Excel and the file opens. This should be straight forward for Crystal Reports to connect to I would imagine. In Crystal Reports I attempt to connect to this file (using the Access/Excel driver) using, http://www.abc.com/dates.xls but I'm getting an error message: "DAO error. Invalid Internet Address."
    What is the correct syntax to type when connecting to a file that is sitting on the internet?
    thx,
    Mark

  • Timeouts and connection problems after 5.1(2) upgrade

    AIM/chat and some other programs are having timeout/connection problems after upgrade to 5.1(2). I am using S241 also. The connection problems stopped when the IPS was set to bypass. Rebuilt IPS and left sigs at default settings and problem is still happening. I am not seeing any of the IPs that are having the problem in the Event Viewer or on the Events in the IDM.
    Any known issues with the 5.1(2) that would cause this type of problem?

    I don't know specifically, but I did notice that 5.1(3) was released today.

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • RFC Receiver adpater Connection problem , Help us to solve ?

    Hi  Friends ,
                          Our scenarilo is Mail to RFC. It was running fine. In RFC Receiver adapter i have given <b>Maximium connection property to 1</b> .
                      While multiple set data passed to rfc will connection problem will come ?
                     Most data not uploaded . I am getting the following error.
                     <b>   If i set max connection to 5 . It is 5 times or more than that it is pusing the data .</b>
                    i am getting the following error <b>while i set the Max   connection to 1 .</b> . <b>Any other place i need to change configuration ?</b>
                   <i><b> - Error: 2007-09-24 10:51:22 GMT-05:30: Message processed for interface YRFC_EXT_WARR: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[CC_EXTE_WAREN_2W_RFC_RECEIVER]e7fa21f86ec535e883636c0beffc0f0c is exhausted. The current pool size limit (max connections) is 1 connections.</b></i>
                            Please give the description . I have referred many likns . Help us to solve this problem .
    Regards.,
    V.Rangarajan<b></b>
    Message was edited by:
            ranga rajan

    Hi,
    Have a look at this.This will help you.
    1.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f3f93ee7-0c01-0010-2593-d7c28b5377c2
    2. https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3103eb90-0201-0010-71af-be6f4a6f61d1
    Regards,
    Akshay Jamgaonkar.
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar

  • Unending connectivity problems -- and Desktop Help...

    I'm wasting so much time on connectivity problems that it's positively wearying. Prior to the installation of BT Infinity here in April, I had a low quality broadband service because of the length of the line from the exchange: if I could get a download speed of 1.2Mbps and an upload of a quarter of that, I was doing well. 
    BT advised that thanks to fibre optic, my Internet should run much faster. So we had Infinity installed. I'm registered with Speedtest.net so am able to see my performance record.
    The average download speed is now aroun d 6Mbps and the average upload, more than that at 7Mbps. How an upload speed can consistently be faster than a download escapes me.
    But I'm not familiar with the ways of Internet connectivity and try as a I might, can't get my head around it.
    This desktop computer runs Vista OS. Vista was **bleep** when it came out and is renowned for its botched handling of Internet connections. So I'm not blaming BT for the literally unending connectivity problems that are occurring now, with line drops, speeds slowing to a crawl, and no guarantee that any connection will last. But it would be good to actually use BT software to help fathom out what's going wrong here, and today's typical morning which looks like this:
    1) Boot up computer. Automatic connection to hub via Netgear USB wireless adapter. Hub is on ground floor of this 3-storey property but signal strength from hub  is excellent, as confirmed by inSSIDer monitoring, currently showing 54 with no other networks anywhere near that figure.
    2) Perhaps 5 minutes after connection established, it's then lost. 'Local Only' is displayed. This is, apparently, a known Vista problem. But Microsoft has issued a fix for it. I know this, because it took 100 hours of ploughin g the Net to find out that MS had finally admitted to one more Vista screw-up. I've used the Microsoft router "fix it" before and it didn't work ("failed to process") so uninstalled it and have DL'd it again now and run it. This time it says it has fixed everything.
    3) Computer is re-booted to make the fix effective. Computer connects to Internet. Speedtest.net check yet again confirms that upload speed is faster than download speed.
    4) Connection dies. So much for Microsoft Fix It.
    5) Windows diagnostics reports that it can re-set the IP profile (or something.) I click yes. The re-set goes through. Connectivity is restored. 10 minutes later, connectivity is lost. Just a red X in the tray. No connection of any kind, not even that daft 'Local Connection' only alert.
    6) Reboot. Yet again. BT Desktop Help was installed here and ran OK when we were using our Netgear DSG34 router. But since the change to the BT Hub, the BT program has never run at all. So-oo. . . It has been uninstalled. And then re-DL'd and re-installed. And though the installation  has been completed, clicking on 'launch' has failed to launch anything. But anyway. An hour ago, in one of the brief periods today when the Internet connection was holding up, I Revo-ed out the earlier install, DL'd BT desktop Help and re-installed it. . . and I'm still at the same stage as always, with a  Firefox browser page that's open and completely blank and has been for the past 30 minutes. The URL is:
    file:///C:/Program%20Files/BT%20Broadband%20Desktop%20Help/btbb/Start.html
     Repeated page re-loading gets nowhere. Malwarebytes PRO is turned OFF to prevent any possibility of blocking and the antivirus is termporaily SUSPENDED. This PC runs on Windows standard firewall but even turning that OFF doesn't get the page to load. Copying the address into Internet Explorer in case there's a Firefox problem merely results in Firefox being opened and the same blank page running there.
    7) After all that. . . Connection lost yet again and this time, Windows cannot connect at all. It reports that the "wireless network security key is not correct". I happen to know that it is, because this is maybe the 20th time it has reported this in the past 10 days and every time I have to key in the "correct" key all over again. . . at which point Windows still says it isn't correct and cannot repair.
    Turning off the computer completely, unplugging from the wall, holding in the power switch for a full minute to clear the circuits, traipsing up and dowen three flights of stairs to turn off the hub, then wait, then turn the power back onm again. . . Ah, wot fun times I'm having here with my particular versioin of Infinity (as in, an infinity of connectivcity problems.)
    Summary: I seem to be being simultaneously hit with one issue after another.
    I'm bewildered as to why ever since Infinity was installed here, my upload speed is generally faster than my download speed. I'm not happy with endless Internet connection failures though am thinking that Vista is playing a large part here with its "wrong security key" and unending 'Local Only / Limited Connection' failures. I do miss my Netgear router and the ability to access a fantastic help menu and re-boot directly from the desktop without having to keep going up and down three flights of sdtairs to do so (I haven't been able to find out how toe access the BT Hub remotely.)
    Above all though: I'm  really tired of repeatedly trying to run freshly downloaded and installed BT Desktop Help software but getting no further than a blank page because the program has stalled.
    If anyone has any advice / suggestions, other than to buy a carrier pigeon, that'd be much appreciated.
    Thanks.

    Thanks again to John and gg30340. Here's an update:
    1) BT Desktop Help removed completely from this computer. The uninstaller itself mopped up everything, which surprised me. But anyway.
    2) Bt Home Hub manager set up and working. Had to input serial number and create new password. All of this sounds fairly easy and would be if one had the device near the desk. But the idiots who built this property shoved the BT master socket inside the garage next to the door. Our two home computers are on the third floor. To ensure the wireless signal strength is OK, the Hub and Infinity module/device/whatever it's called are on a high shelf. It's a major job to even reach the darn things, never mind read the labels seeing as how the BT Infinity engineer was good enough to tidy up the cabling and make a very tight connection to the wall socket.
    3) I had hoped to be able to back up the Hub's settings, seeing as the software provides for Advanced Settings / System / Backup. But not on mine (Hub 3.0). All that System allows is choosing which internet clock to define the accurate time. Everything else in System is just a pattern of short lines as if trying to indicate that there's some text there but it's invisible.This is now my second encounter with BT software which, for whatever reason, isn't functioning as it should on this PC.
    4) Hub reset to factory fresh, according to BT guide.
    5) Reset appears to have achieved nothing apart from requiring the password to be popped in again. After reset, it wasn't even possible to connect to the hub manager. Internet connectivity was eventually established for all of 30 seconds and then, gone.
    6) Computer was shut down and then booted anew. Internet connectivity is still. . . dreadful. One minute everything's fine and then, literally,. the next minute a webpage won't load. Even opening the Hub Manager has taken three attempts, i.e., disconnecting from the Internet, re-connecting, failing, and trying twice more until success. Yet all the time these failures are occurring, the tray icon is showing a steady, unwavering green icon for Local and Internet access -- despite the fact, there manifestly isn't any.
    7) Speedtest. net tests are actually showing upload and download 'trajectories' going slower and slower and finally halting at some point on the arc, then after a period of up to 30 seconds, suddenly becoming animated again. Speed test results with broadband speed checker UK and Think Broadband's checker are so at variance with one another, and with Speedtest, net, that it seems all three are using different technologies in pursuit of the same thing. Either way, upload speeds continue to be much, much faster than download speeds, a state of affairs I certainly have never encountered before.
    8) Speedtest net tests taken in the past 10 minutes, with one test following on from its predecessor, begin at 8.24 down/8.88 up, followed by 5.24 down / 6.40 up, followed by a mind-numbingly lonnnnng 0.62 down / 8.70 up -- in other words, a continuous yo-yoin g of Internet connectivity to the pooint that it actually might as well not even be here (I've had to make five attempts just to get on to this forum. . .)
    9) BT Speedtest will necessitate disconnection of everything downstairs and all boxes being lugged up here. This is actually going to require uncoililng tied-off cabling and hanging off a stepladder to do so -- though I surely can't be the only person in Britain who doesn't have a nice, handy BT master socket in their study or lounge. That said though: until we switched to Infinity, we *never* experienced these kinds of horrendous connectivity problems and never had need to unplug the Netgear router downstairs and bring it upstairs to connect directly to tjhe desktop PC so BT's own test could be run.
    I'll just have to get to work dismantling stuff tomorrow. However, I have to say that after a factory re-set which has changed nothing at all, I'm beginning to think there's a problem with the BT line itself (hence why I'm happy to follow the advice here, though less than happy at the prospect of the messing about involved.)
    Thanks, you two, for your patient help, and also for clarifying the situation re the three signal paths being shown on inSSIDer. At least I know that's usual now! And now, hopefully, when I press 'Post', I won't be faced with an endlessly spinning Firefox circle culminating in  what may well be, or seem to be, the 57,938th time today of seeing "Page Not Found". . .

  • PHP and MySQL Connection problem

    I am trying to make a PHP MySQL on a remote server connection in Dreamwesaver CS3.
    When I enter the information (host, user, password, etc.) and hit TEST, I get the following error message.
    "Access Denied. The file may not exist, or there could be a permission problem. Make sure you have proper authorization on the server and the server is properly configured."
    I know the user, password, etc. work, as I can access the MySQL database with other software.
    I checked with my host and they say there are no permission problems on their end.
    I have checked the settings on the Test Server page in Site Setup and everything looks correct and works there.
    I have not seen this particular problem described in other forum postings (although there are a LOT of postings on this topic!).
    Any help would be appreciated.

    I thought my testing server was the remote server and is always on as far as I know. I don't know how to turn it on or off.
    Is there some other testing server that I should be aware of?
    Frank
    Date: Wed, 3 Jun 2009 15:43:02 -0600
    From: [email protected]
    To: [email protected]
    Subject: PHP and MySQL Connection problem
    I know you are using remote, but is your testing server on? if not turn that on and see if that does it. it just happened to me working on remote server and could not get mysql conn to work, until I turn on my testing (developer server), then I was able to connect to mysql and the tables that I created in phpmyadmin remotly was downloaded.
    >

  • TS1538 my ipad can not continue to download ios 6.1.2 because of connection problem and it is stuck in connect to itunes image, i cant open it anymore..what should i do? help plz

    my ipad can not continue to download ios 6.1.2 because of connection problem and it is stuck in connect to itunes image, i cant open it anymore..what should i do? help plz

    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/ht4097
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • I am experiencing wireless connection problem on 4s after ios 8.1 upgrade. The wireless icon appears showing that it's connected but webpages do not load. I have checked my internet connection with other devices and seems to be alright. what to do?

    Hi
    I am experiencing wireless connection problem on 4s after ios 8.1 upgrade. The wireless icon appears showing that it's connected but webpages do not load. I have checked my internet connection with other devices and seems to be alright. what to do?
    I have tried reseting the network settings and forgetting my wireless connection and re-connecting to it. I even backed up my phone on itunes and restored it, factory reseted it. Nothing seems to work.
    Also after my upgrade to ios 8.1 my personal hotspot option under cellular data has disappeared.
    Would you please help me out? I would really appreciate it.

    Hi..
    Restart your router then restart the iPhone to test.
    If that doesn't help, try this support article >   iOS: Troubleshooting Wi-Fi networks and connections

Maybe you are looking for