Questions tagged [encoding]

Encoding is changing a sequence of characters to symbols.

Encoding is changing a sequence of characters to symbols. Do not confuse with encryption.

150 questions
0
votes
0 answers

Firewall blocking data transmitted through Python socket

I have an application written in Python 3 which communicates with an external SIP proxy server through its public IP. Basically the application I wrote sends out a SIP invite to the SIP proxy through an UDP socket. Unfortunately when I run my…
Vino
  • 101
  • 1
  • 3
0
votes
1 answer

How can I rescue broken filenames?

Apparently, someone didn't pay attention to the encoding when moving files from one server to another and I ended up with filenames containing German umlauts that appear as question mark in ls when using PuTTY. However, when using bash autocomplete,…
user178826
0
votes
2 answers

re: UTF-8, PHP and XML Mysql

This is related to https://stackoverflow.com/questions/1791082/utf-8-php-and-xml-mysql, which I am still trying to get my head around. I have a couple of separate questions that will hopefully help me understand how to resolve the issues I am…
icelizard
  • 732
  • 3
  • 10
  • 20
0
votes
1 answer

Special characters in mail (address) headers and RFC2047 encoding

I have some unexpected handling of RFC2047 "From" headers on Exim. (Actual addresses have been changed, the original display name contained non-ASCII characters) For this "From" header: From: =?iso-8859-1?Q?Doe=2C_John?= Which…
0
votes
1 answer

Nginx "auth_basic" string encoding

What is the right encoding/charset in nginx configuration file to display accentuated characters in HTTP authentication message ? For example, this conf file : server { ... location / { auth_basic "Zone sécurisée"; …
0
votes
1 answer

Migrating from LiteSpeed to Apache special characters in image names 404

On my host running LiteSpeed, images with special characters in filenames like "é" work just fine. When i migrate the site to my local development stacks, be them WAMP clones or even a Vagrant VM on Ubuntu, all running Apache, I get a 404. What…
Hlsg
  • 113
  • 5
0
votes
0 answers

Nginx $ssl_client_raw_cert pem encoding

In nginx when using the $ssl_client_raw_cert to get the cert as a pem in the header; is it just the encoded cert or is it in the following format? -----BEGIN CERTIFICATE ----- Encoded Cert -----END CERTIFICATE ----- the doc says returns the…
Janak
  • 113
  • 4
0
votes
1 answer

URL encoded URIs with umlauts not working on other Server

we are about to move our companies Website (Drupal 7) from the old Server A to the new Server B. As usual we ex-/imported the database and copied all the files via ftp. Since our company resides in Germany, we have a bunch of Images whose File names…
philipp
  • 137
  • 2
  • 10
0
votes
1 answer

Azure Media Services encode CCTV media

We are building a solution in Azure that will allow users to upload CCTV media content to our site. This media will then hopefully be encoded by Media Services but I have not found a solid list of codecs that supported by Azure. Ideally we would…
0
votes
1 answer

How to find difference in sending passwords to ProFTPD

There is a CentOS Server with proftpd installed, that works for a long time. Now I create a user the right way as the last time and check it with ftp command on windows CMD and it works. /etc/proftpd/ftpasswd --passwd --name newuser --uid 9999…
kockiren
  • 886
  • 3
  • 14
  • 37
0
votes
1 answer

Find difference in file encoding

I am sending email from the cmd with msmtp for that I do cat > test1 << EOF >From: "Tester" >test >EOF cat test1 | msmtp email@mail.com This works while: echo -e 'From: "Tester"\ntest' > test2 cat test2 | msmtp email@mail.com Doesn't work…
Nabil Sham
  • 267
  • 1
  • 2
  • 9
0
votes
2 answers

Hardware H.264 video encoders for production use?

I'm involved in a project that will involve encoding H.264 video from several sources for live, real-time transmission over the 'net, and it'd be nice to avoid having to dedicate an entire CPU-heavy server for every 1 or 2 sources. Some searching…
Nicholas Knight
  • 236
  • 2
  • 13
0
votes
0 answers

MySQL latin1 only for single PHP vhost

I have no control over the PHP application, but I have on Apache. I know how to set php_value for a particular vhost. I need to tell that vhost to use latin1 character set when connecting to MySQL instead of the system's default utf8. Other vhosts…
usr-local-ΕΨΗΕΛΩΝ
  • 2,359
  • 7
  • 34
  • 52
0
votes
1 answer

Change default encoding order in locale -a

My ubuntu server output the following after a locale -a : C C.UTF-8 POSIX fr_FR.utf8 if i input export LANG=fr_FR.UTF-8,it changes a little bit : C C.UTF-8 fr_FR.utf8 POSIX Main difference is that now, my rails tools works ! How can i change the…
Sylario
  • 99
  • 1
  • 11
0
votes
1 answer

Tomcat localhost_access_log.txt encoding

I run my web-app in Tomcat 7 and in the localhost_access_log.txt file I have the following lines 0:0:0:0:0:0:0:1 - - [25/Jun/2014:10:22:26 +0300] " Ì Èc£Ï!#ò2Tç¡$EI «àµ«]ëñʯ¯Ù (ÌÌÀ+À/ À " 400 - 0:0:0:0:0:0:0:1 - - [01/Jan/1970:02:59:59 +0300] "-"…
olgacosta
  • 101
  • 3