Search the web
Sign In
New User? Sign Up
sitecore
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3256 - 3285 of 3315   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#3285 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 10:57 pm
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
Does it open the same item in all content editors, or different items
(maybe this is a result of default children in your master?).

You may want to use item:added instead of item:created
(http://sdn5.sitecore.net/FAQ/API/added%20or%20created%20event.aspx)
or you may have to fall back to item:saved.

Sitecore.DateUtil.IsoNow seems to provide a convenience for getting
the system date in the required format.

I just tested with a master which had a child, both based on the same
template which had a field named ItemCreationDate. I used the
following configuration and code. I did not experience any issues
using 5.3.2 071220 - the field was populated for both items and no new
content editor windows opened.

<event name="item:created">
   <handler type="Global.Events.ItemEventHandler, Global"
method="OnItemCreated">
     <FieldName>ItemCreationDate</FieldName>
   </handler>
</event>

using System;

namespace Global.Events
{
     public class ItemEventHandler
     {
         private string _fieldName = null;

         public string FieldName
         {
             get { return (_fieldName); }
             set { _fieldName = value; }
         }

         public void OnItemCreated( object Sender, EventArgs args )
         {
             Sitecore.Diagnostics.Assert.IsNotNull(_fieldName, "Field
name not provided" );
             Sitecore.Data.Events.ItemCreatedEventArgs cArgs =
Sitecore.Events.Event.ExtractParameter(args, 0) as
Sitecore.Data.Events.ItemCreatedEventArgs;

             if (cArgs != null && cArgs.Item != null &&
cArgs.Item.Fields[FieldName] != null &&
String.IsNullOrEmpty(cArgs.Item.Fields[FieldName].Value))
             {
                 cArgs.Item.Editing.BeginEdit();
                 cArgs.Item.Fields[FieldName].Value =
Sitecore.DateUtil.IsoNow;
                 cArgs.Item.Editing.EndEdit();
             }
         }
     }
}

#3284 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 9:15 pm
Subject: Re: Best Practice for optimizing sitecore load time
johnpwest3
Offline Offline
Send Email Send Email
 
Hello,

This forum has basically been abandoned in preference of the SDN
forums (http://sdn5.sitecore.net/Forum.aspx); please use those instead.

Sitecore performance information begins here:

http://sdn5.sitecore.net/Articles/Administration/Sitecore%20Performance.aspx

Regards,

    -John

--- In sitecore@yahoogroups.com, "raseniero" <raseniero@...> wrote:
>
> Hi All,
>
> Are there any documents on how to optimize sitecore speed or load time?
> I know its a combination of IIS settings and sitecore.
>
> Please point me to a doc.
>
> R.
>

#3283 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 9:14 pm
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
That is very weird - I have never seen that before. It could be
something else you're working on, or you might try item:saved instead.

#3282 From: "raseniero" <raseniero@...>
Date: Wed Jan 16, 2008 6:39 pm
Subject: Best Practice for optimizing sitecore load time
raseniero
Offline Offline
Send Email Send Email
 
Hi All,

Are there any documents on how to optimize sitecore speed or load time?
I know its a combination of IIS settings and sitecore.

Please point me to a doc.

R.

#3281 From: "dice55m" <dice55m@...>
Date: Wed Jan 16, 2008 7:09 pm
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
dice55m
Offline Offline
Send Email Send Email
 
--- In sitecore@yahoogroups.com, "John West" <johnpwest3@...> wrote:
>
> OK, now I'm even annoying myself. I think you could use item:created
> instead of item:saved, which should not raise item:created, which
> should mean you don't need the hashtable.
>
Appreciate the quick response John.  I created the item:created event
handler and it works almost perfectly.  When I create an item, it
successfully creates the item with the datetime.now, however it also
opens up 4 Content Editors in Sitecore's Desktop.

Weird, huh.

#3280 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 4:04 pm
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
OK, now I'm even annoying myself. I think you could use item:created
instead of item:saved, which should not raise item:created, which
should mean you don't need the hashtable.

#3279 From: John West <johnpwest3@...>
Date: Wed Jan 16, 2008 2:05 pm
Subject: Re: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
One more thing I forgot. Sitecore automatically stores the version's creation
date in a field named __created (Sitecore.FieldIDs.Created). This may or may not
already be what you need. I think if you need the item creation date rather than
the language version, or if the user needs to specify the creation date instead
of using the actual creation date, then you need a new field.

----- Original Message ----
From: John West <johnpwest3@...>
To: sitecore@yahoogroups.com
Sent: Tuesday, January 15, 2008 5:44:24 PM
Subject: [sitecore] Re: Sitecore 5.3 - Default Field value to Today's Date


Hello,

This forum has basically been abandoned in favor of the SDN forums:

http://sdn5.sitecore.net/Forum.aspx

This specific question is probably best addressed on the Developer
Talk > General Discussion forum:

http://sdn5.sitecore.net/forum//ShowForum.aspx?ForumID=10

I believe you could do this with nvelocity:

http://sdn5.sitecore.net/Articles/API/Using%20NVelocity.aspx

But I haven't tried and people seem to have had issues with this
  approach:

http://sdn5.sitecore.net/forum//ShowPost.aspx?PostID=6849

I would probably add an event handler for the item:saved event,
especially since you will probably end up with other save logic. You
could also do this with a pipeline:

http://sdn5.sitecore.net/forum//ShowPost.aspx?PostID=6227

Assuming an event handler, the logic would be something like:

If the item being saved is based on one of your templates
and the save is happening in the master database
and the value of that field is empty
then default the value to today's date

Information on events is here:

http://sdn5.sitecore.net/Articles/API/Using%20Events.aspx

Just to make it more complicated, updating data from within a save
handler can raise save events, which could cause infinite recursion.
This is generally resolved by adding a static hashtable to the handler
class:

private static Hashtable _htItemsInProcess;

public MyHandler()
{
   _htItemsInProcess = new Hashtable();
}

The actual code to set the value would probably look something like
  this:

Sitecore.Data.Items.Item itm =
Sitecore.Events.Event.ExtractParameter(args, 0);

if ( ! _htItemsInProcess.ContainsKey( itm.ID ))
{
   htItemsInProcess[itm.ID] = itm;

   if ( itm.Database.Name.ToLower() == "master" &&
itm.Fields["myfield"] != null )
   {
     itm.Editing.BeginEdit();
     itm.Fields["myfield"].Value =
Sitecore.DateUtil.ToIsoDate(DateTime.Now);
     itm.Editing.EndEdit();
   }

   htItemsInProcess.Remove( itm.ID );
}




Yahoo! Groups Links








      
________________________________________________________________________________\
____
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile.  Try it now. 
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

#3278 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 1:51 am
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
Oops.

if ( itm.Database.Name.ToLower() == "master" &&
itm.Fields["myfield"] != null )

That should include checking that the field doesn't already have a value:

if ( itm.Database.Name.ToLower() == "master" &&
itm.Fields["myfield"] != null && itm.Fields["myfield"].Value != "" )

#3277 From: "John West" <johnpwest3@...>
Date: Wed Jan 16, 2008 1:44 am
Subject: Re: Sitecore 5.3 - Default Field value to Today's Date
johnpwest3
Offline Offline
Send Email Send Email
 
Hello,

This forum has basically been abandoned in favor of the SDN forums:

http://sdn5.sitecore.net/Forum.aspx

This specific question is probably best addressed on the Developer
Talk > General Discussion forum:

http://sdn5.sitecore.net/forum//ShowForum.aspx?ForumID=10

I believe you could do this with nvelocity:

http://sdn5.sitecore.net/Articles/API/Using%20NVelocity.aspx

But I haven't tried and people seem to have had issues with this approach:

http://sdn5.sitecore.net/forum//ShowPost.aspx?PostID=6849

I would probably add an event handler for the item:saved event,
especially since you will probably end up with other save logic. You
could also do this with a pipeline:

http://sdn5.sitecore.net/forum//ShowPost.aspx?PostID=6227

Assuming an event handler, the logic would be something like:

If the item being saved is based on one of your templates
and the save is happening in the master database
and the value of that field is empty
then default the value to today's date

Information on events is here:

http://sdn5.sitecore.net/Articles/API/Using%20Events.aspx

Just to make it more complicated, updating data from within a save
handler can raise save events, which could cause infinite recursion.
This is generally resolved by adding a static hashtable to the handler
class:

private static Hashtable _htItemsInProcess;

public MyHandler()
{
   _htItemsInProcess = new Hashtable();
}

The actual code to set the value would probably look something like this:

Sitecore.Data.Items.Item itm =
Sitecore.Events.Event.ExtractParameter(args, 0);

if ( ! _htItemsInProcess.ContainsKey( itm.ID ))
{
   htItemsInProcess[itm.ID] = itm;

   if ( itm.Database.Name.ToLower() == "master" &&
itm.Fields["myfield"] != null )
   {
     itm.Editing.BeginEdit();
     itm.Fields["myfield"].Value =
Sitecore.DateUtil.ToIsoDate(DateTime.Now);
     itm.Editing.EndEdit();
   }

   htItemsInProcess.Remove( itm.ID );
}

#3276 From: "dice55m" <dice55m@...>
Date: Tue Jan 15, 2008 9:03 pm
Subject: Sitecore 5.3 - Default Field value to Today's Date
dice55m
Offline Offline
Send Email Send Email
 
Hey All,

I am new to Sitecore and I am curious on how to set the default value
of a field to Today's Date.

Thanks in advance,
Wayne

#3275 From: speake sofly77 <speakesofly77@...>
Date: Tue Jul 17, 2007 5:30 pm
Subject: new software actually makes you coffee
speakesofly77
Offline Offline
Send Email Send Email
 
hi my friends ...
I've just reviewed a piece of content management
software that does so many different things for
you as a website owner that I jokingly asked
its creators (Simon and Jeremy) if it could also
make you a cup of coffee..

.well the joke's on me because "CMS Infusion"
CAN make you a cup of coffee;

http://www.cesw.org

One sugar or two?

Michael


Shape Yahoo! in your own image. Join our Network Research Panel today!

#3274 From: "Derek Roberti" <dr@...>
Date: Wed Jul 4, 2007 12:14 am
Subject: RE: Re: SC53 installed with SQL Server on differnt PC
derekroberti
Offline Offline
Send Email Send Email
 

Danjal,

 

The Sitecore forums have moved to sdn.sitecore.net. For future postings, please refer to our new forum.

 

Have you reviewed the documentation here: http://sdn5.sitecore.net/Products/Sitecore%20V5/Installation/EXE%20Installation.aspx

 

This should address the issue of installing on a remote server.

2.1.  Introduction

Sitecore 5.3 installation program consists of two separate.exe installation files:

§  setup_Sitecore53XbuildXXXX.exe

§  setup_Sitecore53XbuildXXXX_DB.exe

If you wish to setup both the Sitecore SQL databases and the Sitecore Client on the same machine, you will only need the setup_Sitecore53XbuildXXXX.exe file.

If the databases are to be hosted on a separate database server, you should run setup_Sitecore53XbuildXXXX_DB.exe on that server first, and then perform the installation of the Sitecore Client on the client machine. In the latter case you should edit the connection string so that it points the client installation to the actual location of the databases.

The User Manual below describes the correct way of Sitecore 5.3 installation.

Derek

 

From: sitecore@yahoogroups.com [mailto:sitecore@yahoogroups.com] On Behalf Of Danjal Joensen
Sent: Tuesday, July 03, 2007 2:14 PM
To: sitecore@yahoogroups.com
Subject: Re: [sitecore] Re: SC53 installed with SQL Server on differnt PC

 

Hey - so is there a solution to this problem or is it just going to be a reported bug.
 

Regards
Danjal Joensen

 

On 9/19/06, Derek Roberti <dr@...> wrote:

I communicated with the developer and he confirmed this issue. It has been registered as issue number N 33073 and will be fixed in the next build. Thanks for identifying this and sorry for the inconvenience!

 

Derek

 


From: sitecore@yahoogroups.com [mailto:sitecore@yahoogroup s.com] On Behalf Of clykopp
Sent: Monday, September 18, 2006 3:31 PM
To: sitecore@yahoogroups.com
Subject: [sitecore] Re: SC53 installed with SQL Server on differnt PC

 

Hello Derek,

Thank you for responding.

The error I described below is occuring during the installation of
SC53 so I would not have a web.config file to work with as of yet.

Regarding giving the remote Sql Server machine access to the local
asp.net account, I am not sure I understand why this is necessary
and if I would want to do that. If the sql login I provide during
the installation has the permissions of a database administrator, it
should have the rights to attach or restore a database. Plus, the
local machine where SC53 is being installed has no special
permissions assigned to the physical directory of the SQL Server
database in regard to the aspnet account.

Does the local aspnet account perform something unusual on the
physical directory of the sql server database?

Also, I am installing SC on a pc with Win2003 and a remote server of
using Sql Server 2000. Any compatibility issues here?

As always, thank you for your assistance.
cak

--- In sitecore@yahoogroups.com, "Derek Roberti" <dr@...> wrote:
>
> Is your web.config set up as follows?
>
>
>
> ... .
>
> <sitecore database="SqlServer">
>
> ...
>
> <connections serverMode="File">
>
> <sc.include
> file="/App_Config/$(database)/$(serverMode)Connections.config" />
>
> </connections>
>
>
>
> If so, I'm guessing that you need to give your local asp.net
account
> permissions on your remote machine. Sitecore needs to log in to
that
> machine to create a connection to the mdf file.
>
>
>
> If you have the nodes set as follows and it still isn't working,
let me
> know:
>
>
>
> <sitecore database="SqlServer">
>
> ...
>
> <connections serverMode="Server">
>
> <sc.include
> file="/App_Config/$(database)/$(serverMode)Connections.config" />
>
> </connections>
>
>
>
> Derek
>
> ________________________________
>
> From: sitecore@yahoogroups.com [mailto:sitecore@yahoogroups.com] On
> Behalf Of clykopp
> Sent: Monday, September 18, 2006 8:27 AM
> To: sitecore@yahoogroups.com
> Subject: [sitecore] SC53 installed with SQL Server on differnt PC
>
>
>
> Has anyone tried installing Sitecore 5.3 RC with the SQL Database
> Server installed on a different PC?
>
> When trying to do this, I consistently get the error
message "Error
> 27552. Error creating database Master. Server: Microsoft Sql
Server
> {name of server}. Cannot create file "C:\program files\microsoft
sql
> server\mssql\data\Master.mdf" becasue it already exists. (5170)"
>
> I got this same error message with the beta releases.
>
> The login ID has been given "System Administrator" rights so
> permissions should not be the issue.
>
> Any thoughts?
> cak
>

 


#3273 From: "Danjal Joensen" <danjalj@...>
Date: Tue Jul 3, 2007 9:13 pm
Subject: Re: Re: SC53 installed with SQL Server on differnt PC
danjalj
Offline Offline
Send Email Send Email
 
Hey - so is there a solution to this problem or is it just going to be a reported bug.
 
Regards
Danjal Joensen

 
On 9/19/06, Derek Roberti <dr@...> wrote:

I communicated with the developer and he confirmed this issue. It has been registered as issue number N 33073 and will be fixed in the next build. Thanks for identifying this and sorry for the inconvenience!

 

Derek

 


From: sitecore@yahoogroups.com [mailto:sitecore@yahoogroup s.com] On Behalf Of clykopp
Sent: Monday, September 18, 2006 3:31 PM
To: sitecore@yahoogroups.com
Subject: [sitecore] Re: SC53 installed with SQL Server on differnt PC

 

Hello Derek,

Thank you for responding.

The error I described below is occuring during the installation of
SC53 so I would not have a web.config file to work with as of yet.

Regarding giving the remote Sql Server machine access to the local
asp.net account, I am not sure I understand why this is necessary
and if I would want to do that. If the sql login I provide during
the installation has the permissions of a database administrator, it
should have the rights to attach or restore a database. Plus, the
local machine where SC53 is being installed has no special
permissions assigned to the physical directory of the SQL Server
database in regard to the aspnet account.

Does the local aspnet account perform something unusual on the
physical directory of the sql server database?

Also, I am installing SC on a pc with Win2003 and a remote server of
using Sql Server 2000. Any compatibility issues here?

As always, thank you for your assistance.
cak

--- In sitecore@yahoogroups.com, "Derek Roberti" <dr@...> wrote:
>
> Is your web.config set up as follows?
>
>
>
> ... .
>
> <sitecore database="SqlServer">
>
> ...
>
> <connections serverMode="File">
>
> <sc.include
> file="/App_Config/$(database)/$(serverMode)Connections.config" />
>
> </connections>
>
>
>
> If so, I'm guessing that you need to give your local asp.net
account
> permissions on your remote machine. Sitecore needs to log in to
that
> machine to create a connection to the mdf file.
>
>
>
> If you have the nodes set as follows and it still isn't working,
let me
> know:
>
>
>
> <sitecore database="SqlServer">
>
> ...
>
> <connections serverMode="Server">
>
> <sc.include
> file="/App_Config/$(database)/$(serverMode)Connections.config" />
>
> </connections>
>
>
>
> Derek
>
> ________________________________
>
> From: sitecore@yahoogroups.com [mailto:sitecore@yahoogroups.com] On
> Behalf Of clykopp
> Sent: Monday, September 18, 2006 8:27 AM
> To: sitecore@yahoogroups.com
> Subject: [sitecore] SC53 installed with SQL Server on differnt PC
>
>
>
> Has anyone tried installing Sitecore 5.3 RC with the SQL Database
> Server installed on a different PC?
>
> When trying to do this, I consistently get the error
message "Error
> 27552. Error creating database Master. Server: Microsoft Sql
Server
> {name of server}. Cannot create file "C:\program files\microsoft
sql
> server\mssql\data\Master.mdf" becasue it already exists. (5170)"
>
> I got this same error message with the beta releases.
>
> The login ID has been given "System Administrator" rights so
> permissions should not be the issue.
>
> Any thoughts?
> cak
>



#3272 From: "Danjal Joensen" <danjalj@...>
Date: Mon Jun 18, 2007 8:12 am
Subject: Re: Re: Lucene Search Module vs dtSearch Module
danjalj
Offline Offline
Send Email Send Email
 
Did you ever get some documentation for the Lucene search.. I cant find anything.

Regards
Johan

On 11/16/06, John West < johnpwest3@...> wrote:

Please post this issue under the "General Discussion" forum at
http://sdn5.sitecore.net/Forum.aspx.

--- In sitecore@yahoogroups.com, "zoom832" <zoomesh@...> wrote:
>
>
> Hi
>
> Am quite new to sitecore and currently trying to install a search
> feature to my site. I believe dtSearch is a seperate product and will
> need a license if I have to use it.
>
> I also see Lucene search module here
>
http://sdn5.sitecore.net/Resources/Shared%20Source/Components%20Package/\
> Documentation/Search.aspx
>
<http://sdn5.sitecore.net/Resources/Shared%20Source/Components%20Package\
> /Documentation/Search.aspx> which seems to be a free module. Am I
> right? How does it provide the search results, does it have an engine?
> Can I simply download the module, install it and start using it? Where
> can I find documentation for it?
>
> Thanks in advance
>
> /S



#3271 From: "poppy_martono" <poppy_martono@...>
Date: Wed May 9, 2007 7:30 am
Subject: Re: Hashtable insert failed. Load factor too high.
poppy_martono
Offline Offline
Send Email Send Email
 
look at this article:
http://blogs.msdn.com/toddca/archive/2007/01/26/hashtable-insert-failed-load-fac\
tor-too-high.aspx

hopefully will help

Chrs
--- In sitecore@yahoogroups.com, "krp_2020" <krp_2020@...> wrote:
>
> Hi
>
> We've just been hit by the following .NET error using Sitecore 5.1.1
>
> "Hashtable insert failed. Load factor too high."
>
> Thread information:
>     Thread ID: 17
>     Thread account name: NT AUTHORITY\NETWORK SERVICE
>     Is impersonating: False
>     Stack trace:    at System.Collections.Hashtable.Insert(Object
> key, Object nvalue, Boolean add)
>    at System.Collections.Hashtable.set_Item(Object key, Object value)
>    at Sitecore.Data.Templates.Template.GetField(String fieldName)
>    at Sitecore.Data.DataManager.GetTemplateField(String fieldName,
> Item item)
>    at Sitecore.Data.DataManager.GetFieldID(String fieldName, Item
> item)
>    at Sitecore.Collections.FieldCollection.GetFieldID(String
> fieldName)
>    at Sitecore.Collections.FieldCollection.get_Item(String fieldName)
>
>
> Please advice.
>

#3270 From: "krp_2020" <krp_2020@...>
Date: Tue May 1, 2007 3:27 pm
Subject: Hashtable insert failed. Load factor too high.
krp_2020
Offline Offline
Send Email Send Email
 
Hi

We've just been hit by the following .NET error using Sitecore 5.1.1

"Hashtable insert failed. Load factor too high."

Thread information:
     Thread ID: 17
     Thread account name: NT AUTHORITY\NETWORK SERVICE
     Is impersonating: False
     Stack trace:    at System.Collections.Hashtable.Insert(Object
key, Object nvalue, Boolean add)
    at System.Collections.Hashtable.set_Item(Object key, Object value)
    at Sitecore.Data.Templates.Template.GetField(String fieldName)
    at Sitecore.Data.DataManager.GetTemplateField(String fieldName,
Item item)
    at Sitecore.Data.DataManager.GetFieldID(String fieldName, Item
item)
    at Sitecore.Collections.FieldCollection.GetFieldID(String
fieldName)
    at Sitecore.Collections.FieldCollection.get_Item(String fieldName)


Please advice.

#3269 From: "krp_2020" <krp_2020@...>
Date: Thu May 3, 2007 3:54 pm
Subject: Hashtable insert failed. Load factor too high
krp_2020
Offline Offline
Send Email Send Email
 
Hi

We've just been hit by the following .NET error using Sitecore 5.2

"Hashtable insert failed. Load factor too high."

Having looked at the Microsoft knowledge base this seems a really rare
error. Has anyone else seen this and is it down to the Sitecore -v-
.Net interface?

It is happening on a production server and it is therefore pretty
critical for us to sort it out.

Thanks

#3268 From: "natedoingtheweb" <nstriedinger@...>
Date: Fri Apr 27, 2007 6:49 pm
Subject: XSL forms that post back - How can I retreive my post vars BACK from XSL
natedoingtheweb
Online Now Online Now
Send Email Send Email
 
I have this for example. I would like to keep everything in XSL
instead of .NET for now. Is this possible?

<xsl:template match="*" mode="main">

<xsl:call-template name='render-form'/>
  <xsl:choose>
       <xsl:when test="$get-city = 'yes'">
         <xsl:call-template name='by-city'/>
       </xsl:when>
       <xsl:otherwise>
         <xsl:call-template name='by-discipline'/>
       </xsl:otherwise>
   </xsl:choose>
</xsl:template>


<xsl:template name='render-form'>
<form method="post" action="{$jobDetails/base-uri}">
   <input type='hidden' name='get-city' value='yes'/>
        <select id='city' name='city'>
           <xsl:for-each select="$jobDetails">
           <xsl:sort select="sc:fld('Location',.)" order="ascending"/>
             <option>
              <xsl:value-of select="sc:fld('Location',.)" />
             </option>
           </xsl:for-each>
        </select>
        <input type="submit" value="go" class="button" name="change"
tabindex="3"/>
</form>
</xsl:template>


<xsl:template name='by-discipline'>
     <xsl:for-each
select="$jobDetails[sc:fld('Discipline',.)='Architecture']">
       <xsl:sort select="sc:fld('Discipline',.)" order="ascending"/>
         <sc:dot /><xsl:value-of select="sc:fld('Discipline',.)" /> -
<sc:link><xsl:value-of select="sc:fld('Title',.)" /></sc:link><br />
     </xsl:for-each>
</xsl:template>

<xsl:template name='by-city'>
     <xsl:for-each select="$jobDetails[sc:fld('Location',.)='Atlanta']">
       <xsl:sort select="sc:fld('Location',.)" order="ascending"/>
         <sc:dot /><xsl:value-of select="sc:fld('Location',.)" /> -
<sc:link><xsl:value-of select="sc:fld('Title',.)" /></sc:link><br />
     </xsl:for-each>
</xsl:template>
</xsl:stylesheet>

#3267 From: John West <johnpwest3@...>
Date: Wed Apr 11, 2007 4:17 pm
Subject: Re: UI Bug in SC 5.3.1
johnpwest3
Offline Offline
Send Email Send Email
 
Hi Ramon,

First I would suggest discussing issues on the SDN forums (http://sdn5.sitecore.net/Forum.aspx) as this Yahoo forum is basically only around to keep the archives.

Second, this appears to be a support issue rather than something that can be resolved by the community; such issues should follow the process outlined at http://sdn5.sitecore.net/Support/Filing%20Support%20Issues.aspx.

Third, this is a known issue which should be addressed in a near release; the workaround is to choose View > Editor and select base templates the old-fashioned way.

Best regards,

   -John

----- Original Message ----
From: Ramon Aseniero <ramon.aseniero@...>
To: sitecore@yahoogroups.com
Sent: Wednesday, April 4, 2007 10:21:19 AM
Subject: [sitecore] UI Bug in SC 5.3.1

Hi Guys,

I'm using SC 5.3.1 on IE7  in windows xp, and when setting a base template (i.e. i'm on the Set Base Templates window) the selected template list box is not displaying any values, see screen shot below.



Thanks,
Ramon

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.26/746 - Release Date: 4/4/2007 1:09 PM



#3266 From: "Ramon Aseniero" <ramon.aseniero@...>
Date: Wed Apr 4, 2007 5:21 pm
Subject: UI Bug in SC 5.3.1
raseniero
Offline Offline
Send Email Send Email
 

Hi Guys,

I'm using SC 5.3.1 on IE7  in windows xp, and when setting a base template (i.e. i'm on the Set Base Templates window) the selected template list box is not displaying any values, see screen shot below.



Thanks,
Ramon

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.26/746 - Release Date: 4/4/2007 1:09 PM


#3265 From: John West <johnpwest3@...>
Date: Thu Mar 8, 2007 3:41 pm
Subject: Re: where do I set the Session Timeout
johnpwest3
Offline Offline
Send Email Send Email
 
I am relatively confident Sitecore uses this sessionState setting. What have you
tried?

----- Original Message ----
From: srinivask15 <srinivask15@...>
To: sitecore@yahoogroups.com
Sent: Saturday, March 3, 2007 11:32:14 PM
Subject: [sitecore] where do I set the Session Timeout


HI,

I am using Webutil.SessionValue() for keeping session values.

actually in web.config like this

         <sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user id=sa;password="
cookieless="false" timeout="20" />

in the above snippt by default timeout="20"(asp.net sessionstae).

even if it failed to keep session values in less than  20 miniutes.


1) my Question is where do i set the SITECORE Session Timeout in
web.config?

2) what is the default time for sitecore session?


Please advice.



Thanks!

Srinivas









Yahoo! Groups Links





________________________________________________________________________________\
____
Get your own web address.
Have a HUGE year through Yahoo! Small Business.
http://smallbusiness.yahoo.com/domains/?p=BESTDEAL

#3264 From: "srinivask15" <srinivask15@...>
Date: Sun Mar 4, 2007 7:32 am
Subject: where do I set the Session Timeout
srinivask15
Offline Offline
Send Email Send Email
 
HI,

I am using Webutil.SessionValue() for keeping session values.

actually in web.config like this

		 <sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;user id=sa;password="
cookieless="false" timeout="20" />

in the above snippt by default timeout="20"(asp.net sessionstae).

even if it failed to keep session values in less than  20 miniutes.


1) my Question is where do i set the SITECORE Session Timeout in
web.config?

2) what is the default time for sitecore session?


Please advice.



Thanks!

Srinivas

#3263 From: John West <johnpwest3@...>
Date: Fri Jan 19, 2007 3:24 pm
Subject: Re: Sitecore 5.3 installation problems (still)
johnpwest3
Offline Offline
Send Email Send Email
 
I believe this is the same issue reported here:

http://sdn5.sitecore.net/forum/ShowPost.aspx?PostID=1560

I have filed a case on your behalf in the support portal using the log and
screen shot emailed separately to the US support team. I emailed a link to
download the .zip.

----- Original Message ----
From: mlitnewski <marklitnewski@...>
To: sitecore@yahoogroups.com
Sent: Friday, January 19, 2007 6:00:29 AM
Subject: [sitecore] Sitecore 5.3 installation problems (still)

Still having the same issues with my Sitecore installation as a few
months ago.  "Input string was not in correct format".

Is there *anywhere* I can obtain the zip installation for this?  I
would have much better luck if I could just do it myself rather than
using the .exe installation.  I notice there's all kinds of
documentation on the sdn5 site on how to install the .zip installation,
but there's no .zip file available for download, only the .exe.

I can provide an installlog file as well as a screen of the actual
error if needed.







________________________________________________________________________________\
____
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html

#3262 From: "mlitnewski" <marklitnewski@...>
Date: Fri Jan 19, 2007 2:00 pm
Subject: Sitecore 5.3 installation problems (still)
mlitnewski
Offline Offline
Send Email Send Email
 
Still having the same issues with my Sitecore installation as a few
months ago.  "Input string was not in correct format".

Is there *anywhere* I can obtain the zip installation for this?  I
would have much better luck if I could just do it myself rather than
using the .exe installation.  I notice there's all kinds of
documentation on the sdn5 site on how to install the .zip installation,
but there's no .zip file available for download, only the .exe.

I can provide an installlog file as well as a screen of the actual
error if needed.

#3261 From: "kerry_bellerose" <kb@...>
Date: Mon Dec 18, 2006 8:55 am
Subject: Re: Webservice
kerry_bellerose
Offline Offline
Send Email Send Email
 
Hi Jacob,

We have moved the Sitecore community from this Yahoo Group to the
Sitecore Forum, located at http://sdn5.sitecore.net/forum.aspx.

Please repost your question on this forum.

Cheers,

Kerry

--- In sitecore@yahoogroups.com, "jacob_persson" <jacob_persson@...>
wrote:
>
> Hi!
>
> First of, I am a newbie at developing for SiteCore.
>
> I would like to develop a webservice that provides some content for
> SiteCore. I contemplating to send the data in xml and use xslt
> renderings to style the pages.
>
> My question is: How do I best set up SiteCore to consume the
> webservice? I guess I could write some ASP.NET code in a sub-layout to
> do this, but as far as I figured the "right" way to do this is to use
> it as a data provider in sitecore?
>
> Any help is appreciated
>
> - Jacob
>

#3260 From: "jacob_persson" <jacob_persson@...>
Date: Fri Dec 15, 2006 11:05 pm
Subject: Webservice
jacob_persson
Offline Offline
Send Email Send Email
 
