Nokia services dont work in my country

I have a nokia E63 with the latest firmware installed.every time I open the download application,it says service not available and every time I open ovi store app it says:unable to connect to server.every time I open facebook or myspace app(which redirects me to the web browser) it says:service not available for this criteria...I checked my friends E71 and got the same results....can anybody explain?
Does that mean that nokia blocked my country(Syria) from accessing its services
my blog on the net(in arabic):http://bazkurd.wordpress.com

bazkurd wrote:
I have a nokia E63 with the latest firmware installed.every time I open the download application,it says service not available and every time I open ovi store app it says:unable to connect to server.every time I open facebook or myspace app(which redirects me to the web browser) it says:service not available for this criteria...I checked my friends E71 and got the same results....can anybody explain?
Does that mean that nokia blocked my country(Syria) from accessing its services
No, it's your service provider.
‡Thank you for hitting the Blue/Green Star button‡
N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

Similar Messages

  • Java Print Service dont work in Linux

    Hello
    I Having one problem when try print in linux. Will anyone help.
    The print result blank page. But in Windows print ok.
    See the code
    import java.awt.geom.*;
    import java.awt.font.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.print.PrinterJob;
    import java.awt.event.*;
    import java.awt.*;
    import java.awt.print.*;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    public class ShapesPrint extends Panel implements Printable, ActionListener {
         final static Color bg = Color.white;
         final static Color fg = Color.black;
         final static Color red = Color.red;
         final static Color white = Color.white;
         final static BasicStroke stroke = new BasicStroke(2.0f);
         final static BasicStroke wideStroke = new BasicStroke(8.0f);
         final static float dash1[] = { 10.0f };
         final static BasicStroke dashed = new BasicStroke(1.0f,
                   BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 10.0f, dash1, 0.0f);
         final static Button button = new Button("Print");
         public ShapesPrint() {
              setBackground(bg);
              button.addActionListener(this);
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() instanceof Button) {
                   PrinterJob printJob = PrinterJob.getPrinterJob();
                   PrintRequestAttributeSet pg = new HashPrintRequestAttributeSet();
                   printJob.setPrintable(this);
                   if (printJob.printDialog(pg)) {
                        try {
                             printJob.print(pg);
                        } catch (Exception PrintException) {
                             PrintException.printStackTrace();
         public void paint(Graphics g) {
              super.paint(g);
              Graphics2D g2 = (Graphics2D) g;
              drawShapes(g2);
         public void drawShapes(Graphics2D g2) {
              Dimension d = getSize();
              int gridWidth = 400 / 6;
              int gridHeight = 300 / 2;
              int rowspacing = 5;
              int columnspacing = 7;
              int rectWidth = gridWidth - columnspacing;
              int rectHeight = gridHeight - rowspacing;
              Color fg3D = Color.lightGray;
              g2.setPaint(fg3D);
              g2.drawRect(80, 80, 400 - 1, 310);
              g2.setPaint(fg);
              int x = 85;
              int y = 87;
              //draw Text Layout
              FontRenderContext frc = g2.getFontRenderContext();
              Font f = new Font("Times", Font.BOLD, 24);
              String s = new String("24 Point Times Bold");
              TextLayout tl = new TextLayout(s, f, frc);
              g2.setColor(Color.green);
              tl.draw(g2, x, y - 10);
              // draw Line2D.Double
              g2.draw(new Line2D.Double(x, y + rectHeight - 1, x + rectWidth, y));
              x += gridWidth;
              // draw Rectangle2D.Double
              g2.setStroke(stroke);
              g2.draw(new Rectangle2D.Double(x, y, rectWidth, rectHeight));
              x += gridWidth;
              // draw  RoundRectangle2D.Double
              g2.setStroke(dashed);
              g2
                        .draw(new RoundRectangle2D.Double(x, y, rectWidth, rectHeight,
                                  10, 10));
              x += gridWidth;
              // draw Arc2D.Double
              g2.setStroke(wideStroke);
              g2.draw(new Arc2D.Double(x, y, rectWidth, rectHeight, 90, 135,
                        Arc2D.OPEN));
              x += gridWidth;
              // draw Ellipse2D.Double
              g2.setStroke(stroke);
              g2.draw(new Ellipse2D.Double(x, y, rectWidth, rectHeight));
              x += gridWidth;
              // draw GeneralPath (polygon)
              int x1Points[] = { x, x + rectWidth, x, x + rectWidth };
              int y1Points[] = { y, y + rectHeight, y + rectHeight, y };
              GeneralPath polygon = new GeneralPath(GeneralPath.WIND_EVEN_ODD,
                        x1Points.length);
              polygon.moveTo(x1Points[0], y1Points[0]);
              for (int index = 1; index < x1Points.length; index++) {
                   polygon.lineTo(x1Points[index], y1Points[index]);
              polygon.closePath();
              g2.draw(polygon);
              // NEW ROW
              x = 85;
              y += gridHeight;
              // draw GeneralPath (polyline)
              int x2Points[] = { x, x + rectWidth, x, x + rectWidth };
              int y2Points[] = { y, y + rectHeight, y + rectHeight, y };
              GeneralPath polyline = new GeneralPath(GeneralPath.WIND_EVEN_ODD,
                        x2Points.length);
              polyline.moveTo(x2Points[0], y2Points[0]);
              for (int index = 1; index < x2Points.length; index++) {
                   polyline.lineTo(x2Points[index], y2Points[index]);
              g2.draw(polyline);
              x += gridWidth;
              // fill Rectangle2D.Double (red)
              g2.setPaint(red);
              g2.fill(new Rectangle2D.Double(x, y, rectWidth, rectHeight));
              g2.setPaint(fg);
              x += gridWidth;
              // fill RoundRectangle2D.Double
              GradientPaint redtowhite = new GradientPaint(x, y, red, x + rectWidth,
                        y, white);
              g2.setPaint(redtowhite);
              g2
                        .fill(new RoundRectangle2D.Double(x, y, rectWidth, rectHeight,
                                  10, 10));
              g2.setPaint(fg);
              x += gridWidth;
              // fill Arc2D
              g2.setPaint(red);
              g2.fill(new Arc2D.Double(x, y, rectWidth, rectHeight, 90, 135,
                        Arc2D.OPEN));
              g2.setPaint(fg);
              x += gridWidth;
              // fill Ellipse2D.Double
              redtowhite = new GradientPaint(x, y, red, x + rectWidth, y, white);
              g2.setPaint(redtowhite);
              g2.fill(new Ellipse2D.Double(x, y, rectWidth, rectHeight));
              g2.setPaint(fg);
              x += gridWidth;
              // fill and stroke GeneralPath
              int x3Points[] = { x, x + rectWidth, x, x + rectWidth };
              int y3Points[] = { y, y + rectHeight, y + rectHeight, y };
              GeneralPath filledPolygon = new GeneralPath(GeneralPath.WIND_EVEN_ODD,
                        x3Points.length);
              filledPolygon.moveTo(x3Points[0], y3Points[0]);
              for (int index = 1; index < x3Points.length; index++) {
                   filledPolygon.lineTo(x3Points[index], y3Points[index]);
              filledPolygon.closePath();
              g2.setPaint(red);
              g2.fill(filledPolygon);
              g2.setPaint(fg);
              g2.draw(filledPolygon);
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
              if (pi >= 1) {
                   return Printable.NO_SUCH_PAGE;
              Graphics g2 = button.getGraphics();
              button.printAll(g2);
              drawShapes((Graphics2D) g);
              return Printable.PAGE_EXISTS;
         public static void main(String s[]) {
              WindowListener l = new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
                   public void windowClosed(WindowEvent e) {
                        System.exit(0);
              Frame f = new Frame();
              f.addWindowListener(l);
              Panel panel = new Panel();
              f.add(BorderLayout.SOUTH, panel);
              f.add(BorderLayout.CENTER, new ShapesPrint());
              panel.add(button);
              f.add(BorderLayout.SOUTH, panel);
              f.setSize(580, 500);
              f.show();
    }

    Hi, Frank.
    Thanks for your interest.
    The problem is , the browsers dont compare the certificates of webutil.jar and jacob.jar with its certificate list.
    In Linux the browser, Mozilla 1.7.8, look for the certificates in
    /usr/lib/jvm/java-1.4.2-ibm-1.4.2.0/jre/lib/security/cacerts
    In this file 'cacerts' are storing all the certificates, also exist another certs file in the home user directory the tree began in .java, but it is only a copy of the cacerts file locate in /usr/lib/jvm/java-1.4.2-ibm-1.4.2.0/jre/lib/security
    Duncan Mills resolve this question in this forun post
    Certificate in Linux
    But I have store the keystore file, named keystore, in this subdirectory , and dont work.
    Also I have copy the keystore file with the name cacerts in that subdirectory but then the java console say that it is in wrong format.
    I clean the jar cache before any test and delete the .java tree in home user too.
    Now Im trying to know what is the item in webutil*.htm that load the keystore file to see the way that I can force the webutiljpi.htm to load the certificate.
    Any idea?
    Thanks for your interest and for your help.
    Regards.

  • Keypad and contacts button dont work on 5800

    i have just noticed that the keypad and contacts button on my main screen (nokia 5800) dont work now when i press them. This means that although i can still get to my contacts via the menu i cant type in a random phone number anymore....please help

    problem solved with hard reset, make sure you make a backup of your phone using nokia PC suite, then turn of your phone, then keep the green phone button , the red phone button and the camera button pressed in while turning your phone back on, keep the 3 buttons pressed in until you see the shaking hands, then give country date , time etc, them your phone is going to configure the memory card, after that restore your backup with your pc 
    I hope this is helping you out

  • I have bought a IPhone 4 from Malaysia, my home button is not working. I want to replace the phone under warranty but all service centres mention that its country specific and I need to get it replaced only at malaysia. Can anyone guide me what to do????

    I have bought a IPhone 4 from Malaysia, my home button is not working. I want to replace the phone under warranty but all service centres mention that its country specific and I need to get it replaced only at malaysia. Can anyone guide me what to do????

    The iPhone warranty is not international and as you purchased in
    Malaysia the warranty is only valid in Malaysia
    You could try taking to an iPhone Authorised service provider
    in India but there have been many similar posts to yours
    and I am not aware  of them assisting  with an iPhone from
    outside India

  • Hi i want to buy an ipad from america with cellular and i want to connect it in jordan does the network work in my country JORDAN , because i dont see unlock ipad??

    hi i want to buy an ipad from america with cellular and i want to connect it in jordan does the network work in my country JORDAN , because i dont see unlock ipad in apple store??
    in apple store no ipad unlock for cellular if i bring it with cellular from america does it work in JORDAN ??
    THNANK ALOT

    US iPads are not locked to a carrier. Don't buy a Verizon or Sprint model, though.
    Regards.

  • Nokia service layer host process has stopped worki...

    Hello,
    When i try to update my Nokia E90... i get the following error -
    Nokia service layer host process has stopped working
    I tried everything... Reinstalling pc suite and Software Updater, but still same problem
    Please help me
    Thanks

    i had exactly the same problem while updating using the latest NSU on Windows Vista with SP1.
    I guess there is some compatibility problems between the latest version of NSU and Vista.
    I tried with Windows XP SP2 and the latest version of NSU, i was able to update my E90 to the firmware version - 200.34.73
    In case, you are using XP, I would suggest you uninstall NSU as per the FAQ in Nokia web site and reinstall the latest version.
    Please let me know if this helps.

  • I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down and dont work anymo

    I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down by itself and dont work anymore. From apple say even a year has not passed it is not under garancy and I should pay to fix it without ans issue.

    I have a MacBook Pro that I bought almost a year ago, next day problems with the hard disc that could not be diagnosed by the service, after 3 months they realized it and changed it with a new one, after 3-4 months heated and shut down by itself and dont work anymore. From apple say even a year has not passed it is not under garancy and I should pay to fix it without ans issue.

  • I bought  a iphone 3G s unlocked to use in another country but it's not working  phone says no service yet the internet service is working ....hey guys help

    hey guys i bought a iphone 3GS unlocked from the uk to work in another country but it recognise my internet service but not my phone service.....what do i do

    that's the problem i don't know as i ordered it online unlocked and just came home thinking i could use it as it's unlocked at least that's what i was told

  • Web Services with table element dont work

    I, am trying to use a web service that returns a xml with code and description.
    When i test the web service it works fine but when i use it in a page doesnt work at all.
    There is no parameters to call and the response is:
    <?xml version="1.0" encoding="utf-8" ?>
    - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <soap:Body>
    - <instituicaoResponse xmlns="http://tempuri.org/">
    - <instituicaoResult>
    - <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    - <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:Locale="pt-PT">
    - <xs:complexType>
    - <xs:choice maxOccurs="unbounded">
    - <xs:element name="Table">
    - <xs:complexType>
    - <xs:sequence>
    <xs:element name="INST" type="xs:decimal" minOccurs="0" />
    <xs:element name="DESCRICAO" type="xs:string" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    - <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
    - <NewDataSet xmlns="">
    - <Table diffgr:id="Table1" msdata:rowOrder="0">
    <INST>0</INST>
    <DESCRICAO>Beneficiários - SAMS Norte</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table2" msdata:rowOrder="1">
    <INST>1</INST>
    <DESCRICAO>Utentes - SAMS Norte (ex.Benef)</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table3" msdata:rowOrder="2">
    <INST>2</INST>
    <DESCRICAO>Beneficiários - SAMS Sul e Ilhas</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table4" msdata:rowOrder="3">
    <INST>3</INST>
    <DESCRICAO>Beneficiários - SAMS Centro</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table5" msdata:rowOrder="4">
    <INST>4</INST>
    <DESCRICAO>Beneficiários - PALOP's (excl. Benef. BCA)</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table6" msdata:rowOrder="5">
    <INST>6</INST>
    <DESCRICAO>Utentes - SAMS Sul e Ilhas</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table7" msdata:rowOrder="6">
    <INST>7</INST>
    <DESCRICAO>Funcionários do SBN/SAMS</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table8" msdata:rowOrder="7">
    <INST>10</INST>
    <DESCRICAO>Utentes - Banco Comercial Angolano</DESCRICAO>
    </Table>
    - <Table diffgr:id="Table9" msdata:rowOrder="8">
    <INST>15</INST>
    <DESCRICAO>Utentes - SAMS Centro</DESCRICAO>
    </Table>
    </NewDataSet>
    </diffgr:diffgram>
    </instituicaoResult>
    </instituicaoResponse>
    </soap:Body>
    </soap:Envelope>
    Can anyoone tell me waht is the problem, thanks

    As far as I can tell the problem is the null namespace attribute on the NewDataSet element:
    <NewDataSet xmlns="">As I understand it, either a namespace value should be given, or the xmlns attribute should not appear at all. If it's removed from the source XML then the data can be extracted:
    SQL> l
      1  with webservice as (
      2    select  xmltype(q'{
      3  <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      4  <soap:Body>
      5  <instituicaoResponse xmlns="http://tempuri.org/">
      6  <instituicaoResult>
      7  <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
      8  <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:Locale="pt-PT">
      9  <xs:complexType>
    10  <xs:choice maxOccurs="unbounded">
    11  <xs:element name="Table">
    12  <xs:complexType>
    13  <xs:sequence>
    14  <xs:element name="INST" type="xs:decimal" minOccurs="0" />
    15  <xs:element name="DESCRICAO" type="xs:string" minOccurs="0" />
    16  </xs:sequence>
    17  </xs:complexType>
    18  </xs:element>
    19  </xs:choice>
    20  </xs:complexType>
    21  </xs:element>
    22  </xs:schema>
    23   <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
    24   <NewDataSet xmlns="">
    25   <Table diffgr:id="Table1" msdata:rowOrder="0">
    26  <INST>0</INST>
    27  <DESCRICAO>Beneficiários - SAMS Norte</DESCRICAO>
    28  </Table>
    29   <Table diffgr:id="Table2" msdata:rowOrder="1">
    30  <INST>1</INST>
    31  <DESCRICAO>Utentes - SAMS Norte (ex.Benef)</DESCRICAO>
    32  </Table>
    33   <Table diffgr:id="Table3" msdata:rowOrder="2">
    34  <INST>2</INST>
    35  <DESCRICAO>Beneficiários - SAMS Sul e Ilhas</DESCRICAO>
    36  </Table>
    37   <Table diffgr:id="Table4" msdata:rowOrder="3">
    38  <INST>3</INST>
    39  <DESCRICAO>Beneficiários - SAMS Centro</DESCRICAO>
    40  </Table>
    41   <Table diffgr:id="Table5" msdata:rowOrder="4">
    42  <INST>4</INST>
    43  <DESCRICAO>Beneficiários - PALOPs (excl. Benef. BCA)</DESCRICAO>
    44  </Table>
    45   <Table diffgr:id="Table6" msdata:rowOrder="5">
    46  <INST>6</INST>
    47  <DESCRICAO>Utentes - SAMS Sul e Ilhas</DESCRICAO>
    48  </Table>
    49   <Table diffgr:id="Table7" msdata:rowOrder="6">
    50  <INST>7</INST>
    51  <DESCRICAO>Funcionários do SBN/SAMS</DESCRICAO>
    52  </Table>
    53   <Table diffgr:id="Table8" msdata:rowOrder="7">
    54  <INST>10</INST>
    55  <DESCRICAO>Utentes - Banco Comercial Angolano</DESCRICAO>
    56  </Table>
    57   <Table diffgr:id="Table9" msdata:rowOrder="8">
    58  <INST>15</INST>
    59  <DESCRICAO>Utentes - SAMS Centro</DESCRICAO>
    60  </Table>
    61  </NewDataSet>
    62  </diffgr:diffgram>
    63  </instituicaoResult>
    64  </instituicaoResponse>
    65  </soap:Body>
    66  </soap:Envelope>}') xml
    67    from dual)
    68  select
    69            extractvalue(
    70             value(t)
    71           , '/Table/INST'
    72           , 'xmlns="http://tempuri.org/"') inst
    73          , extractvalue(
    74             value(t)
    75           , '/Table/DESCRICAO'
    76           , 'xmlns="http://tempuri.org/"') descricao
    77  from
    78            webservice ws
    79          , table(
    80           xmlsequence(
    81             extract(
    82                 ws.xml
    83               , '//instituicaoResponse/instituicaoResult/diffgr:diffgram/NewDataSet/*'
    84*               , 'xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1" xmlns="http://tempuri.org/"'))) t
    SQL> /
    no rows selected
    SQL> l 24
    24*  <NewDataSet xmlns="">
    SQL> c/ xmlns=""//
    24*  <NewDataSet>
    SQL> /
    INST DESCRICAO
    0    Beneficiários - SAMS Norte
    1    Utentes - SAMS Norte (ex.Benef)
    2    Beneficiários - SAMS Sul e Ilhas
    3    Beneficiários - SAMS Centro
    4    Beneficiários - PALOPs (excl. Benef. BCA)
    6    Utentes - SAMS Sul e Ilhas
    7    Funcionários do SBN/SAMS
    10   Utentes - Banco Comercial Angolano
    15   Utentes - SAMS Centro
    9 rows selected.This is not an APEX problem: try the XML DB, but I think the problem lies in the web service XML rather than in Oracle or your XPath expressions...

  • Dont work adds of translation to me for example: quick translation, they is installed but not traduce any thing all the adds work less translations what can i do ?

    please i love mozilla and there is times what i want to translate any text from english to spanish but nothing i tve tried all the adds to translate but no load they is installed in my browser but simply dont work. tell me what can i do ?

    Everyone reading your posts here is just another MacBook Pro user. We're all volunteers, not Apple employees. No one here can speak for Apple.
    In my personal opinion, buying Apple products in a country where Apple has no stores and no corporate presence is a risk that the buyer takes knowingly. I don't think it's a wise risk, and I don't recommend that anyone take it. A small percentage of the products sold anywhere are going to have problems, and it makes more sense to buy an inferior product that can at least be serviced locally than to buy a superior product that may have to be sent thousands of miles for repair if anything ever goes wrong with it.

  • Nokia messenger not working !

    I am using a E72 handset , where I have configured my persona emails. The messanger service was working beautiful till 15-07-2010, after which its not synchronising at all. I tried to login at the Nokia messanger site; did not allow me stating data unavailability. When I contacted the Nokia help line, initially they suggested me to change the hotmail email address(login for N Messenger) and try the new password for logging in. It did not work. Thereafter they ould not give me any solution.
    I am also unable to delete the mail accounts on my mobile; with a message that email accounts are not connected to server.
    Ca anyone help me out?

    Nokia Series 40 has two configurations, one HTTP(s) and one for the rest, therefore we have to double-check your configuration in Nokia » Menu » Settings » Configuration » Preferred Access Point. Which one is shown and which one should it be. Or asked differently: Which network operator do you use, in which country?

  • E60 firmware update @ Nokia Service Center

    Folks,
    when the E60 firmware update came out I already did know that I a have to visit the local Nokia Service Center (in Vienna) to get the firmware update, because I am a Mac User. These funny guys at the local Service Center then updated the firmware to the same version which was already installed?! Very smart... finally I found out that there is no firmware update for the E60 available at the Nokia Service Center at the moment. There is a chance that this will happen some day in near future...
    Come on Nokia; how does this work?!? Every PC user can download the update from the Nokia site but the folks at the local service centers have to search in their print-outs if their is any update available - sounds anachronistic, doesn't it?
    So, can anybody tell me, when I can expect the E60 firmware update to arrive at the local Nokia Service Centers (in Austria)?
    Thanks,
    bj
    - bj

    The warranty with the phone is only valid in the Country / area in which it was sold.
    The ebay seller in the US probably got it cheaper abroad, and sold it on... Even if it was from the USA, the service centres wouldn't update it for you.
    The only thing you can do is keep checking the Nokia Software Updater
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Iphone dont work

    my iphone dont work what to do ?
    i bought my iphone 5s before 8 months.
    i went to idigital store that said me i havent 1 warrenty there .
    they said me to go orange commpany in israel and they say that my iphone
    wont prepare there
    i dont know what to do
    i had all my money in this iphone and i need it immedditly.
    i need your helpful how i cheak my iphone and prepare it /
    thanks you

    snans wrote:
    my iphone dont work what to do ? - what doesn't work - maybe add some details
    i bought my iphone 5s before 8 months. - where did you buy this phone
    i went to idigital store that said me i havent 1 warrenty there . not international warranty only in the country the phone was purchased.
    they said me to go orange commpany in israel and they say that my iphone
    wont prepare there
    i dont know what to do
    i had all my money in this iphone and i need it immedditly.
    i need your helpful how i cheak my iphone and prepare it /
    thanks you

  • NOKIA SERVICE AND CLUB NOKIA

    For anyone dealing with a nokia service centre or having a phone in for repair, here is some advice..Join club nokia and you will get so much more information than you would otherwise.
    My local NSC told me that nokia had my phone in for level 5 repair and all they would say is we cant tell you anything more than that (that was nearly 3 weeks ago), so since joining club nokia, I have discovered quite a bit of info that I would not otherwise have discovered, stuff like, the nsc had my phone for a week before even bothering to send it off to Nokias level 5 hub, I also now have a tracking number for my phone and can find out exactly where my phone is at anytime during the repair process, I know what has been done to it and when it is coming back.
    I may owe Nokia an appology for my rabid typing, however,a weak link like my poor nsc dont do them any favours.
    lesson learnt...JOIN CLUB NOKIA
    and once you do, here is the support number 01480410616..DIRECTMessage Edited by paulc on 27-Oct-2006
    05:36 PM

    6280 wrote: Dusty screen
    I think Nokia or Three clean this each time it is taken in for repair/service/update
    6280 wrote: Slider is so loooose! (i press a button on the upper slider, the whole thing just wobbles!)
    Most get loose, and you can't tighten it yourself!
    6280 wrote: My next phone is going to be a Sony Ericsson! (definatly!)
    Funny that!! I was very much looking at the Sony Ericsson W850i seems fab but will look into it a bit more first!
    Aubs

  • Exchange not working in the country of residence, but outside

    I got Mail configured with an Exchange account. The server uses Windows Exchange 2007 Service Pack 2 Update Rollup 3. +We're updating to Rollup 4 just in case.+
    For some reason, it stops working in the country where the person lives (and where the office is located) — it doesn't matter where, if I try inside the office or anywhere else within the country, the only way to fix this is deleting and reconfiguring it again. The tricky thing here is that it works perfectly outside the country, without any issues whatsoever.

    Do you have auto dismiss selected in the tool options. You can un-check that option and show loup and you should then be able to keep clicking until you select done. See if this tutorial on WB helps.

Maybe you are looking for

  • Folio producer tools

    I have a standard acrobat accout and have been adding to a single folio which is now at a fair size and I could do with re-ordering and changing some scrolling/ swiping actions. But am unable to change the folio at dp.acrobat because my account is no

  • Stock over view not showing

    hi MM guru.... when we initially up load material through MB1C movement type 561...show the massage document no xxxxxxx posted..but in  MMBE not showing..even in MB51  not showing that document no... kindly suggest me regards aqueel

  • When opening a non on demand sub-report it is only printing portrait?

    Hi All, I am running crystal XI, I have a landscape report, created a non on demand sub-report, Which generates the sub-report that is in portrait, even though the page setup says landscape, When previewing it also shows me the margins of portrait in

  • Menu creation failure

    Hi: I've been struggling lately with iDVD, not sure why. It used to work fine. I've got a project, just under an hour, but iDVD runs into errors creating the menu. I don't understand why. I'm using jpegs as pictures, and some music. Anyone know what

  • JTrek 1.1 From Compaq

    hi! I am using JTrek 1.1, a Java instrumentation tool that enables you to write Java applications that examine and modify Java classfiles. I was hoping someone might have experience and/or knowledge about it? I need some help with an exception I am g