Author |
Topic |
helpme
Starting Member
37 Posts |
Posted - 31 May 2001 : 10:11:27
|
is this mod completed because am trying to download it only if its completed
|
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 31 May 2001 : 11:32:06
|
This MOD works fine as is. Any changes have been super easy to implement as has been the case with every part of this MOD. Whole things installs in less than 5 minutes.
@tomic
|
|
|
mvaughn
Starting Member
30 Posts |
Posted - 31 May 2001 : 17:42:03
|
quote:
is this mod completed because am trying to download it only if its completed
The downloads are completed up to the same version as the demo. Both downloads in my beggining post are current.
Wether the Mod as a whole is completed depends on when I or anyone else stops working on it.
Were there any other features that you wanted?
-Mark- __________________ That which fascinates us, is in fact true. |
|
|
Shep
New Member
74 Posts |
Posted - 08 June 2001 : 19:05:38
|
I've got a problem. My pm_pop_send window has nothing in it but the "Send Message", "Reset Fields" buttons, and the "close window" link. There is no form to fill out!
Help. You can find it at www.calvaryWorship.org
Thanks, Shep
|
|
|
mvaughn
Starting Member
30 Posts |
Posted - 08 June 2001 : 22:25:49
|
quote:
I've got a problem. My pm_pop_send window has nothing in it but the "Send Message", "Reset Fields" buttons, and the "close window" link. There is no form to fill out!
Help. You can find it at www.calvaryWorship.org
Thanks, Shep
I'd love to help but after registering for your forum t retreived my password from my email, entered my username and password in your login box but it dumps me back into the default.asp page without allowing me to log in.
-Mark- __________________ That which fascinates us, is in fact true. |
|
|
Shep
New Member
74 Posts |
Posted - 09 June 2001 : 02:32:40
|
quote:
I'd love to help but after registering for your forum t retreived my password from my email, entered my username and password in your login box but it dumps me back into the default.asp page without allowing me to log in.
-Mark-
OK - I think you can get in now - replaced the inc_top.asp - THanks for your help
Also - how come I don't receive notification to these forums even when I have it checked?
Shep
Edited by - shep on 09 June 2001 03:18:07 |
|
|
stuF
Average Member
United Kingdom
561 Posts |
Posted - 09 June 2001 : 05:26:49
|
ok, i installed this mod with no probs, im using via the personalization mod which is also tres cool, one querry i have is ... if oyu leave the forum (without looging out) and leave the pager window active after a few minutes you will be logged out, but, as i intend to use this for all of the time im onlnie to check whats going on with my board, and users will be able to see when thier friends are online, sort of a mini msn type thing, so is there anyway, or staying logged in all the time the pager window is active? my forum:36-degrees cheers, stuart.
ps - I think a real time member chat would fit excellently with this addon, just a text input and a display box....im going to see if i can find any such chat apps now, integrating it into the database could be a littel harder as i know nothing about DBs....
Edited by - stuF on 09 June 2001 06:21:43 |
|
|
Shep
New Member
74 Posts |
Posted - 09 June 2001 : 16:15:16
|
OK
I have solved my problems (I think) - but I discovered something that ma be a missed character in your original MOD zip file - 'cause I wnet back and checked it and the character was missing from the original. It is as such:
<a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><% =rs("UserID") %></a> <a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>&method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><img src=pm.gif border=0 width=11 height=17 align=absmiddle hspace=6></a>
Please notice the "&method=Topic" in the second URL but just the "method=Topic" in the first. This was causing my pm_pop_send.asp to not display the form - only the "send" and "reset" buttons.
Shep BTW - this mod is awesome!
Edited by - shep on 09 June 2001 16:17:01 |
|
|
mvaughn
Starting Member
30 Posts |
Posted - 10 June 2001 : 03:08:18
|
You are absolutely correct. I somehow lost that character. I will update the code monday. Until then here is where to make the correction to the pm_pop_pager.asp file.
Find this code:
quote: <a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><% =rs("UserID") %></a> <a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>&method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><img src=pm.gif border=0 width=11 height=17 align=absmiddle hspace=6></a>
Insert an apersand as shown
quote: <a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>&method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><% =rs("UserID") %></a> <a href="Javascript:openWindowPM('pm_pop_send.asp?Mdest=<% =rs("UserID") %>&method=Topic')" onMouseOver="return overlib('Send a Private Message to <% =rs("UserID") %>.', WIDTH, 100, BORDER, 1, FGCOLOR, '#FFFFFF', BGCOLOR, '<% =strTableBorderColor %>')" onMouseOut="nd();"><img src=pm.gif border=0 width=11 height=17 align=absmiddle hspace=6></a>
-Mark- __________________ That which fascinates us, is in fact true.
Edited by - mvaughn on 10 June 2001 03:11:47 |
|
|
stuF
Average Member
United Kingdom
561 Posts |
Posted - 10 June 2001 : 07:54:43
|
how about an addon for this which would allow the user to lock it on top of all other windows...? like msn...
|
|
|
stuF
Average Member
United Kingdom
561 Posts |
Posted - 10 June 2001 : 08:14:43
|
i also would like to add a function where you click an icon to invite a user to my sites chatroom, this icon would sit next to each users name, and would open a window, with a prewritten message containing the url of the chatroom and the usernme already filled in...prehaps im getting a bit adverturous... another way of doing it, would to just have an option on the send PM window, where it inserts the message for the user...this could be easier.... any help would be fantastic... http://36-degrees.co.uk/cgi-bin/forum
|
|
|
stuF
Average Member
United Kingdom
561 Posts |
Posted - 10 June 2001 : 14:45:48
|
i know im being adverturous with this, but for the one with tooltips, would there be anychance of showing a GUESTS ip WHERE THE SEDN MESSAGE WORDING WOULD NORMALLY APPEAR FOR A member (sorry hit caps a long time ago and didnt look up) also, an admininterface, with options for PM auto delete on reading, option to lock infront of all other windows for members, and option to hide from certain users (eg, only show onlnie status to users on buddy list) i love this mod, and i feel it could really becone a lot more useful, my #1 wish is that it would keep you logged in once oyuve left, so it could be used as an instant message type addon....
|
|
|
cityfocus
Starting Member
4 Posts |
Posted - 13 June 2001 : 02:12:07
|
mvaughn..
Great mod and site design. I have an unrelated security suggestion... I was able to locate & download your Access Database - you may want to change the permissions on it to prevent read access by mischievous Internet users. One of the problems is that your VIEW SCRIPT option on your forums let me see the config.asp page, with the path to your database. Hope this prevents someone from causing damage in the future with your password from the DB, or from taking all your users private info!
Keep up the good MOD work!
|
|
|
Trinity
Starting Member
26 Posts |
Posted - 13 June 2001 : 10:11:49
|
i installed your mod as instructed.. here is is the error i am getting... any help would be appreciated !!!!
Microsoft OLE DB Provider for ODBC Drivers error '80040e37'
[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'FORUM_ONLINE'.
/discussion/pm_pop_pager.asp, line 53
thanks
Jen
|
|
|
mvaughn
Starting Member
30 Posts |
Posted - 13 June 2001 : 12:42:47
|
quote:
mvaughn..
Great mod and site design. I have an unrelated security suggestion... I was able to locate & download your Access Database - you may want to change the permissions on it to prevent read access by mischievous Internet users. One of the problems is that your VIEW SCRIPT option on your forums let me see the config.asp page, with the path to your database. Hope this prevents someone from causing damage in the future with your password from the DB, or from taking all your users private info!
Keep up the good MOD work!
cityfocus...
Thanks for reminding me about this. I was planning on doing this since my site is now public. Now that it is public knowledge I fixed it immediately.
-Mark- __________________ That which fascinates us, is in fact true. |
|
|
Topic |
|
|
|