V4.0.1 suddenly stopped working ("unable to connect to server") while other browsers still work

Dell Dimension desktop, running Windows XP Pro, sp3; Pentium 4 2.8 GHz; 1 GB RAM; DSL on home LAN.
Have used Firefox almost exclusively, but it just stopped working today. No new applications installed. Downloaded and reinstalled Firefox to no avail.
Am able to access all sites using both Safari and Windows Explorer on the same machine.
When requesting a page, it immediately gives the error:
"Unable to connect
Firefox can't establish a connection to the server at..."
Doesn't take any time to try to connect, to find the server, etc.

That is an indication that a firewall is blocking the new version of Firefox. For details see [[Firefox cannot load websites but other programs can]].

Similar Messages

  • Unable to connect the server, while open the rpt file in server from java.

    Hi,
    I have written one java class, that class deployed in solaris server. The BO server is avilable in another solaris server. i want to convert the rpt file to pdf format. for that i try to give the file path to the server for opening the rpt file, that time i got the follwoing error:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException:
    Unable to connect to the server: uinbrdcsap02. --- Connection refused
    (errno:239)---- Error code:-2147217387 Error code name:connectServer
            at
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwR
    eportSDKServerException(Unknown Source)
            at
    com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.connect
    (Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
            at
    com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Un
    known Source)
            at
    com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initia
    lize(Unknown Source)
    *My java code is the following ..*
    package com.ramco.report;
    //Crystal Java Reporting Component (JRC) imports.     
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.ByteArrayInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.ByteArrayOutputStream;
    import java.sql.Connection;
    import java.sql.CallableStatement;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.text.SimpleDateFormat;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ExportOptions;
    import java.util.Calendar;
    import java.util.Properties;
    import org.apache.log4j.Logger;
    import org.apache.log4j.SimpleLayout;
    import org.apache.log4j.FileAppender;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    // Class file starting.
    public class StandardReconReport
         private Connection objConnection = null;
         private DBConnection dbconnection = null;
         private ByteArrayInputStream byteArrayInputStream =null;
         private FileOutputStream fileOutputStream = null;     
         private ByteArrayOutputStream byteArrayOutputStream = null;
         private CallableStatement callablestatement = null;
         private CallableStatement callablestatement1 = null;     
         private ResultSet resultset1 = null;
         private ResultSet resultset = null;
         private String Deal_No = null;
         private String Job_Date = null;     
         private String Reportservername = null;
         private SimpleLayout layout   = null;
         private FileAppender appender = null;
         private Logger logger            = null;
         private String     DateTimeFormat = null;
         private String Report_File_path =null;
         private String Pdf_File_Name = null;     
         private Properties properties = null;
         private String LogFilePath = null;
         private String FileName = null;
         private String FullLogFilePath = null;
         private Statement statement = null;
         private String Report_upload_path = null;
         private String StanReconDir = null;
         private String winandsol = null;
         private com.crystaldecisions.sdk.occa.report.application.ReportClientDocument  reportClientDoc = null;
         private int count_tmp=0;
         private String DATE_FORMAT = null;
         private String dateformat = null;
         private Calendar cal = null;
        private SimpleDateFormat sdf = null;
        private String reconfilename = null;    
         // Method for Generating Report.....
         private void stanReportGeneration()
              try
                   properties = new Properties();
                   properties.clear();
                 properties.load(new FileInputStream("GeneralInfo.properties"));
                 Reportservername = properties.getProperty("reportservername");
                 reconfilename = properties.getProperty("reconfilename");
                 layout = new SimpleLayout();
                   LogFilePath = properties.getProperty("logfilepath");               
                   dateformat = dateTime1(properties.getProperty("dateformat1"));
                   StanReconDir = properties.getProperty("stanrecondir");
                  winandsol = properties.getProperty("windowsandsolaris");        
                  if (new File(LogFilePath).exists())
                       LogFilePath = LogFilePathdateformatwinandsol;
                       if (new File(LogFilePath).exists())
                       else
                            new File(LogFilePath).mkdirs();
                  FileName = "STANRECONLOGFILE-";             
                  FileName = FileNamedateformat".txt";             
                  FullLogFilePath = LogFilePath+FileName;
                  appender = new FileAppender(layout,FullLogFilePath,false);
                 logger = Logger.getLogger("MyLogger");
                 logger.addAppender(appender);
                 DateTimeFormat = properties.getProperty("datetimeformat");       
                 logger.info("The Start Recon Report Start Time: " +dateTime(DateTimeFormat));             
                 logger.info("");            
                 try
                      InetAddress address[] = InetAddress.getAllByName(Reportservername);                 
                     for (int i=0; i<address.length;i++)
                          logger.info("Report Server Name: " + address<i>.getHostName());
                          logger.info("Report Server Address: " + address<i>.getHostAddress());
                          logger.info("Report Server Canonical: " + address<i>.getCanonicalHostName());
                 catch (UnknownHostException e)
                      logger.error("The host "Reportservername"is not avilable");
                 Report_File_path = properties.getProperty("StandardReconReportpath");          
                  logger.info("The Report File Name is : "+Report_File_path " - "dateTime(DateTimeFormat));
                  //Report_File_path="rassdk://"+Report_File_path;
                  try
                       //Getting the Database connection....
                       dbconnection = new DBConnection();
                      objConnection = dbconnection.getConnections();
                      statement = objConnection.createStatement();
                      String sqlQuery = "SELECT TRIM(PARAM_VALUE) FROM SYS_USER_PARAM WHERE COMPONENT = 'REPORT' AND LINE_NO = 1 AND PARAM_NAME = 'REPORT_DOWNLOADPATH' AND STATUS = 'A'";
                      resultset = statement.executeQuery(sqlQuery);
                      while(resultset.next())
                           Report_upload_path = resultset.getString(1);
                           logger.info("Report_upload_path from the DB: "+Report_upload_path);
                  catch (SQLException ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  catch(Exception ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  finally
                       if(statement!=null)
                            statement.close();
                       if(resultset!=null)
                            resultset.close();
                  if (new File(Report_upload_path).exists())
                       Report_upload_path = Report_upload_path+StanReconDir;
                       if (new File(Report_upload_path).exists())
                            System.out.println("Directory is avilable"+Report_upload_path);
                       else
                            new File(Report_upload_path).mkdirs();
                  Report_upload_path = Report_upload_pathwinandsoldateformat+winandsol;              
                  if (new File(Report_upload_path).exists())
                  else
                       new File(Report_upload_path).mkdirs();
                  logger.info("Report_upload_path : "Report_upload_path" : "+dateTime(DateTimeFormat));
                  try
                       logger.info("Calling the REPORT_STAN_RECON_CON SP : "+dateTime(DateTimeFormat));
                      callablestatement = objConnection.prepareCall("{call REPORT_STAN_RECON_CON(?)}");
                      callablestatement.registerOutParameter(1, oracle.jdbc.driver.OracleTypes.CURSOR);
                        callablestatement.execute();
                        resultset=(ResultSet)callablestatement.getObject(1);
                        if(resultset!=null)
                             while(resultset.next())
                                  count_tmp = count_tmp+1;
                                  logger.info("");                              
                                 Deal_No   = resultset.getString(1);
                                  Job_Date = resultset.getString(2);
                                  DATE_FORMAT = resultset.getString(3);
                                  Job_Date = Job_Date.substring(0,10);
                                  logger.info("*********** PDF Convertion Starting for a Deal No: " +Deal_No " :: "dateTime(DateTimeFormat));
                                  Pdf_File_Name = Report_upload_pathreconfilenameDeal_No"-"DATE_FORMAT+".pdf";                              
                                  Job_Date = Job_Date.replace('-', '/');
                                  logger.info("The Deal_No is : "+Deal_No " - "dateTime(DateTimeFormat));
                                  logger.info("The Job_Date is : "+Job_Date " - "dateTime(DateTimeFormat));
                                  try
                                     reportClientDoc = new com.crystaldecisions.sdk.occa.report.application.ReportClientDocument();
                                       reportClientDoc.setReportAppServer(Reportservername);                                   
                                       logger.info("Report App server Name := "+ reportClientDoc.getReportAppServer());
                                       logger.info("Report_File_path  := "+ Report_File_path);                             
                                       reportClientDoc.preCreateServerAgent(true);                            
                                       reportClientDoc.open(Report_File_path,0);                         
                                       logger.info("After opening the RTF file for : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                                 callablestatement1 = objConnection.prepareCall("{call REPORT_STANDARD_RECON(?,?,?,?)}");
                                       callablestatement1.setString(1, Job_Date);
                                       callablestatement1.setString(2, Deal_No);
                                       callablestatement1.setString(3,"");
                                       callablestatement1.registerOutParameter(4, oracle.jdbc.driver.OracleTypes.CURSOR);
                                       callablestatement1.execute();
                                       resultset1=(ResultSet)callablestatement1.getObject(4);
                                       String tableAlias = reportClientDoc.getDatabaseController().getDatabase().getTables().getTable(0).getAlias();
                                       reportClientDoc.refreshReportDocument();
                                       reportClientDoc.getDatabaseController().setDataSource(resultset1, tableAlias , "Result Set");
                                       reportClientDoc.refreshReportDocument();                         
                                       ExportOptions oExportOptions = new ExportOptions();
                                       oExportOptions.setExportFormatType(ReportExportFormat.RTF);
                                       byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
                                       logger.info("After exporting the report file to PDF file for the : "+Deal_No " Deal_No - "dateTime(DateTimeFormat));
                                       //Use the Java I/O libraries to write the exported content to the file system.
                                       byte byteArray[] = new byte[byteArrayInputStream.available()];     
                                       //Create a new file that will contain the exported result.
                                       logger.info("Successfully exported report to " + Report_File_path" - "dateTime(DateTimeFormat));
                                       logger.info("*********** PDF Convertion Ending for a Deal : "Deal_No" "+dateTime(DateTimeFormat));
                                       logger.info("");
                                       Deal_No   = null;
                                       Job_Date  = null;
                                  catch (SQLException ex)
                                      ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  catch (IOException ex)
                                      ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  catch (Exception ex)
                                       ex.printStackTrace();
                                      System.out.println(ex);
                                      logger.error(ex);
                                  finally
                                       if(byteArrayInputStream!=null)
                                            byteArrayInputStream.close();
                                       if(byteArrayOutputStream!=null)
                                            byteArrayOutputStream.close();
                                       if(fileOutputStream!=null)
                                            fileOutputStream.close();
                                       if(callablestatement1!=null)
                                            callablestatement1.close();
                                       if(resultset1!=null)
                                            resultset1.close();
                                       if(reportClientDoc!=null)
                                            reportClientDoc.close();
                        if(count_tmp==0)
                             logger.info("");
                             logger.info(" $$$$$$$$ There is NO DATA for generating the Report $$$$$$$: " +dateTime(DateTimeFormat));
                  catch (SQLException ex)
                       ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  catch (Exception ex)
                        ex.printStackTrace();
                       System.out.println(ex);
                       logger.error(ex);
                  finally
                       if(callablestatement!=null)
                            callablestatement.close();
                       if(resultset!=null)
                            resultset.close();
                       if(objConnection!=null)
                            objConnection.close();
                       if(callablestatement1!=null)
                            callablestatement1.close();
                       if(resultset1!=null)
                            resultset1.close();
              catch (IOException ex)
                  ex.printStackTrace();
                  System.out.println(ex);
                  logger.error(ex);
              catch (Exception ex)
                   ex.printStackTrace();
                  System.out.println(ex);
                  logger.error(ex);
              finally
                  properties.clear();              
              logger.info("");
              logger.info("*******Standard Recon Report End Time*******: "+dateTime(DateTimeFormat));
         // Getting the current date and time..
         public String dateTime(String dateFormat)
              cal = Calendar.getInstance();
             sdf = new SimpleDateFormat(dateFormat);
             return sdf.format(cal.getTime());
         //Getting the Yesterday Date and time...
         public String dateTime1(String dateFormat)
              cal = Calendar.getInstance();
              cal.add(Calendar.DATE, -1);            
             sdf = new SimpleDateFormat(dateFormat);
             return sdf.format(cal.getTime());
         public static void main(String[] args) {
              StandardReconReport  SR = new StandardReconReport();
              SR.stanReportGeneration();
    For the above code  i given the report parameter from  the property file.
    reportservername=servername
    datagenreportpath=rassdk\://C\:
    MyEclipseWorkPlace
    IDSREPORTGENERATION
    REPORTFILES
    STANDARD_RECON_REPORT.rpt
    The code is working fin, while i try to connect the BO which is avilble in Windows server, but this is not working if the BO is avilble in solaris server.
    Any bodies please help
    Edited by: velmurugan.spn on Sep 12, 2009 6:38 AM

    Hi,
    Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
    We have applied 8.1.1.3 patch on 8.1.1.0
    below are the steps followed
    Reports are not generated after 8.1.1.3 patch installtion.
    we have also followed to below steps mentioned for this issue in oracle support.
    "In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
    change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
    we still not able to generated able to generate reports even after following above steps.
    Thanks
    Sean

  • Unable to connect with server, all other apps OK, have disabled firewall.

    have recycled modem,removed firefox and reloaded,have disabled McAfee. no fix. Windows OK

    Wi-Fi issue?  Are you in a home or business environment? Have you tried connecting and re-connecting to your wi-fi network? 

  • When I log in iOS devise it gives the message 'unable to connect to server'

    When I log in iOS devise it gives the message 'unable to connect to server' while the devise is connected with excellent strength signal.

    Worked for me:
    Download the old Apple's "Find My Friends" app, agrre to the terms there.
    Hopefully this bug will be solved soon.

  • HT201263 My iPod touch suddenly stopped working. It was fine, but when I went back the screen had gone black and I was unable to turn it on. It is now unresponsive and my computer does not recognize it when it is plugged in. What should I do?

    My iPod touch suddenly stopped working. It was fine earlier, but when I went back a few hours later, the screen had gone black and I was unable to turn it on. It is now unresponsive and my computer does not recognize it when it is plugged in. I thought it just needed to be charged but there seems to be a larger issue now. What should I do?

    Let your ipod die. Then when it is dead charge it adn turn it back on. After that it should be fine.

  • Why my Ipod suddenly stop working

    Why my Ipod suddenly stop working.
    I was looking picture then I left my Ipod for 30 second then total death

    Is it still charging if you use the adapter?
    Did you try to reset by holding the sleep and home button until the Apple logo comes back again?
    Did you try to connect in recovery mdoe? iPhone and iPod touch: Unable to restore

  • Itunes suddenly stopped working and i cant  re-install. Get error message (I believe error 7). Any tips?

    Itunes suddenly stopped working and i cant  re-install. Get error message (I believe error 7). Any tips?

    Hello, Ruud1234. 
    Thank you for visiting Apple Support Communities.
    Here are the steps I would recommend going through as they should resolve the issue.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    Jason H.

  • MacbookPro (Late 2013) FaceTime/iMessage suddenly stopped working "FaceTime Failed"

    FaceTime/iMessage suddenly stopped working "FaceTime Failed" although i am calling the same number, what can i do to fix this?

    Hello cameronmhill,
    It sounds like you are unable to use FaceTime on your Mac with an error that it has failed. I recommend these troubleshooting steps from the article named:
    FaceTime for Mac: Troubleshooting FaceTime
    http://support.apple.com/kb/ts4185
    Check that your email address is verified in FaceTime > Preferences.If FaceTime > Preferences shows your email status as "verifying," follow the instructions in the verification email that was sent to complete the process.
    Toggle FaceTime off and on in FaceTime > Preferences.
    If still unable to Sign In follow the instructions in FaceTime, Game Center, Messages on OS X: Troubleshooting Sign in
    Troubleshooting FaceTime for Mac
    You can make FaceTime calls using the FaceTime app. You can call FaceTime users whose contact information is in Contacts. You can add contacts and edit contact information in either FaceTime or Contacts. To place a video call, you may use a phone number or email address.
    If you encounter issues making or receiving FaceTime calls, try the following:
    Verify that FaceTime is enabled in FaceTime > Preferences.If the issue persists, or if you see the message "Waiting for Activation", try toggling FaceTime off and then on.
    Verify that the Date, Time, and Time Zone are set correctly:
    From the Apple () menu, choose System Preferences > Date & Time > Date & Time.
    Enable "Set Automatically".
    Click the Time Zone tab and confirm the closest city is correct
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • Dbx for Forte Developer 6 on SunOS 5.10 suddenly stopped working

    I know this is the forum for Sun Studio but it was the closest I could find to answer the question. If there is one for Forte Developer, please point me to that.
    The problem I have is that last week dbx suddenly stopped working for me. I would try to lauch it and it would just hang and be unable to be killed with kill -9.
    I've asked my sys admins to look into the issue but haven't gotten a response yet so I thought I'd try here.
    I have some truss output but I can't post it here because of length issues. If somebody wants it, I can send it to them.
    Thanks,
    Madison

    Forte Developer 6 is part of the Sun Studio family, so you have found the right forum. :-)
    FD6 is End Of Service Life, and no support has been available for it since 2006.
    In addition, it is not supported for use on Solaris 10. If it was working previously, it was only by accident.
    You should get Sun Studio 12, the current release, or wait a few weeks and get Sun Studio 12 udpate 1. It is free for all uses, does not use a runtime license (only a license agreement), supports modern hardware and operating systems, compiles faster, produces code that runs faster, has much better support for C++ (and supports C99), has a greatly improved debugger and has other new development tools.
    You can get the current Sun Studio here:
    [http://developers.sun.com/sunstudio/]
    ... and the current patches for it here:
    [http://developers.sun.com/sunstudio/downloads/patches/index.jsp]
    The Support Matrix shows what OS versions are supported by the various Sun Studio releases, and the lifetime of each.
    [http://developers.sun.com/sunstudio/support/matrix/index.jsp]

  • My I pad suddenly stopped working then i connect it to iTunes it make error 4014 can you help me please

    my I pad suddenly stopped working then i connect it to iTunes it make error 4014 can you help me please I pad 4

    If the phone shows the "connect to iTunes" screen, the data on the phone is most likely lost.
    Connecting in recovery mode is your only chance to use the phone again, besides getting it serviced by Apple.
    iOS: Unable to update or restore

  • MY iPhone 5C suddenly stopped working. It wont connect to my Mac and repeatedly reboots from the apple Logo when plugged into the wall. Help!

    MY iPhone 5C suddenly stopped working. It wont connect to my Mac and repeatedly reboots from the apple Logo when plugged into the wall.
    There is no water damage or anything. I got that checked at the Apple store. I also have Apple Care + but didnt let them give me a new one yet because I have photos on this that I have no yet backed up that are very important. They are the last photos I have with my grandfather. Can anyone help me. Please!

    If the phone shows the "connect to iTunes" screen, the data on the phone is most likely lost.
    Connecting in recovery mode is your only chance to use the phone again, besides getting it serviced by Apple.
    iOS: Unable to update or restore

  • Photoshop CS4 64bit suddenly stop working

    Having problems with Photoshop CS4 64bit version stop running for me giving me this error message  with these details:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Photoshop.exe
      Application Version:    11.0.1.0
      Application Timestamp:    499bfd16
      Fault Module Name:    StackHash_0b5f
      Fault Module Version:    6.1.7600.16385
      Fault Module Timestamp:    4a5be02b
      Exception Code:    c0000374
      Exception Offset:    00000000000c6cd2
      OS Version:    6.1.7600.2.0.0.256.1
      Locale ID:    4105
      Additional Information 1:    0b5f
      Additional Information 2:    0b5f2ed00a0371f4956b3b2a23be79e0
      Additional Information 3:    a274
      Additional Information 4:    a2747fd43e73092b139f32555a88633d
    It seems when i do something simple as typing text, it'll stop working and give me a "Adobe Photoshop suddenly stop working". My CS4 32bit version seems to working fine with whatever i'm working on. I'm running a fresh install of Windows 7 64bit Ultimate on a new computer Intel quad core with 4gig of ram if that helps. Sorry if this have been asked before but i couldn't find anything on these forums. Thanks in advance.

    i deleted the prefs file and now i can open photoshop. but it seems as if it crashes if i open ANY file with ANY text, no matter what the font is.

  • My usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    my usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    Either the physical drive or the enclosure electronics has failed. The light you are seeing is powered by the USB connection, the power, electricity, all USB ports put out. That doesn't mean the actual physical hard drive or the USB to SATA bus electronics are working properly. If it doesn't show in Disk Utility then it is DEAD.
    Most of the time it is the enclosures electronics that fail. Removing the physical drive from the enclosure and put it in another enclosure or using a SATA to USB adapter, one that has it's own AC power supply, might allow you to get the files off the drive.

  • Satellite L300 suddenly stopped working - new motherboard needed

    My Sat L300 suddenly stopped working the other day.
    It kept freezing to start with, then nothing at all. So, I kill-disked the HDD and tried to re-install Windows (XP).
    During the install it threw up a message that some internal components had been incorrectly installed and needed to be reinstalled.
    I was told to remove the memory cards and re-seat them.
    That did not work. I thought that perhaps the HDD was damaged, so I fitted a new one, and started to reinstall Windows.
    Once again, same message. One of my colleagues at work suggested that the Motherboard was probably U/S.
    So I have been trawling the .net to find a replacement. Laptop out of warranty! I am told that some other serial numbered motherboards will work with this laptop. Don't really want to get a motherboard only to find its never going to work! My unit has an SPS number of: V000138330.
    I am being offered one with an SPS of: V000138390.
    Any ideas? Will this one work?
    And if it does, will it give me the functionality that I used to enjoy?!
    Sorry for the long sob story.
    Any advice gratefully accepted.
    ANDY-N

    Hello Andy
    Sorry but can you tell us more about your notebook? which model do you have exactly (L300-xxx)?
    Do you have European model?
    Has your notebook valid warranty?
    Maybe I have misunderstood something but why you want to exchange mainboard if the warranty is probably still valid?

  • My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?, My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?

    My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do?, My charger doesn't want to plug in to the phone,it suddenly stopped working.What should I do? iPhone 5

    Clean the lint/debris from the charging port and plug the cable in.

Maybe you are looking for