I'm a bit confused about how to start the installation procedure. The Readme.txt file says to '5 ) Point your browser to http://yourdomain/install/'. When I do this, however, I get an access denied error because there is no default.aspx or other autorun file.
Your forum post at 'http://mailyoulike.com/forum/forum_posts.asp?TID=87&PN= 1' says to 'Then point your browser towards the virtual directory [ http://yourdomian.com/yourvirtualdirectory/ ]' All this does is cause an application error '[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied.' The exception is caused by this line -
Line 43: c_key.check_key_valid(c_key.get_key("",session("constr")))
Am I missing something????
I'm using WinXP, MS SQL - I've created the database and modified the config.aspx file to this:
<%
...
'=========================================================== ======================
' Set the name of virtual folder under which you will install Mail You Like
'=========================================================== ======================
vfolder = "/webmail"
...
'=====================================
'set the database type (dbtype)
'1 access
'2 MS SQL
'====================================
dbtype = 2
...
'=========================================================== =====
' if dbtype = 2 (MSSQL) then define the following variables
'=========================================================== =====
'=============================
'Your MSSQL server name(IP) is :
'=============================
sComputerNAme = "192.168.100.xx"
'================
'Database name :
'================
sDBName = "myl"
'==============================
'Username for MSSQL server is :
'==============================
sUserName = "xxxxxx"
'==============================
'Password for MSSQL server is :
'==============================
sPassword = "xxxxxxxx"
...
%>