Thanks for downloading the ASP-DEv XM Diary script. This is a very simple ASP app, that uses the built in VB Script date functions to display a calendar, that you can add events to. All you need to do to install the script, is to open config.asp, and change the path to the database to that of that on the server. You must make sure this folder has write permissions set for the IUSER_???? account. To change the username and password required to access the forum, please change the values in config.asp For support please visit the forums, at http://www.asp-dev.com/forum/ If you have problems with date formatting, then try the following: Edit config.asp and at 2nd line of the page (after the <% line) Add Session.LCID = ???? where the ???? is your LCID code some examples below, for a full list : http://support.microsoft.com/default.aspx?scid=KB;EN-US;q221435 English UK : 2057, English US: 1033, German: 1031, Dutch: 1043, French:1036, spanish:1034 So for spanish your config.asp file should look like: <% Session.LCID = 1034 ' Database Connection String strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.mappath("diary.mdb") 'Admin Username/Password const UserName = "admin" const Password = "letmein" %>