| Author |
Topic Search Topic Options
|
__n3o__
Groupie
Joined: 08 November 2005
Location: United Kingdom
Status: Offline
Points: 135
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 April 2006 at 8:35pm |
|
Thanks chaps.. At least I'm not going mad!!
NOW heres a weird one... I got the posting thing wrong, it seems that people can post most of the time - But literally cannot send PM's??
Any help on this would be appreciated....
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 20 April 2006 at 9:26am |
|
In what way can they not post PM's.
Also as no-one else has reported issues with posting PM's make sure you don't have a corrupted file by reuploading the files again
|
|
|
 |
JasonSGN
Newbie
Joined: 14 January 2006
Status: Offline
Points: 25
|
Post Options
Thanks(0)
Quote Reply
Posted: 20 April 2006 at 12:01pm |
Mikey, that code seems to work perfectly. After a full day of use I have not gotten logged out after using the Quick Login with your code change. Thanks!
|
 |
__n3o__
Groupie
Joined: 08 November 2005
Location: United Kingdom
Status: Offline
Points: 135
|
Post Options
Thanks(0)
Quote Reply
Posted: 20 April 2006 at 12:23pm |
Sorry Bruce... It was my mistake, people were able to post in the forum but unable to send PM's...
MICROSOFT INTERNET EXPLORER
-------------------------------------------------------------------------------
the form has not been submitted because there are problem(s)
with the form please correct the problem(s) and resubmit the form
-----------------------------------------------------------------------------------
the following field(s) need to be corrected:-
message -enter private message to send
|
This is happening to quite a few people...
|
 |
WebWiz-Bruce
Admin Group
Web Wiz Developer
Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
|
Post Options
Thanks(0)
Quote Reply
Posted: 20 April 2006 at 12:27pm |
|
This is the same issue as you reported before.
I am still looking into this problem, which doesn't seem to be effecting others as much as it seems to be affecting your users.
The only time it seems to happen on other sites is when script blocking software is used on the users PC. As it is effecting so many users on your site the only thing I can think is that some sort of modification or site integration is coursing the issue, or you have a corrupted file.
The only thing I can suggest for the moment is that you disable the RTE from the admin area.
|
|
|
 |
Mikey
Senior Member
1979
Joined: 06 October 2003
Location: United Kingdom
Status: Offline
Points: 839
|
Post Options
Thanks(0)
Quote Reply
Posted: 20 April 2006 at 9:36pm |
JasonSGN wrote:
Mikey, that code seems to work perfectly. After a full day of use I have not gotten logged out after using the Quick Login with your code change. Thanks! |
No problem mate
|
|
Handyman man?
|
 |
__n3o__
Groupie
Joined: 08 November 2005
Location: United Kingdom
Status: Offline
Points: 135
|
Post Options
Thanks(0)
Quote Reply
Posted: 23 April 2006 at 8:47am |
Mikey wrote:
Same boat as Jason here using AVG and occasionally getting the problem described, but as it happens not often i can live with it.
for quick login, include...
<% = strTxtYes %><input type="radio" name="AutoLogin" value="true" checked /> <% = strTxtNo %><input type="radio" name="AutoLogin" value="false" /> |
Within your quick login form to allow users to select wether or not to be auto logged in.
Change type to 'hidden' and only include the 'True' part of the code if you want them to be auto logged in without choice, altho you really should let em know if you are going to do this.
|
Bit confued as to where this bit of code is to be inserted???  ... Can you tell me what line please?
|
 |
JasonSGN
Newbie
Joined: 14 January 2006
Status: Offline
Points: 25
|
Post Options
Thanks(0)
Quote Reply
Posted: 23 April 2006 at 2:05pm |
n30,
Look for the following code in your default.asp file (around line# 368) and add the code in red:
'If the user has not logged in (guest user ID = 2) then show them a quick login form If lngLoggedInUserID = 2 Then Response.Write(" <td align=""right"" class=""smText"">" & _ vbCrLf & " <form method=""post"" name=""frmLogin"" id=""frmLogin"" action=""login_user.asp" & strQsSID1 & """>" & strTxtQuickLogin & _ vbCrLf & " <input type=""text"" size=""10"" name=""name"" id=""name"" style=""font-size: 10px;"" />" & _ vbCrLf & " <input type=""password"" size=""10"" name=""password"" id=""password"" style=""font-size: 10px;"" />" & _ vbCrLf & " <input type=""hidden"" name=""AutoLogin"" value=""true"" />" & _ vbCrLf & " <input type=""hidden"" name=""NS"" id=""NS"" value=""1"" />" & _ vbCrLf & " <input type=""submit"" value=""" & strTxtGo & """ style=""font-size: 10px;"" />" & _ vbCrLf & " </form>" & _ vbCrLf & " </td>") End If
|
Edited by JasonSGN - 23 April 2006 at 2:06pm
|
 |