The "Remember Me" feature of the DotNetNuke Login is implemented by placing an encrypted authentication cookie on the user's machine.
The expiration of this cookie is controlled through the timeout value in the Forms Autentication node the web.config.
< forms name=".DOTNETNUKE" protection="All" timeout="60" cookieless="UseCookies" />
The default setting is 60 minutes, so it can't remember anyone for very long (I call it goldfish mode).
To extend the time your users are remembered make the timeout value larger.
Friday, January 30, 2009
Tuesday, January 13, 2009
display:inline-block for Firefox, Internet Explorer and Opera
For correct displaying of the elements with display:inline-block property in Firefox Internet Explorer, Opera you have to write this in style sheet:
display:-moz-inline-stack;/*Firefox need this to simulate display:inline-block*/
display:inline-block; /*IE does not apply this to Block Element, and Firefox does not render this, too*/
_overflow:hidden;/*fix IE6 to expanded content*/
zoom:1;/*trigger hasLayout*/
*display:inline;/*once hasLayout is true, set display:inline to block element will make display:inline behave like display:inline-block*
Tuesday, January 6, 2009
How to reduce the size of the database in Microsoft SQL Server
On hosting server often exists database quota for MS SQL Server. Even if your database contains small amount of data, but there is goes intensive adding/modifacation of the data, in some point the size of the data could exceed quota and your account may be suspended.
This happens because of growth of the transaction log.
To clear transaction log you can execute the following command:
This happens because of growth of the transaction log.
To clear transaction log you can execute the following command:
Ярлыки:
BACKUP LOG,
database,
Server,
size,
SQL,
transaction log,
TRUNCATE_ONLY
Subscribe to:
Posts (Atom)