Zen Cart Logo
Forums / General Questions / labelling site with ICRA system

labelling site with ICRA system

Locked

Views: 2,113

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
27 Feb 2009, 12:24 PM
#1
butchx5 avatar

butchx5

New Zenner

Join Date:
Nov 2008
Posts:
69
Plugin Contributions:
0

labelling site with ICRA system

Hi

I have done the necessary to label my site with ICRA system and have received an email from them describing what I need to do:

*This e-mail contains the basic information you need to label your site using the ICRA system

First of all, please save the attached labels.rdf file in the same folder as your copy of your website's homepage.* DONE - I think its in the right place!

*Then you need to arrange for the "tag" shown below to be included in the <head> section of each page on your website. *I have the tag referred to but am not sure which file I should add it to - I tried adding to includes/templates/darkness/common/html_header.php but it didn't seem to matter where I put the code in the file my site would upload as a white/blank site.

This is the code I am using:

<?php /** * bof ICAS certification */ <link rel="meta" href="http://slinkykinkyuk.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" /> <meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for "http://www.slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))' /> <?php //endof ICAS certification ?>

Can anyone suggest what I am doing wrong?

Thanks

Helen

27 Feb 2009, 12:30 PM
#2
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: labelling site with ICRA system

The tag goes in includes/templates/your template/html_header.php

~Melanie

27 Feb 2009, 3:47 PM
#3
butchx5 avatar

butchx5

New Zenner

Join Date:
Nov 2008
Posts:
69
Plugin Contributions:
0

Re: labelling site with ICRA system

Hi
Thanks for your reply:

mprough:

The tag goes in includes/templates/your template/html_header.php

~Melanie

However I do not have an html_header.php in the file you suggest: includes/templates/your template/

I do have one in: includes/templates/your template/common
but when I put the code in that file it doesn't work??

Should I copy the html_header.php file in the common folder to includes/templates/your template/ folder?

Or is there a specific place in the includes/templates/your template/html_header.php file where I should be placing my code - or is there a problem with the code itself?

Regards
Helen

27 Feb 2009, 3:54 PM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: labelling site with ICRA system

It should be /includes/templates/your_templat_name/common/html_header.php

If not present get a copy from /includes/templates/template_default/common/html_header.php

https://www.zen-cart.com/tutorials/index.php?article=36
https://www.zen-cart.com/tutorials/index.php?article=143
https://www.zen-cart.com/tutorials/index.php?article=230

27 Feb 2009, 5:11 PM
#5
butchx5 avatar

butchx5

New Zenner

Join Date:
Nov 2008
Posts:
69
Plugin Contributions:
0

Re: labelling site with ICRA system

Hi kobra

Thanks for confirming which file the tag should be added to.

I have tried adding the tag in various places of this file and nothing works - my site just loads as a blank.

I deduce it must be my code:

<?php /** * bof ICAS certification */ <link rel="meta" href="http://slinkykinkyuk.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" /> <meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for "http://www.slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))' /> <?php //endof ICAS certification ?>

or

I have to place the tag code in a specific place within the file - I have tried various places - all after the <head> line and hopefully not in the middle of some other code.

Any ideas?

Thanks
Helen

27 Feb 2009, 5:20 PM
#6
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,289
Plugin Contributions:
39

Re: labelling site with ICRA system

<link rel="meta" href="http://slinkykinkyuk.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for "http://www.slinkykinkyuk.com" r (n 2 s 3 v 0 l 3 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))' />

Use just this

~Melanie