IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Android Discussion :

Problème page login


Sujet :

Android

  1. #1
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut Problème page login
    Bonjour,

    J'essaye de suivre ce tuto : http://dsilvera.developpez.com/tutor...es-script-php/ mais quand je lance l'appli sur mon téléphone je bloque sur la page qui me demande les informations de connexion ( Je vois "please wait" tous le temps).
    Voici mes fichiers :

    SCRIPT BASE DE DONNEE :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
     
    -- phpMyAdmin SQL Dump
    -- version 2.6.4-pl4
    -- http://www.phpmyadmin.net
    -- 
    -- Host: localhost
    -- 
     
    -- --------------------------------------------------------
     
    -- 
    -- Création Table `auth_table`
    -- 
     
    CREATE TABLE IF NOT EXISTS auth_table (
      user_id int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
      username varchar(20) NOT NULL DEFAULT '',
      password varchar(32) NOT NULL DEFAULT '',
      PRIMARY KEY  (user_id),
      UNIQUE KEY username (username)
    ) ENGINE = InnoDB;
     
    -- 
    -- Insertion Table `auth_table`
    -- 
     
    INSERT INTO auth_table (username, password)
    VALUES ('test', MD5('pass'));
    SCRIPT PHP situé sur bouzoubad.free.fr/log.php :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
     
    <?php
        unset($_GET);
     
        if( isset($_POST['username']) && isset($_POST['password']) ) {
     
            echo '<?xml version="1.0"?>'."\n";
            echo "<login>\n";
     
        // host doit être remplacé par le serveur de la base de données.
        // user représente le nom d'utilisateur de la base de données.
        // pass est le mot de passe pour accéder à cette base de données avec cette 
    	// utilisateur.
            if (!@mysql_connect('bouzoubad.sql.free.fr', 'bouzoubad', 'azrael0')) { error(1); }
     
    	// database représente le nom d ela base de données
    	    if (!mysql_select_db('Log')) { error(2); }
     
            if(get_magic_quotes_gpc()) {
                $login = stripslashes($_POST['username']);
                $pass  = stripslashes($_POST['password']);
            } else {
                $login = $_POST['username'];
                $pass  = $_POST['password'];
            }
     
            unset($_POST);
     
            $kid = login($login, $pass);
            if($kid == -1) { 
                error(3); 
            } else {
                printf('    <user id="%d"/>'."\n",$kid);
            }
     
            echo "</login>";
        }
     
        function error($ec) {
            printf('    <error value="%d"/>'."\n".'</login>',$ec);
            die();
        }
     
        function login($login, $pass) {
            $select = "
    		    SELECT user_id 
    		    FROM auth_table
    		    WHERE username = '%s' AND password = '%s'
    			";
    		$fixedlogin = mysql_real_escape_string($login);
    		$fixedpass  = mysql_real_escape_string($pass);
    		$query = sprintf($select, $fixedlogin, $fixedpass);
     
            $result = mysql_query($query);
            if(mysql_num_rows($result) != 1) { return -1; }    
            $row = mysql_fetch_row($result);
            return $row[0];
        }
    ?>
    MAIN.XML :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
     
     
        <EditText
            android:id="@+id/username"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/please"
            android:layout_marginTop="45dp"
            android:ems="10"
            android:hint="@string/hint_username"
            android:padding="20dp"
            android:singleLine="true" />
     
        <EditText
            android:id="@+id/password"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_below="@+id/username"
            android:ems="10"
            android:hint="@string/hint_password"
            android:inputType="textPassword"
            android:padding="20dp" >
     
            <requestFocus />
        </EditText>
     
        <Button
            android:id="@+id/cancelbutton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_marginBottom="40dp"
            android:text="@string/Cancel" />
     
        <TextView
            android:id="@+id/please"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="17dp"
            android:padding="10dp"
            android:text="@string/please"
            android:textAppearance="?android:attr/textAppearanceMedium" />
     
        <Button
            android:id="@+id/okbutton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_above="@+id/cancelbutton"
            android:layout_alignParentLeft="true"
            android:text="@string/Login" />
     
    </RelativeLayout>
    LOGIN.XML :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".Login" >
     
        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="170dp"
            android:text="@string/TextView" />
     
    </RelativeLayout>
    MAIN.JAVA :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    package com.example.gyropode;
    import android.app.Activity; 
    import android.content.Intent;
    import android.os.Bundle;
    import android.widget.TextView;
    import com.example.gyropode.Login;
     
    public class Main extends Activity 
    {
        private TextView tv;
    	public static final int RESULT_Main = 1;
     
     
    	public void onCreate(Bundle icicle) 
    	{
            super.onCreate(icicle);
     
     		//Appel de la page de Login 
            startActivityForResult(new Intent(Main.this, Login.class), RESULT_Main);
     
           tv = new TextView(this);
            setContentView(tv);
        }
     
        private void startup(Intent i) 
    	{
    		// Récupère l'identifiant        
    		int user = i.getIntExtra("userid",-1);
     
    		//Affiche les identifiants de l'utilisateur
            tv.setText("UserID: "+String.valueOf(user)+" logged in");
        }
     
     
        protected void onActivityResult(int requestCode, int resultCode, Intent data) 
    	{ 
            if(requestCode == RESULT_Main && resultCode == RESULT_CANCELED)  
                finish(); 
            else 
                startup(data);
        }
    }
    LOGIN.JAVA :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    package com.example.gyropode;
     
    import java.io.IOException;
    import java.io.InputStream;
    import java.security.MessageDigest;
    import java.security.NoSuchAlgorithmException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpResponse;
    import org.apache.http.NameValuePair;
    import org.apache.http.client.entity.UrlEncodedFormEntity;
    import org.apache.http.client.methods.HttpPost;
    import org.apache.http.impl.client.DefaultHttpClient;
    import org.apache.http.message.BasicNameValuePair;
    import org.apache.http.params.HttpConnectionParams;
    import org.apache.http.protocol.HTTP;
    import org.xml.sax.Attributes;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.XMLReader;
    import org.xml.sax.helpers.DefaultHandler;
    import android.app.Activity;
    import android.app.AlertDialog;
    import android.app.ProgressDialog;
    import android.content.Intent;
    import android.os.Bundle;
    import android.os.Looper;
    import android.view.View;
    import android.widget.Button;
    import android.widget.EditText;
    import com.example.gyropode.R;
     
    public class Login extends Activity
    {
    	// Lien vers votre page php sur votre serveur
    	private static final String	UPDATE_URL	= "http://bouzoubad.free.fr/log.php";
     
    	public ProgressDialog				progressDialog;
     
    	private EditText						UserEditText;
     
    	private EditText						PassEditText;
     
    	public void onCreate(Bundle savedInstanceState)
    	{
     
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
     
    		// initialisation d'une progress bar
    		progressDialog = new ProgressDialog(this);
    		progressDialog.setMessage("Please wait...");
    		progressDialog.setIndeterminate(true);
    		progressDialog.setCancelable(false);
    		// Récupération des éléments de la vue définis dans le xml
    		UserEditText = (EditText) findViewById(R.id.username);
     
    		PassEditText = (EditText) findViewById(R.id.password);
    		Button button = (Button) findViewById(R.id.okbutton);
     
    		// Définition du listener du bouton
    		button.setOnClickListener(new View.OnClickListener()
    		{
     
    			public void onClick(View v)
    			{
     
    				int usersize = UserEditText.getText().length();
     
    				int passsize = PassEditText.getText().length();
    				// si les deux champs sont remplis
    				if (usersize > 0 && passsize > 0)
    				{
     
    					progressDialog.show();
     
    					String user = UserEditText.getText().toString();
     
    					String pass = PassEditText.getText().toString();
    					// On appelle la fonction doLogin qui va communiquer avec le PHP
    					doLogin(user, pass);
     
    				}
    				else
    					createDialog("Error", "Please enter Username and Password");
     
    			}
     
    		});
     
    		button = (Button) findViewById(R.id.cancelbutton);
    		// Création du listener du bouton cancel (on sort de l'appli)
    		button.setOnClickListener(new View.OnClickListener()
    		{
     
    			public void onClick(View v)
    			{
    				quit(false, null);
    			}
     
    		});
     
    	}
     
    	private void quit(boolean success, Intent i)
    	{
    		// On envoie un résultat qui va permettre de quitter l'appli
    		setResult((success) ? Activity.RESULT_OK : Activity.RESULT_CANCELED, i);
    		finish();
     
    	}
     
    	private void createDialog(String title, String text)
    	{
    		// Création d'une popup affichant un message
    		AlertDialog ad = new AlertDialog.Builder(this)
    				.setPositiveButton("Ok", null).setTitle(title).setMessage(text)
    				.create();
    		ad.show();
     
    	}
     
    	private void doLogin(final String login, final String pass)
    	{
     
    		final String pw = md5(pass);
    		// Création d'un thread
    		Thread t = new Thread()
    		{
     
    			public void run()
    			{
     
    				Looper.prepare();
    				// On se connecte au serveur afin de communiquer avec le PHP
    				DefaultHttpClient client = new DefaultHttpClient();
    				HttpConnectionParams.setConnectionTimeout(client.getParams(), 15000);
     
    				HttpResponse response;
    				HttpEntity entity;
     
    				try
    				{
    					// On établit un lien avec le script PHP
    					HttpPost post = new HttpPost(UPDATE_URL);
     
    					List<NameValuePair> nvps = new ArrayList<NameValuePair>();
     
    					nvps.add(new BasicNameValuePair("username", login));
     
    					nvps.add(new BasicNameValuePair("password", pw));
     
    					post.setHeader("Content-Type", "application/x-www-form-urlencoded");
    					// On passe les paramètres login et password qui vont être récupérés
    					// par le script PHP en post
    					post.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
    					// On récupère le résultat du script
    					response = client.execute(post);
     
    					entity = response.getEntity();
     
    					InputStream is = entity.getContent();
    					// On appelle une fonction définie plus bas pour traduire la réponse
    					read(is);
    					is.close();
     
    					if (entity != null)
    						entity.consumeContent();
     
    				}
    				catch (Exception e)
    				{
     
    					progressDialog.dismiss();
    					createDialog("Error", "Couldn't establish a connection");
     
    				}
     
    				Looper.loop();
     
    			}
     
    		};
     
    		t.start();
     
    	}
     
    	private void read(InputStream in)
    	{
    		// On traduit le résultat d'un flux
    		SAXParserFactory spf = SAXParserFactory.newInstance();
     
    		SAXParser sp;
     
    		try
    		{
     
    			sp = spf.newSAXParser();
     
    			XMLReader xr = sp.getXMLReader();
    			// Cette classe est définie plus bas
    			LoginContentHandler uch = new LoginContentHandler();
     
    			xr.setContentHandler(uch);
     
    			xr.parse(new InputSource(in));
     
    		}
    		catch (ParserConfigurationException e)
    		{
     
    		}
    		catch (SAXException e)
    		{
     
    		}
    		catch (IOException e)
    		{
    		}
     
    	}
     
    	private String md5(String in)
    	{
     
    		MessageDigest digest;
     
    		try
    		{
     
    			digest = MessageDigest.getInstance("MD5");
     
    			digest.reset();
     
    			digest.update(in.getBytes());
     
    			byte[] a = digest.digest();
     
    			int len = a.length;
     
    			StringBuilder sb = new StringBuilder(len << 1);
     
    			for (int i = 0; i < len; i++)
    			{
     
    				sb.append(Character.forDigit((a[i] & 0xf0) >> 4, 16));
     
    				sb.append(Character.forDigit(a[i] & 0x0f, 16));
     
    			}
     
    			return sb.toString();
     
    		}
    		catch (NoSuchAlgorithmException e)
    		{
    			e.printStackTrace();
    		}
     
    		return null;
     
    	}
     
    	private class LoginContentHandler extends DefaultHandler
    	{
    		// Classe traitant le message de retour du script PHP
    		private boolean	in_loginTag		= false;
    		private int			userID;
    		private boolean	error_occured	= false;
     
    		public void startElement(String n, String l, String q, Attributes a)
     
    		throws SAXException
     
    		{
     
    			if (l == "login")
    				in_loginTag = true;
    			if (l == "error")
    			{
     
    				progressDialog.dismiss();
     
    				switch (Integer.parseInt(a.getValue("value")))
    				{
    					case 1:
    						createDialog("Error", "Couldn't connect to Database");
    						break;
    					case 2:
    						createDialog("Error", "Error in Database: Table missing");
    						break;
    					case 3:
    						createDialog("Error", "Invalid username and/or password");
    						break;
    				}
    				error_occured = true;
     
    			}
     
    			if (l == "user" && in_loginTag && a.getValue("id") != "")
    				// Dans le cas où tout se passe bien on récupère l'ID de l'utilisateur
    				userID = Integer.parseInt(a.getValue("id"));
     
    		}
     
    		public void endElement(String n, String l, String q) throws SAXException
    		{
    			// on renvoie l'id si tout est ok
    			if (l == "login")
    			{
    				in_loginTag = false;
     
    				if (!error_occured)
    				{
    					progressDialog.dismiss();
    					Intent i = new Intent();
    					i.putExtra("userid", userID);
    					quit(true, i);
    				}
    			}
    		}
     
    		public void characters(char ch[], int start, int length)
    		{
    		}
     
    		public void startDocument() throws SAXException
    		{
    		}
     
    		public void endDocument() throws SAXException
    		{
    		}
     
    	}
     
    }
    STRINGS.XML :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
     
        <string name="app_name">Gyropode</string>
        <string name="bienvenue">Bienvenue</string>
        <string name="menu_settings">Settings</string>
        <string name="Start">Start</string>
        <string name="title_activity_avertissements">Avertissements</string>
        <string name="avertissements">Avertissement</string>
        <string name="avertissements1"> - Le port du casque est obligatoire.</string>
        <string name="avertissements2"> - Toute modification du système engendre une perte de la garantie constructeur.</string>
        <string name="avertissements3"> - Ne pas utliser le gyropode sous la pluie ou sur sol humide.</string>
        <string name="avertissements4"> - Toute personne mesurant moins de 1m40, pesant moins de 40kg ou plus de 90kg, ne doit pas utliser le gyropode.</string>
        <string name="avertissements5"> - Interdit au moins de 16 ans.</string>
        <string name="avertissements6"> - Ne pas utiliser la tablette en présence de vapeurs.</string>
        <string name="avertissements7"> - Ne pas utliser la tablette en dehors des températures recommandées (entre 0°C et 40°C).</string>
        <string name="avertissements8"> - Ne pas placer de charges trop importantes sur le guidon.</string>
        <string name="OK">J\'accepte</string>
        <string name="Avertissement">Avertissement</string>
        <string name="bug">Test : Si vous ne voyez pas un cercle en rotation cela veut dire que l\'application ne fonctionne pas.</string>
        <string name="Username">Username</string>
        <string name="Password">Password</string>
        <string name="Login">Login</string>
        <string name="Cancel">Cancel</string>
        <string name="hint_password">password</string>
        <string name="hint_username">username</string>
        <string name="title_activity_main">main</string>
        <string name="title_activity_login">Login</string>
        <string name="please">Veuillez vous identifier avec votre username et le mot de passe fourni.</string>
        <string name="TextView">TEST</string>
    </resources>
    Merci

  2. #2
    Expert éminent

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Points : 9 149
    Points
    9 149
    Par défaut
    Bonjour,

    Pourrais tu nous mettre le logcat en pièce jointe stp ?

    Et essayes de te mettre en debug voir dans quelle ligne de commande tu bloques ?

    Merci
    Responsable Android de Developpez.com (Twitter et Facebook)
    Besoin d"un article/tutoriel/cours sur Android, consulter la page cours
    N'hésitez pas à consulter la FAQ Android et à poser vos questions sur les forums d'entraide mobile d'Android.

  3. #3
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut
    Bonjour,

    En faite c'est pas vraiment moi qui bloque mais c'est plus le problème du message qui me dit "please wait" mais qui ne s’enlève jamais après avoir rempli le nom d’utilisateur et le mot de passe.
    Mais j'ai quand même un problème lorsque je lance l'appli sur mon téléphone (est-ce que sa a un rapport ? Je ne sais pas) :
    01-21 18:44:19.211: D/TextLayoutCache(1248): Using debug level: 0 - Debug Enabled: 0
    01-21 18:44:19.331: D/libEGL(1248): loaded /system/lib/egl/libGLES_android.so
    01-21 18:44:19.381: D/libEGL(1248): loaded /system/lib/egl/libEGL_adreno200.so
    01-21 18:44:19.511: D/libEGL(1248): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
    01-21 18:44:19.511: D/libEGL(1248): loaded /system/lib/egl/libGLESv2_adreno200.so
    01-21 18:44:19.641: I/Adreno200-EGLSUB(1248): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-21 18:44:19.671: D/memalloc(1248): /dev/pmem: Mapped buffer base:0x5c654000 size:59330560 offset:55562240 fd:64
    01-21 18:44:19.681: E/(1248): Can't open file for reading
    01-21 18:44:19.681: E/(1248): Can't open file for reading
    01-21 18:44:19.691: D/OpenGLRenderer(1248): Enabling debug mode 0
    01-21 18:44:19.901: D/memalloc(1248): /dev/pmem: Mapped buffer base:0x605a8000 size:63098880 offset:59330560 fd:67
    01-21 18:44:19.951: D/memalloc(1248): /dev/pmem: Mapped buffer base:0x641d5000 size:66867200 offset:63098880 fd:70
    J'ai également nettoyer le projet pour voir si il trouvait des erreurs mais non.

    Merci de m'aider car je dois continuer de travailler au plus vite sur cette application.
    Merci

  4. #4
    Modérateur
    Avatar de Hizin
    Homme Profil pro
    Développeur mobile
    Inscrit en
    Février 2010
    Messages
    2 180
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France

    Informations professionnelles :
    Activité : Développeur mobile

    Informations forums :
    Inscription : Février 2010
    Messages : 2 180
    Points : 5 072
    Points
    5 072
    Par défaut
    Revois intégralement ta gestion d'erreur... Tu devrais normalement avoir tout plein de messages dans le LogCat, mais vu que tu les passes sous le tapis...
    C'est Android, PAS Androïd, ou Androïde didiou !
    Le premier est un OS, le second est la mauvaise orthographe du troisième, un mot français désignant un robot à forme humaine.

    Membre du comité contre la phrase "ça marche PAS" en titre et/ou explication de problème.

    N'oubliez pas de consulter les FAQ Android et les cours et tutoriels Android

  5. #5
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut
    Citation Envoyé par Hizin Voir le message
    Revois intégralement ta gestion d'erreur... Tu devrais normalement avoir tout plein de messages dans le LogCat, mais vu que tu les passes sous le tapis...
    J'ai pas compris, que dois-je faire ?

  6. #6
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut
    Voilà du lancement du logiciel jusqu'au lancement de l'appli sur le tél :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    01-30 21:01:13.327: D/dalvikvm(21337): Late-enabling CheckJNI
    01-30 21:01:13.567: D/TextLayoutCache(21337): Using debug level: 0 - Debug Enabled: 0
    01-30 21:01:13.597: D/libEGL(21337): loaded /system/lib/egl/libGLES_android.so
    01-30 21:01:13.607: D/libEGL(21337): loaded /system/lib/egl/libEGL_adreno200.so
    01-30 21:01:13.607: D/libEGL(21337): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
    01-30 21:01:13.607: D/libEGL(21337): loaded /system/lib/egl/libGLESv2_adreno200.so
    01-30 21:01:13.627: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:01:13.637: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5c667000 size:25792512 offset:22024192 fd:63
    01-30 21:01:13.657: E/(21337): Can't open file for reading
    01-30 21:01:13.657: E/(21337): Can't open file for reading
    01-30 21:01:13.657: D/OpenGLRenderer(21337): Enabling debug mode 0
    01-30 21:01:13.817: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5e5ac000 size:22024192 offset:18255872 fd:66
    01-30 21:01:13.837: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5faad000 size:12980224 offset:9211904 fd:69
    01-30 21:01:14.707: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:01:14.717: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x6080e000 size:3862528 offset:94208 fd:72
    01-30 21:01:14.807: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x60dea000 size:36532224 offset:32763904 fd:78
    01-30 21:01:14.817: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:01:14.817: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5c667000 size:25792512 offset:22024192
    01-30 21:01:14.817: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5e5ac000 size:22024192 offset:18255872
    01-30 21:01:14.817: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5faad000 size:12980224 offset:9211904
    01-30 21:01:15.407: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x630c1000 size:40300544 offset:36532224 fd:63
    01-30 21:01:15.587: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:01:15.587: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5c6bc000 size:12980224 offset:9211904 fd:70
    01-30 21:01:15.647: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5e5ac000 size:22024192 offset:18255872 fd:82
    01-30 21:01:15.657: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:01:15.657: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x6080e000 size:3862528 offset:94208
    01-30 21:01:15.657: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x60dea000 size:36532224 offset:32763904
    01-30 21:01:15.657: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x630c1000 size:40300544 offset:36532224
    01-30 21:01:16.127: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x60dea000 size:25792512 offset:22024192 fd:64
    01-30 21:01:24.287: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:01:24.287: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5faad000 size:13520896 offset:12980224 fd:85
    01-30 21:01:24.337: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x62683000 size:14061568 offset:13520896 fd:89
    01-30 21:01:24.387: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x633ec000 size:14602240 offset:14061568 fd:92
    01-30 21:01:39.827: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:01:39.827: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:01:39.947: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5c6bc000 size:12980224 offset:9211904
    01-30 21:01:39.947: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5e5ac000 size:22024192 offset:18255872
    01-30 21:01:39.947: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x60dea000 size:25792512 offset:22024192
    01-30 21:01:39.977: E/WindowManager(21337): Activity com.example.gyropode.Login has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@417aa220 that was originally added here
    01-30 21:01:39.977: E/WindowManager(21337): android.view.WindowLeaked: Activity com.example.gyropode.Login has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@417aa220 that was originally added here
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.ViewRootImpl.<init>(ViewRootImpl.java:344)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:267)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:215)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.WindowManagerImpl$CompatModeWrapper.addView(WindowManagerImpl.java:140)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.Window$LocalWindowManager.addView(Window.java:537)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.app.Dialog.show(Dialog.java:278)
    01-30 21:01:39.977: E/WindowManager(21337): 	at com.example.gyropode.Login$1.onClick(Login.java:80)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.View.performClick(View.java:3574)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.view.View$PerformClick.run(View.java:14293)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.os.Handler.handleCallback(Handler.java:605)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.os.Handler.dispatchMessage(Handler.java:92)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.os.Looper.loop(Looper.java:137)
    01-30 21:01:39.977: E/WindowManager(21337): 	at android.app.ActivityThread.main(ActivityThread.java:4441)
    01-30 21:01:39.977: E/WindowManager(21337): 	at java.lang.reflect.Method.invokeNative(Native Method)
    01-30 21:01:39.977: E/WindowManager(21337): 	at java.lang.reflect.Method.invoke(Method.java:511)
    01-30 21:01:39.977: E/WindowManager(21337): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:823)
    01-30 21:01:39.977: E/WindowManager(21337): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:590)
    01-30 21:01:39.977: E/WindowManager(21337): 	at dalvik.system.NativeStart.main(Native Method)
    01-30 21:01:40.047: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5faad000 size:13520896 offset:12980224
    01-30 21:01:40.047: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x62683000 size:14061568 offset:13520896
    01-30 21:01:40.047: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x633ec000 size:14602240 offset:14061568
    01-30 21:01:40.077: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:01:40.087: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5e5ac000 size:22024192 offset:18255872 fd:66
    01-30 21:01:40.137: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x60dea000 size:25792512 offset:22024192 fd:76
    01-30 21:01:40.617: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x62683000 size:29560832 offset:25792512 fd:79
    01-30 21:02:15.007: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:02:15.007: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5faad000 size:16240640 offset:15601664 fd:88
    01-30 21:02:15.037: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x642b4000 size:16879616 offset:16240640 fd:92
    01-30 21:02:15.077: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x652cd000 size:17518592 offset:16879616 fd:95
    01-30 21:02:24.957: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:02:24.957: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:02:24.997: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5e5ac000 size:22024192 offset:18255872
    01-30 21:02:24.997: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x60dea000 size:25792512 offset:22024192
    01-30 21:02:24.997: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x62683000 size:29560832 offset:25792512
    01-30 21:02:25.007: E/WindowManager(21337): Activity com.example.gyropode.Login has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@417f8680 that was originally added here
    01-30 21:02:25.007: E/WindowManager(21337): android.view.WindowLeaked: Activity com.example.gyropode.Login has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@417f8680 that was originally added here
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.ViewRootImpl.<init>(ViewRootImpl.java:344)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:267)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:215)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.WindowManagerImpl$CompatModeWrapper.addView(WindowManagerImpl.java:140)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.Window$LocalWindowManager.addView(Window.java:537)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.app.Dialog.show(Dialog.java:278)
    01-30 21:02:25.007: E/WindowManager(21337): 	at com.example.gyropode.Login$1.onClick(Login.java:80)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.View.performClick(View.java:3574)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.view.View$PerformClick.run(View.java:14293)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.os.Handler.handleCallback(Handler.java:605)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.os.Handler.dispatchMessage(Handler.java:92)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.os.Looper.loop(Looper.java:137)
    01-30 21:02:25.007: E/WindowManager(21337): 	at android.app.ActivityThread.main(ActivityThread.java:4441)
    01-30 21:02:25.007: E/WindowManager(21337): 	at java.lang.reflect.Method.invokeNative(Native Method)
    01-30 21:02:25.007: E/WindowManager(21337): 	at java.lang.reflect.Method.invoke(Method.java:511)
    01-30 21:02:25.007: E/WindowManager(21337): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:823)
    01-30 21:02:25.007: E/WindowManager(21337): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:590)
    01-30 21:02:25.007: E/WindowManager(21337): 	at dalvik.system.NativeStart.main(Native Method)
    01-30 21:02:25.097: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5faad000 size:16240640 offset:15601664
    01-30 21:02:25.097: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x642b4000 size:16879616 offset:16240640
    01-30 21:02:25.097: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x652cd000 size:17518592 offset:16879616
    01-30 21:02:25.147: I/Adreno200-EGLSUB(21337): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:02:25.167: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5c7c6000 size:3768320 offset:0 fd:68
    01-30 21:02:25.197: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x5e5ac000 size:19369984 offset:15601664 fd:78
    01-30 21:02:25.687: D/OpenGLRenderer(21337): Flushing caches (mode 1)
    01-30 21:02:25.737: D/memalloc(21337): /dev/pmem: Mapped buffer base:0x60dea000 size:26624000 offset:22855680 fd:81
    01-30 21:02:25.907: D/OpenGLRenderer(21337): Flushing caches (mode 0)
    01-30 21:02:25.987: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5c7c6000 size:3768320 offset:0
    01-30 21:02:25.987: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x5e5ac000 size:19369984 offset:15601664
    01-30 21:02:26.007: D/memalloc(21337): /dev/pmem: Unmapping buffer base:0x60dea000 size:26624000 offset:22855680
    01-30 21:02:26.117: W/IInputConnectionWrapper(21337): showStatusIcon on inactive InputConnection
    01-30 21:16:14.467: D/dalvikvm(21337): Debugger has detached; object registry had 1 entries
    01-30 21:18:05.737: D/TextLayoutCache(22567): Using debug level: 0 - Debug Enabled: 0
    01-30 21:18:05.787: D/libEGL(22567): loaded /system/lib/egl/libGLES_android.so
    01-30 21:18:05.797: D/libEGL(22567): loaded /system/lib/egl/libEGL_adreno200.so
    01-30 21:18:05.817: D/libEGL(22567): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
    01-30 21:18:05.817: D/libEGL(22567): loaded /system/lib/egl/libGLESv2_adreno200.so
    01-30 21:18:05.847: I/Adreno200-EGLSUB(22567): <ConfigWindowMatch:2078>: Format RGBA_8888.
    01-30 21:18:05.857: D/memalloc(22567): /dev/pmem: Mapped buffer base:0x5c667000 size:3768320 offset:0 fd:64
    01-30 21:18:05.867: E/(22567): Can't open file for reading
    01-30 21:18:05.867: E/(22567): Can't open file for reading
    01-30 21:18:05.867: D/OpenGLRenderer(22567): Enabling debug mode 0
    01-30 21:18:05.977: D/memalloc(22567): /dev/pmem: Mapped buffer base:0x5d0ab000 size:7536640 offset:3768320 fd:67
    01-30 21:18:05.997: D/memalloc(22567): /dev/pmem: Mapped buffer base:0x5d7db000 size:26624000 offset:22855680 fd:70
    C'est les messages du LogCat pour "com.example.gyropode (session filter)

  7. #7
    Expert éminent

    Avatar de Feanorin
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    4 589
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 4 589
    Points : 9 149
    Points
    9 149
    Par défaut
    Revois intégralement ta gestion d'erreur... Tu devrais normalement avoir tout plein de messages dans le LogCat, mais vu que tu les passes sous le tapis...
    Dans les try catch, log les erreurs . Ainsi que log ton show et le dismiss de ta dialog pour savoir si tu passes bien à cet endroit.
    Responsable Android de Developpez.com (Twitter et Facebook)
    Besoin d"un article/tutoriel/cours sur Android, consulter la page cours
    N'hésitez pas à consulter la FAQ Android et à poser vos questions sur les forums d'entraide mobile d'Android.

  8. #8
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut
    Citation Envoyé par Feanorin Voir le message
    Dans les try catch, log les erreurs . Ainsi que log ton show et le dismiss de ta dialog pour savoir si tu passes bien à cet endroit.
    Je vois pas de quoi tu parles désolé, mais déjà dans le LogCat que j'ai mis dans le message précédent, il y a des erreurs. Est-ce que le problème viendrai de là ?

  9. #9
    Expert éminent

    Homme Profil pro
    Ingénieur systèmes et réseaux
    Inscrit en
    Février 2007
    Messages
    4 253
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur systèmes et réseaux
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Février 2007
    Messages : 4 253
    Points : 7 618
    Points
    7 618
    Billets dans le blog
    3
    Par défaut
    Qui l'a écrit ce code ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
     
    				}
    				catch (Exception e)
    				{
     
    					progressDialog.dismiss();
    					createDialog("Error", "Couldn't establish a connection");
     
    				}
    C'est bien toi non ?
    (même si recopié d'un tutoriel)

    Là tu dis "je ne dis rien à propos de l'erreur", mais j'essaye d'afficher une boite de dialog pour la signaler (on prefere un Toast sous Android vu que l'utilisateur n'a pas d'autre choix que de cliquer 'ok' de toute maniere).

    Il y a donc trois problèmes à cet endroit:
    * Pas de "Log" de l'erreur (genre Log.e("MONCODE","Connection failure",ex); )
    * Appel de progressDialog.dismiss(); alors qu'on n'est pas dans le thread UI
    * Appel de createDialog alors que: on n'est pas dans le thread UI, mais surtout, le dialog précédant n'est certainement pas encore fermé (puisqu'on a pas rendu la main au thread UI pour processer les messages dont celui de fermeture) => double dialog => erreur "Leaked window".

    Sauf que l'erreur de logcat correspond au point 3, et qu'il faudrait résoudre les points 1 et 2 avant.... surtout (1) pour savoir POURQUOI on passe dans le code de gestion d'erreur.
    N'oubliez pas de cliquer sur mais aussi sur si un commentaire vous a été utile !
    Et surtout

  10. #10
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Décembre 2012
    Messages
    31
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Étudiant
    Secteur : Enseignement

    Informations forums :
    Inscription : Décembre 2012
    Messages : 31
    Points : 8
    Points
    8
    Par défaut
    Oula.

    Effectivement il vaut mieux commencer par régler les erreurs étape par étape.

    1- Je vois l'erreur "Can't open file for reading" . Je ne vois pas vraiment le problème. J'arrive a ouvrir l'appli sur mon tél...

Discussions similaires

  1. Problème sur la page login
    Par ivoratparis dans le forum ASP.NET MVC
    Réponses: 1
    Dernier message: 07/07/2014, 07h20
  2. Problème page de login
    Par HakunA59 dans le forum Silverlight
    Réponses: 4
    Dernier message: 17/12/2010, 15h37
  3. [MySQL] recharger la même page login en cas de problème
    Par batoule80 dans le forum PHP & Base de données
    Réponses: 4
    Dernier message: 09/09/2008, 05h44
  4. problème page de login
    Par cyril911 dans le forum Langage
    Réponses: 3
    Dernier message: 18/04/2007, 16h14
  5. Réponses: 2
    Dernier message: 26/05/2006, 00h04

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo