-
AuthorPosts
-
labirent Friend
labirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 12:56 pm #173222After updating to J! 2.5 I have this issue on JA T3 Blank Template.
!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
is seen on top of the page. I couldn’t solve the issue 🙁 I am not sure it is because J! 2.5 or T3 Blank Template.This was a fresh install of 1.7.3 of JA T3 downloaded from JoomlArt (quickstart). After a few days I wanted to update J! 2.5 and this message on top of the page appeared.
http://www.cesmealtiwindsurf.com (offline at the moment but !DOCTYPE is still there)
Anyone can help?
Thanks in advance!
swissa Friendswissa
- Join date:
- November 2011
- Posts:
- 1955
- Downloads:
- 7
- Uploads:
- 277
- Thanks:
- 175
- Thanked:
- 717 times in 572 posts
January 26, 2012 at 1:12 pm #435547File is here
pluginssystemjat3jat3base-themesdefaultpagedefault.php
swissa Friendswissa
- Join date:
- November 2011
- Posts:
- 1955
- Downloads:
- 7
- Uploads:
- 277
- Thanks:
- 175
- Thanked:
- 717 times in 572 posts
January 26, 2012 at 1:17 pm #435548You are missing the < at the start of line 19 (I think it’s 19 – it is on mine)
Clear JAT3 cache etc
labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 1:18 pm #435550[PHP]// No direct access
defined(‘_JEXEC’) or die;
?>
<?php if ($this->isIE() && ($this->isRTL())) { ?>
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>
<?php } else { ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<?php } ?><html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”<?php echo $this->language; ?>” lang=”<?php echo $this->language; ?>”>
<head>[/PHP]
This is the code in that file…
It doesn’t look strange :Sswissa Friendswissa
- Join date:
- November 2011
- Posts:
- 1955
- Downloads:
- 7
- Uploads:
- 277
- Thanks:
- 175
- Thanked:
- 717 times in 572 posts
January 26, 2012 at 1:31 pm #435552<em>@labirent 296954 wrote:</em><blockquote>
This is the code in that file…
It doesn’t look strange :S</blockquote>No, it doesn’t does it. But if you look at the page source the < is missing.
The only other file I know with this code is component.php (which looks like it is something to do with the rtl template) in the same directory.
Sorry that I can’t be of more assistance. My upgrade to 2.5 of a blank JAT3 didn’t present me with problems.
labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 1:40 pm #435553<em>@swissa 296956 wrote:</em><blockquote>No, it doesn’t does it. But if you look at the page source the < is missing.
The only other file I know with this code is component.php (which looks like it is something to do with the rtl template) in the same directory.
Sorry that I can’t be of more assistance. My upgrade to 2.5 of a blank JAT3 didn’t present me with problems.</blockquote>
[PHP]// No direct access
defined(‘_JEXEC’) or die;
?><?php if ($this->isIE() && ($this->getParam(‘direction’)==’rtl’ || $this->direction == ‘rtl’)) { ?>
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”>
<?php } else { ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<?php } ?>[/PHP]
And this is the component.php file code…Thank you very much for your replies anyway…
Even in offline page that error appears, because of this I am not sure this is a problem related with T3 or Joomla core itself :S and this was just after update.
swissa Friendswissa
- Join date:
- November 2011
- Posts:
- 1955
- Downloads:
- 7
- Uploads:
- 277
- Thanks:
- 175
- Thanked:
- 717 times in 572 posts
January 26, 2012 at 2:20 pm #435557Had one extra idea and no idea if I am right or just bowing smoke as per normal…… 😉
Look at templateDetails.xml and see if is okay.
<blockquote><?xml version=”1.0″ encoding=”utf-8″?>
<!DOCTYPE install PUBLIC “-//Joomla! 1.6//DTD template 1.0//EN” “http://www.joomla.org/xml/dtd/1.6/template-install.dtd”>
<extension
version=”1.7″
type=”template”
method=”upgrade”>
<name>ja_t3_blank</name>
<version>1.0.8</version>
<creationDate>December 2011</creationDate>
<author>JoomlArt.com</author>
<authorEmail>webmaster@joomlart.com</authorEmail>
<authorUrl>http://www.joomlart.com</authorUrl>
<copyright>Copyright (C), J.O.O.M Solutions Co., Ltd. All Rights Reserved.</copyright>
<license>license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html</license>
<description>JA T3 Blank for Joomla 1.7.x</description>
<engine>t3</engine></blockquote>Not the same !DOCTYPE though.
labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 3:32 pm #435568<em>@swissa 296961 wrote:</em><blockquote>Had one extra idea and no idea if I am right or just bowing smoke as per normal…… 😉
Look at templateDetails.xml and see if is okay.
Not the same !DOCTYPE though.</blockquote>
Thank you again 😉 but seems OK too…
[PHP]<?xml version=”1.0″ encoding=”utf-8″?>
<!DOCTYPE install PUBLIC “-//Joomla! 1.6//DTD template 1.0//EN” “http://www.joomla.org/xml/dtd/1.6/template-install.dtd”>
<extension
version=”1.7″
type=”template”
method=”upgrade”>
<name>ja_t3_blank</name>
<version>1.0.8</version>
<creationDate>December 2011</creationDate>
<author>JoomlArt.com</author>
<authorEmail>webmaster@joomlart.com</authorEmail>
<authorUrl>http://www.joomlart.com</authorUrl>
<copyright>Copyright (C), J.O.O.M Solutions Co., Ltd. All Rights Reserved.</copyright>
<license>license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html</license>
<description>JA T3 Blank for Joomla 1.7.x</description>
<engine>t3</engine>[/PHP]labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 5:46 pm #435580The same problem with another update 🙁
JA T3 Framework
J! 1.7.3 -> 1.7.4 -> 2.5 update
user themeand this one is on another hosting, Godaddy.
I couldnt find where is the problem 🙁
Nobody with the same problem???
labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 6:05 pm #435582Problem Solved! 🙂
http://forum.joomla.org/viewtopic.php?p=2727769
Disabling ByeBye Generator plugin solved the issue!
Thank you for your effort swissa!
swissa Friendswissa
- Join date:
- November 2011
- Posts:
- 1955
- Downloads:
- 7
- Uploads:
- 277
- Thanks:
- 175
- Thanked:
- 717 times in 572 posts
labirent Friendlabirent
- Join date:
- December 2011
- Posts:
- 7
- Downloads:
- 0
- Uploads:
- 0
- Thanks:
- 2
- Thanked:
- 1 times in 1 posts
January 26, 2012 at 7:41 pm #435590<em>@swissa 297001 wrote:</em><blockquote>Well done and glad you not only solved it but posted a link here for others to see the solution.
Cheers</blockquote>
Sure! Isn’t it the philosophy of being a forum member? Not only asking for help, but also share the knowledge! 🙂
1 user says Thank You to labirent for this useful post
-
AuthorPosts
This topic contains 12 replies, has 2 voices, and was last updated by labirent 12 years, 9 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum