• 締切済み

ESTA の申請

•Plastic card number must not exceed 16 characters in length. というエラーが出ます。 カードナンバーは16桁すべT間違っていないのに必ずこのエラーメッセージが出るのは何ででしょうか?教えてください。

  • 英語
  • 回答数1
  • ありがとう数1

みんなの回答

  • ddeana
  • ベストアンサー率74% (2976/4019)
回答No.1

もしかして番号と番号の間にスペースを開けていませんか? スペースもキャラクターとしてカウントされますので、VISAでもAMEXでもスペースを入れると16を超えてしまいます。 下記をご参照ください。

参考URL:
http://kflood.net/esta-1/step12.html
mimimaruv
質問者

お礼

ありがとうございました。再度確認しましたが、スペース等は入っていませんでした。 再度考えてみます。

関連するQ&A

  • 通販の英訳について

    海外で通販を申し込もうとしたところうまくいきません エラーメッセージには次のように書いてあります どのような意味でしょうか? Your order could not be submitted for the following reasons: 'First Address Line' must contain no special characters. Billing Address must contain no special characters.

  • 海外通販のカードの登録がうまくいきません。。

    レコードの海外通販をこのサイト(http://www.juno.co.uk/)したいのですが、その新規登録画面のCard number :This is the long number across the middle of the card.Must be 13-19 digits long. というところで何度カードの番号を入れてもエラーになります。。私の持っているカードはTUTAYAカードとJCBカードが一緒になったもので、4ケタの数字が中央に4つ並び、その下にAPLUSという文字と有効期限、そしてその下に16桁の数字があります。どちらを入れてもエラーになります。なぜなんでしょう?

  • ”must”の判別

    ”must”の判別 The characters in the stories must deal with not only natural threats but also their difficult personal problems. ストーリー中のキャラクターは、自然の脅威だけではなく彼らの個人的な難しい問題も扱っている・・・。 この上記の英文の”must”は、文脈から判断してどのように訳せばいいのでしょうか。 回答よろしくお願いします^^

  • letters in mixed case とは?

    外国のサイトに自分のIDを登録しようとして、パスワードを設定する際に、下記のような注意書きがありました。 Password must be between 6 and 30 characters long and must contain letters in mixed case. 6文字以上のアルファベットだけのもの、アルファベットと数字が混じっているもの、両方試したのですが、うまく行かず、 The password does not contain the required characters. と出てきてしまいます。 どんなパスワードを入れたらOKになるのでしょうか。

  • プログラムについて(UNIX)

    以下のプログラムを部分的で結構ですので 解説していただけないでしょうか? 打ち込んだ数字を10進法に変換して、 その後どうなっているのかがよく分かりません。 よろしくお願いします。 #include<stdio.h> #include<stdlib.h> #include<time.h> #include<math.h> #define N 127 #define M 121 #define LENGTH 45539 int C[N] ; int d[LENGTH/N]; int b[LENGTH/N]; float r[LENGTH]; char message[LENGTH/N/7]; int PNread(int); int PXread(void); int main() { int i, m; /* Insert the process to input the user No. m here. */ printf("Input the user No. : "); scanf("%d", &m); if (m < 0 || m > M) { printf("You input a wrong user No.\n"); exit(-1); } printf("\nThe user No. m is %d. \n", m); /* Read the spread code for user No. m from data file */ if(PNread(m) == -1) exit(-1); /* Display the spread code. */ /* Here is an example to display the first 10 numbers */ if(PXread()== -1) exit(-1); int t,k; float hatD[LENGTH/N]; for(t=0; t < LENGTH/N; t++){ hatD[t]=0; for(k = t*N; k < (t+1)*N; k++) hatD[t]+= ((float)r[k]*C[k%N])/((float)N); d[t] = (hatD[t] >= 0)?1:-1; /*?はif文の省略形である*/ } for(t = 0; t < LENGTH/N; t++) b[t] = (d[t] >= 0) ? 0 : 1; /* 文字に変換する */ for(i = 0; i < LENGTH/N; i += 7) message[i/7] = b[i]*64 + b[i+1]*32 + b[i+2]*16 + b[i+3]*8 + b[i+4]*4 + b[i+5]*2 + b[i+6]; /* メッセージの表示 */ printf("Message:\n%s\n", message); return 0; } /* Function of spread code reading */ int PNread(int m) { FILE *in; /* Verify the data file */ if ((in = fopen("PN7.dat", "r"))== NULL) { /* Error message */ printf("Error: Cannot find the data file. \n"); return -1; } if(m>1) /* Set the file pointer to the m-th user's spread code */ fseek(in,(m-1)*N*sizeof(int),SEEK_SET); /* Read the spread code to array C */ fread(C,sizeof(int),N,in); fclose(in); return 1; } int PXread(void) { FILE *in; int count; float rtemp; if((in = fopen("Rx7_51.dat", "r"))== NULL) { printf("Error; Cannot find the date file. \n"); return -1; } for(count = 0; count < LENGTH; count++){ fscanf(in, "%f", &rtemp); r[count] = rtemp; } fclose(in); return 1; }

  • 訳してください

    フリーのアプリケーションのダウンロードでユーザー登録が必要なのですが 何度「submit」しても The password does not contain the required characters. (パスワードは要求された文字を含んでおりません) となり、次の段階に進めません。 パスワードには以下のように書かれています。 Password must be between 10 and 30 characters long, must contain letters in mixed case and must contain numbers. 以下のように解釈しました。 パスワードは10~30文字以内で文字(アルファベット)と数字を含めてください。 訳し方間違っていますか? 例えばパスワードをabcdefg12345678(15文字)としてもダメなのでしょうか。 よろしくお願いします。

  • プログラミングハッシュ値についての質問

    #ifndef _SHA1_H_ #define _SHA1_H_ //#include <stdint.h> /* * If you do not have the ISO standard stdint.h header file, then you * must typdef the following: * name meaning * uint32_t unsigned 32 bit integer * uint8_t unsigned 8 bit integer (i.e., unsigned char) * int_least16_t integer of >= 16 bits * */ typedef unsigned int uint32_t; typedef unsigned char uint8_t; typedef short int_least16_t; #ifndef _SHA_enum_ #define _SHA_enum_ enum { shaSuccess = 0, shaNull, /* Null pointer parameter */ shaInputTooLong, /* input data too long */ shaStateError /* called Input after Result */ }; #endif #define SHA1HashSize 20 /* * This structure will hold context information for the SHA-1 * hashing operation */ typedef struct SHA1Context { uint32_t Intermediate_Hash[SHA1HashSize/4]; /* Message Digest */ uint32_t Length_Low; /* Message length in bits */ uint32_t Length_High; /* Message length in bits */ /* Index into message block array */ int_least16_t Message_Block_Index; uint8_t Message_Block[64]; /* 512-bit message blocks */ int Computed; /* Is the digest computed? */ int Corrupted; /* Is the message digest corrupted? */ } SHA1Context; /* * Function Prototypes */ int SHA1Reset( SHA1Context *); int SHA1Input( SHA1Context *, const uint8_t *, unsigned int); int SHA1Result( SHA1Context *, uint8_t Message_Digest[SHA1HashSize]); #endif /* のプログラムを160ビットのハッシュ値を今出力しているのですが16ビットだけを出力するようにしたいです。[SHA1HashSize/4]のところを直せば16ビットだけ出力できるらしいのですが、今のところ書き変えてもそれらしい答えが出てきませんどなたかご教授ください

  • Mail2.0.3 テキストエンコード

    Mail2.0.3から送信すると、いつも文字化けしてしまうのでテキストエンコードをJapanese (Shift JIS)に変更して送っていたのですが、今回初めてエラーメッセージがでました。 「Some characters in your message could not be converted to the '' Japanses(Shift JIS)''text encoding. Please choose a different entry from the'' Text Encoding '' menu」 日本語、英字、数字なども交えてメール作成したのが問題だったのでしょうか?

    • 締切済み
    • Mac
  • 英語でエラーメッセージが出ます

    今、カード決済をしよう思っているのですが ??errors.payment.paymentcardbean.verificationcode.length?? このようなエラーメッセージが出ます。 単語を調べたのですが イマイチ意味がわかりません。。。 どなたか教えてください。よろしくお願いします!

  • 1x.comという写真投稿サイトに投稿したいのですが・・・

    1x.comという写真投稿サイトに投稿したいのですが・・・ 登録し投稿したい写真を選ぶとこまではいくのですがうまく送信できません 注意書きに英文で File must be stored in JPEG format File should not exceed 2MB, but have as high quality as possible. Use the "Save for web"-feature in Photoshop and adjust compression so it never exceeds 2MB but is as high as possible. We recommend 900-950 pixels for landscape format and 700-750 pixels height for portrait format. Avoid special characters in the filename. Stick to a-z, A-Z, 0-9. No blanks! Don't upload the same photo more than once! とあり翻訳してみたのですがさっぱりです たぶん写真のサイズ等に問題があるのかと思うのですが・・・ 実際に投稿してる方は何MBで縦横のピクセルはいくつかなど教えていただけないでしょうか?