Author |
Topic |
LeslieS
Starting Member
33 Posts |
Posted - 15 June 2001 : 10:59:37
|
I have installed the file attachment mod on sr4 , but I get ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted; the operation requested by the application requires a current record.
/forum5/inc_functions.asp, line 658
when I click on new topic. If I switch of the Allow Uploads, no errors occur. I am using the NT Auto logon feature if that helps any.
Regards, Leslie.
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 15 June 2001 : 12:05:19
|
Have you installed the database changes without error ?
|
|
|
LeslieS
Starting Member
33 Posts |
Posted - 19 June 2001 : 09:40:52
|
Huw,
Sorry for the delay in replying.
Yes I have installed the database without error. I took the trouble of double checking be doing a fresh install into a new directory and the problem remains.
Leslie
|
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 19 June 2001 : 10:52:52
|
could you mail me your inc_functions.sp, so I can see which lines are failing
|
|
|
majodio
Starting Member
3 Posts |
Posted - 20 June 2001 : 16:46:27
|
I get the same error. We use NT authentication as well.
quote:
I have installed the file attachment mod on sr4 , but I get ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted; the operation requested by the application requires a current record.
/forum5/inc_functions.asp, line 658
when I click on new topic. If I switch of the Allow Uploads, no errors occur. I am using the NT Auto logon feature if that helps any.
Regards, Leslie.
|
|
|
LeslieS
Starting Member
33 Posts |
Posted - 21 June 2001 : 10:47:24
|
Huw's looking at the code at the moment. Watch this space for an answer.
Les
|
|
|
Micah_Joel
Starting Member
3 Posts |
Posted - 09 July 2001 : 21:02:28
|
I have had exactly the same error, under the same circumstances. I did a clean re-install of the board and the mod, and everything worked great until I enabled NT authentication.
I'm ready to launch this board on my company's intranet, but the inability to post attachments is holding me up. I hope you figure out what's going on with the code!
|
|
|
LeslieS
Starting Member
33 Posts |
Posted - 10 July 2001 : 05:43:49
|
Just to let you know that I am still waiting on a reply from Huw on a fix.
Regards,
Leslie
|
|
|
Micah_Joel
Starting Member
3 Posts |
Posted - 10 July 2001 : 12:19:01
|
Thanks for the quick reply--I really appreciate it. I'll hang on!
-M
|
|
|
helpme
Starting Member
37 Posts |
Posted - 10 July 2001 : 13:30:14
|
can u make the file attachment mod to show on post like how vbulletin has there's PLEASE?
|
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 10 July 2001 : 18:51:50
|
quote:
Just to let you know that I am still waiting on a reply from Huw on a fix.
Regards,
Leslie
My humblest appologies, I got side tracked and forgot all about it. look in your inc_functions.asp for this function
function getMemberID(fUser_Name)
'## Forum_SQL strSql = "SELECT " & strMemberTablePrefix & "MEMBERS.MEMBER_ID " strSql = strSql & " FROM " & strMemberTablePrefix & "MEMBERS " strSql = strSql & " WHERE M_NAME = '" & fUser_Name & "'"
set rsGetMemberID = my_Conn.Execute(strSql) getMemberID = rsGetMemberID("MEMBER_ID")
end function
make the following changes (in red)
function getMemberID(fUser_Name)
'## Forum_SQL strSql = "SELECT " & strMemberTablePrefix & "MEMBERS.MEMBER_ID " strSql = strSql & " FROM " & strMemberTablePrefix & "MEMBERS " strSql = strSql & " WHERE " & strDBNTSQLName & " = '" & fUser_Name & "'"
set rsGetMemberID = my_Conn.Execute(strSql) getMemberID = rsGetMemberID("MEMBER_ID")
end function
|
|
|
SalmanKhana
Average Member
USA
961 Posts |
Posted - 11 July 2001 : 08:29:19
|
quote:
can u make the file attachment mod to show on post like how vbulletin has there's PLEASE?
vbulletin ?? hmmmmmmm i dunno who they are
|
|
|
LeslieS
Starting Member
33 Posts |
Posted - 11 July 2001 : 10:53:35
|
Huw,
Thanks very much, that change has resolved the problem.
Regards,
Leslie
|
|
|
LeslieS
Starting Member
33 Posts |
Posted - 11 July 2001 : 12:17:45
|
Silly question - how do I download the file once it has been uploaded. I can see the hyperlink, but clicking on the link, pressing the submit option, returns a dialog box saying either you are not registered or downloading is not enabled. Where do I enable it ? I am logged on as admin so that is not the problem.
Regards, Leslie
|
|
|
helpme
Starting Member
37 Posts |
Posted - 11 July 2001 : 12:21:52
|
here is a screenshot of what am talking about
ah look like the image not showing and it wont even show if you click on the link so just copy and paste the link in your browser to take a look atthe screenshot
Edited by - helpme on 11 July 2001 12:30:40 |
|
|
Micah_Joel
Starting Member
3 Posts |
Posted - 11 July 2001 : 12:25:24
|
Hey Leslie,
I was having the same problem--I poked around on this forum and found that someone else had solved this problem for us. Open pop_download.asp and add this line:
Response.Write "<input name=""Name"" type=""hidden"" value=""" & Session(strCookieURL & "userid") & """>"
just before this statement:
else if strAuthType = "db" then%>
Mine's working fine now. Let me know how yours turns out!
BTW: HuwR: The NT/file upload works great now. Thanks for the fast turnaround!
Edited by - Micah_Joel on 11 July 2001 13:03:52 |
|
|
Topic |
|