Hi!

First of, I am a newbie at developing for SiteCore.

I would like to develop a webservice that provides some content for
SiteCore. I contemplating to send the data in xml and use xslt
renderings to style the pages.

My question is: How do I best set up SiteCore to consume the
webservice? I guess I could write some ASP.NET code in a sub-layout to
do this, but as far as I figured the "right" way to do this is to use
it as a data provider in sitecore?

Any help is appreciated

- Jacob

#3259 From: "Pam Minich" <coppersoftware@...>
Date: Wed Dec 13, 2006 5:23 pm
Subject: Problem running code for login
pamminich
Offline Offline
Send Email Send Email
 
The message "IIS Worker Process is failing." comes up when I access
the web host server.
Error message when the code behind the login page gets executed:
"Error invoking function 'UserLogin' for control 'Button_1' where
event is 'OnClick' Error opening connection to database: Access is
denied."  Note this is the first point at which the website has to run
any C sharp code for the user.
We think the hosting company has botched something in the security
setup because we run fine from the local staging server.  Please
suggest what we should look at.  We are running on Sitecore 4.3.2.3.
Thanks.

#3258 From: "alexdegroot_lectric" <a.degroot@...>
Date: Tue Dec 12, 2006 6:00 pm
Subject: Re: Internal link in 5.3
alexdegroot_...
Offline Offline
Send Email Send Email
 
Hi Ulrich,

Since a couple of weeks, the Sitecore community has moved from this
Yahoo Group to their own forum located at:
http://sdn5.sitecore.net/forum.aspx. All topics there are watched by
both lots of Sitecore Certified Developer as by Sitecore employees.
For these reasons and for the reasons published at the homepage of
the Yahoo Group(http://tech.groups.yahoo.com/group/sitecore/), please
open a topic on the SDN Forum instead of here.

Ontopic: You proparly have renamed your home-item. Do the same in the
core-database(make sure you backup it first!). Rebuild the link
databases and make sure the web.config is configured correct for all
websites.

Kind regards,

Alex de Groot

Mail: a [dot] degroot [at] lectric [dot] nl
Work: http://www.lectric.nl
Blog: http://sitecore.alexiasoft.nl

#3257 From: "simonprctr" <Simon.Proctor@...>
Date: Tue Dec 12, 2006 3:14 pm
Subject: Re: XSLT editor shortens tags
simonprctr
Offline Offline
Send Email Send Email
 
Ok will do. But to answer your question. Sometimes a shortened tag
doesn't work. For example, I have XHTML output but I still need the
end tag for a textarea.

--- In sitecore@yahoogroups.com, "alexdegroot_lectric" <a.degroot@...>
wrote:
>
> Hi Simon,
>
> Since a couple of weeks, the Sitecore community has moved from this
> Yahoo Group to their own forum located at:
> http://sdn5.sitecore.net/forum.aspx. All topics there are watched by
> both lots of Sitecore Certified Developer as by Sitecore employees.
> For these reasons and for the reasons published at the homepage of
> the Yahoo Group(http://tech.groups.yahoo.com/group/sitecore/), please
> open a topic on the SDN Forum instead of here.
>
> Ontopic: What's wrong with the short tags anyway? They are valid...
> But you might change the output from xml to html...
> <xsl:output method="html" indent="no" encoding="UTF-8" />
>
> Kind regards,
>
> Alex de Groot
>
> Mail: a [dot] degroot [at] lectric [dot] nl
> Work: http://www.lectric.nl
> Blog: http://sitecore.alexiasoft.nl
>

#3256 From: "ulrichmadsen" <uwm@...>
Date: Tue Dec 12, 2006 3:34 pm
Subject: Internal link in 5.3
ulrichmadsen
Offline Offline
Send Email Send Email
 
When I create a internal link in the Rich Text Editor the link that is
inserted is just a "/" no matter what i chosse from the tree... Has
anoybody had the same problem??

Messages 3256 - 3285 of 3315   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help