Page 1 of 1
Meta Tags not saved

Posted:
Mon Jan 18, 2010 12:51 pm
Author: Angelus
Hi all,
I wanted to add some Meta Tags in ACP-> General Admin -> Meta Tags+
But when I entered some information and say "Submit" system says ok. But after returing to the input page all fields are empty. Also If I chek the site the code for meta tags is empty. Can anyone help?
Regards
Thorsten
Re: Meta Tags not saved

Posted:
Mon Jan 18, 2010 1:21 pm
Author: Helter
Im guessing you have a file somewhere with incorrect file permissions. I dont know off hand which file it is so youll need to check all your chmods.
Re: Meta Tags not saved

Posted:
Mon Jan 18, 2010 1:24 pm
Author: Angelus
Hi,
I looked in the install instructions and changed all the files/dirs as described. But it still does not work. I also did not found any db field in the config table (regarding the meta tags). I thought they should be there.
Regards
Thorsten
Re: Meta Tags not saved

Posted:
Mon Jan 18, 2010 5:11 pm
Author: Helter
the db entries are stored in phpbb_config
meta_keywords
meta_description
meta_author
meta_identifier_url
meta_reply_to
meta_revisit_after
meta_category
meta_copyright
meta_generator
meta_robots
meta_distribution
meta_date_creation_day
meta_date_creation_month
meta_date_creation_year
meta_date_revision_day
meta_date_revision_month
meta_date_revision_year
meta_redirect_url_time
meta_redirect_url_adress
meta_refresh
meta_pragma
meta_language
They have been there since 140 so im sure you have them
I just checked 5 IM141 databases and 4 of them list these on the 4th page of the _config table and one lists them on the fifth page. (this one was a phpBB updated to 140 and later updated to 141)
Re: Meta Tags not saved

Posted:
Tue Jan 19, 2010 9:19 am
Author: Angelus
OK as I thought the problem is that neither of these fields is in the config table. Could you create a sql insert statement for this fields from your db?
I updated my integramod: phpbb 2.0.x to 140 and than to 141
Regards
Thorsten
Re: Meta Tags not saved

Posted:
Tue Jan 19, 2010 12:21 pm
Author: Helter
- Code: Select all
INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_keywords', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_description', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_author', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_identifier_url', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_reply_to', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_revisit_after', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_category', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_copyright', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_generator', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_robots', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_distribution', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_creation_day', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_creation_month', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_creation_year', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_revision_day', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_revision_month', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_date_revision_year', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_redirect_url_time', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_redirect_url_adress', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_refresh', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_pragma', '' );INSERT INTO phpbb_config ( config_name, config_value) VALUES ('meta_language', '' );
run this from phpmyadmin
if you pm me a copy of your phpbb_config ill see what else you may be missing.
remove private data before you send it