Apollo Software Normal layoutMedium LayoutLarge Layout    Normal TextLarge Text
Startpagina | DotNetNuke | Over ... | Downloads | Forum | Blog
United States Netherlands
Registreren | Inloggen

Forum Tags

 
boolean   error   file   help   just   language   menu   mlhtml   module   modules   need   object   page   pagelocalization   problem   site   skin   string   version   work  

  

Need live support?

Please feel free to add my support e-mail address to your MSN contacts. If you catch me online, I'll be able to solve your problems faster than through this forum. Please appreciate that I only give free support on our own modules!

My msn account: support@apollo-software.nl. Alternatively, you can click the botton below, it will open up a Live Messenger window (Windows Live ID required)

  

RE: Apollo Software - DotNetNuke Modules, Websites and Hosting Forums: Descriptionproblem -> Apol
Last Post 2009-09-23 11:31:26 by Morrisch. 6 Replies.
AddThis - Bookmarking and Sharing Button Printer Friendly
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Author Messages
erikvb
Advanced Member
Advanced Member
Posts:713
Avatar

--
2009-09-23 09:46:38  
Please make sure you’ve added the skinobject MLPAGETITLE to the skin, since it is that skinobject that injects the correct page title, keywords and description in the page



Erik van Ballegoij,
a view from my attic, my personal blog

The personal blog of Erik van Ballegoij

Morrisch
New Member
New Member
Posts:8
Avatar

--
2009-09-23 09:53:32  

Hi Eric,

i think that can not be the problem, because the Pagetitles are translated...

or am i wrong?

but i will try it...

Morrisch
New Member
New Member
Posts:8
Avatar

--
2009-09-23 10:18:16  

Hi Eric,

now i'm sure that i've added the skinobject MLPAGETITLE to the skin, but it still doesn't  work...

erikvb
Advanced Member
Advanced Member
Posts:713
Avatar

--
2009-09-23 10:37:00  
what dnn version?
Can you send me the skin so i can test it?
Erik van Ballegoij,
a view from my attic, my personal blog

The personal blog of Erik van Ballegoij

Morrisch
New Member
New Member
Posts:8
Avatar

--
2009-09-23 10:49:12  

DNN version: 04.09.03

Info: the pagetitle, isn't translated.... i was wrong!

portal.ascx:

<%@ Control Language="vb" Codebehind="" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.UI.Skins.Skin" %>
<%@ Register TagPrefix="dnn" TagName="USER" Src="~/Admin/Skins/User.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LOGIN" Src="~/Admin/Skins/Login.ascx" %>
<%@ Register TagPrefix="dnn" TagName="BREADCRUMB" Src="~/Admin/Skins/BreadCrumb.ascx" %>
<%@ Register TagPrefix="dnn" TagName="DNN360Menu" Src="~/desktopmodules/CISS.SideMenu/SideMenu.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LINKS" Src="~/Admin/Skins/Links.ascx" %>
<%@ Register TagPrefix="dnn" TagName="PRIVACY" Src="~/Admin/Skins/Privacy.ascx" %>
<%@ Register TagPrefix="apollo" TagName="LANGUAGE" Src="~/desktopmodules/MLLanguageSelector/MLLanguageSelector.ascx" %>
<%@ Register TagPrefix="apollo" TagName="MLPAGETITLE" Src="~/desktopmodules/PageLocalization/MLPageTitle.ascx" %>

<-script runat="server">
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim skinDocType As Control = Me.Page.FindControl("skinDocType")
        If Not skinDocType Is Nothing Then
            If Request.Browser.Type.Contains("IE") Then
                CType(skinDocType, System.Web.UI.WebControls.Literal).Text = "<-!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.01 Transitional//EN"" ""http://www.w3.org/TR/html4/loose.dtd"">"
            Else
                CType(skinDocType, System.Web.UI.WebControls.Literal).Text = "<-!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.01 Transitional//EN"">"
            End If
        End If
    End Sub
<-/script>

<-div id="centeredpage">
    <-div id="bodyarea">
  
        <-div id="headlinearea">
            <-table id="headlinearea1">
               
                <-tr>
                    <-td width="800" id="headlineareaAdresse">
                        <-div>
                           
                        <-/div>
                    <-/td>
                    <-td>
                        <-div runat="server" id="LoginPane" class="LoginPane">
                        <-div class="speech">
                        <-apollo:LANGUAGE runat="server" ID="apolloLANGUAGE" menuflagPosition="none" tableLess="true" />
                         <-dnn:LOGIN runat="server" ID="dnnLOGIN" Text=" " CssClass="dnnLOGIN" />&nbsp;&nbsp;&nbsp;&nbsp;
                         <-/div>
                        <-/div>
                    <-/td>
                <-/tr>
            <-/table>
            <-div id="menu">
                <-dnn:DNN360Menu runat="server" ID="dnn360Menu2" ConfigFile="defaultAribas2008.xml" />
            <-/div>
        <-/div>
        <-table id="mainfill">
            <-tr valign="top">
                <-td runat="server" id="TopPane" class="TopPane" colspan="3">
                <-/td>
            <-/tr>
            <-tr valign="top">
                <-td runat="server" id="LeftPane" class="LeftPane">
                <-/td>
                <-td style="padding: 0px;">
                    <-table id="contentarea">
                        <-tr valign="top">
                            <-td runat="server" id="ContentPane" class="ContentPane" colspan="2">
                            <-/td>
                        <-/tr>
                        <-tr valign="top">
                            <-td runat="server" id="ContentLeftPane" class="ContentLeftPane">
                            <-/td>
                            <-td runat="server" id="ContentRightPane" class="ContentRightPane">
                            <-/td>
                        <-/tr>
                    <-/table>
                <-/td>
                <-td runat="server" id="RightPane" class="RightPane">
                <-/td>
            <-/tr>
            <-tr valign="top">
                <-td runat="server" id="BottomPane" class="BottomPane" colspan="3">
                <-/td>
            <-/tr>
        <-/table>
        <-div id="footerarea">
            &nbsp;<-/div>
    <-/div>
<-/div>
<-swt:GoogleAnalytics runat="server" />

 

erikvb
Advanced Member
Advanced Member
Posts:713
Avatar

--
2009-09-23 11:25:30  

you only registered the skinobject on the page, but you didnt put it anywhere. It should look something like this:

< apollo:MLPageTitle runat="server" id="ApolloMLPagetitle" / >

Erik van Ballegoij,
a view from my attic, my personal blog

The personal blog of Erik van Ballegoij

Morrisch
New Member
New Member
Posts:8
Avatar

--
2009-09-23 11:31:26  

I'm such an idiot!!!!!!

thank you so much!!!

 

:-)

You are not authorized to post a reply.

Active Forums 4.1
NOT LICENSED FOR PRODUCTION USE
www.activemodules.com
  

Copyright 2002-2007 Apollo Software
Gebruiksovereenkomst  |  Privacybeleid
Page generated in 1,2974228 seconds.