Zen Cart Logo
Forums / Upgrading to 1.5.x / ? marks instead of Registered Trademarks

? marks instead of Registered Trademarks

Views: 2,172

Results 1 to 9 of 9
15 Aug 2013, 6:48 AM
#1
muah avatar

muah

Zen Follower

Join Date:
Dec 2008
Location:
USA, North East
Posts:
226
Plugin Contributions:
0

? marks instead of Registered Trademarks

In certain areas like the IE or Firefox tab at the top, for example, the Registered Trademark shows a question mark in a black triangle instead of the trademark. The product names, descriptions show up fine but in certain areas, it shows up as a question mark. I'd like to skip it but the marks are required by law as the marks are policed.

It can't be the utf8 setting because it shows up fine everywhere else...again, only in certain areas like the window tab, etc. However, it sticks out like a sore thumb on the windows tab....customer sees the site name and a question mark in a triangle.

Why?

15 Aug 2013, 9:51 AM
#2
rodg avatar

rodg

Deceased

Join Date:
Jan 2007
Location:
Australia
Posts:
6,263
Plugin Contributions:
4

Re: ? marks instead of Registered Trademarks

muah:

It can't be the utf8 setting because it shows up fine everywhere else...

This is an invalid conclusion, as it is possible to change character sets on a page by page basis (not something anyone will recommend doing, but nonetheless, still possible)

muah:

again, only in certain areas like the window tab, etc. However, it sticks out like a sore thumb on the windows tab....customer sees the site name and a question mark in a triangle.

Why?

My money says it is still a character encoding issue, but that is about all I can say. This is a case where a link to your site so that we can see (and investigate) things for ourselves will be essential.

Also, in my experience, most problems of this nature are the result of an upgrade to ZenCart V1.5.x. Is/was this the case with you, or is this a new installation? Your answer to this will make a huge difference as to the best approach to solve the issue.

Any other clues or hints as to what led up to this situation would also be a great help... in fact, when you reply to this message with a link to your site, please scroll up and read the 'Posting tips' section for other information that we see as relevant to solving a problem.

Cheers
Rod

16 Aug 2013, 12:23 AM
#3
muah avatar

muah

Zen Follower

Join Date:
Dec 2008
Location:
USA, North East
Posts:
226
Plugin Contributions:
0

Re: ? marks instead of Registered Trademarks

I figured it out and for the sake of others, will explain what fixed it.

I opened the meta tags php file in notebook and saved it as a text file, not a php file, in the UTF-8 format. I then reopened the file and saved it as the PHP it was supposed to be. It works. Now, I've got the trademarks showing up properly in the IE, Firefox, Safari tabs..the way it did before.

It's the same file as the old site...not sure what happened but it's fixed now.

16 Aug 2013, 3:50 AM
#4
muah avatar

muah

Zen Follower

Join Date:
Dec 2008
Location:
USA, North East
Posts:
226
Plugin Contributions:
0

Re: ? marks instead of Registered Trademarks

Moderator, it may be best to delete my contribution...as it did fix the registered trademark problem but made my admin section go bye-bye. Saving the file in UTF8 then back to PHP works for about ten minutes... can get in admin...but can't get out and can't get back in! Sorry...it was working. By reverting back to the original php, it works again so I'm sure this is not a fix. I'll keep tinkering.

16 Aug 2013, 4:24 AM
#5
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: ? marks instead of Registered Trademarks

Link to the site / page where this occurs?
What editor are you using?
Try using notepad++ and save as utf-8 without BOM

16 Aug 2013, 5:07 AM
#6
muah avatar

muah

Zen Follower

Join Date:
Dec 2008
Location:
USA, North East
Posts:
226
Plugin Contributions:
0

Re: ? marks instead of Registered Trademarks

I would buy you a coffee if you lived near by! Thank You. Do you work for Zen Cart?

It works! I have three sites. All the old sites, no problem with R in browser tab. The two upgraded... no problem with R in browser tab. Only this one. Your suggestion has fixed the problem. Hopefully the 'without BOM' doesn't mess anything else up. I'm doing a cursory search on what 'without BOM' offers. It's coming up as more "portable." Eh.

16 Aug 2013, 5:36 AM
#7
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: ? marks instead of Registered Trademarks

Yes, language files should be saved as UTF8-without-BOM

17 Aug 2013, 2:02 AM
#8
muah avatar

muah

Zen Follower

Join Date:
Dec 2008
Location:
USA, North East
Posts:
226
Plugin Contributions:
0

Re: ? marks instead of Registered Trademarks

Thanks!

17 Aug 2013, 10:19 AM
#9
rodg avatar

rodg

Deceased

Join Date:
Jan 2007
Location:
Australia
Posts:
6,263
Plugin Contributions:
4

Re: ? marks instead of Registered Trademarks

muah:

I figured it out and for the sake of others, will explain what fixed it.

I opened the meta tags php file in notebook and saved it as a text file, not a php file, in the UTF-8 format. I then reopened the file and saved it as the PHP it was supposed to be. It works.

Just as a small point of clarification, a PHP file IS a text file. There is no difference between them other than the file name extension.

It is the UTF-8, etc, etc that determine the type of character encoding being used, and this is the actual cause of your problems
It has nothing to do with "saving it as a php file" (however in order to function correctly, these text files must have the .php filename extension).

Taking this to the extreme, there are actually only two types of files of any real significance.. namely, Text files and Binary files. Text files consist of, well, TEXT. It is something that you can read and generally make sense of. all other files are 'binary' (these include jpgs, gifs, etc), basically anything that you can't open/edit with a text editor.
php files are something you can read and edit with a text editor, therefore they are text files.

Hopefully this clarifies rather than confuses.

Cheers
Rod