|
|
Joined: August 2006 Posts: 3145
Location: Marlton, NJ | "In the lower right of posts you should see the edit, reply, qoute options and at the bottom should be a QUICK REPLY BOX"
I can't see any of those things. |
|
| |
|
Joined: December 2001 Posts: 7237
Location: The Great Pacific Northwest | Can you reply now? (You may have to log out and log in again.) |
|
| |
|
Joined: August 2006 Posts: 3145
Location: Marlton, NJ | Now I can see it all. What was the problem... permissions? |
|
| |
|
Joined: December 2001 Posts: 10
Location: Paradise | Yeah the permission sets are rather expansive and frankly poorly laid out. Good they are expansive but rather awkward to set up initially. thanks for the assist. |
|
| |
|
Joined: December 2001 Posts: 10
Location: Paradise | LOL... I'm logged in as Lisa.... Time for more coffee :)
-Miles |
|
| |
|
 Joined: September 2006 Posts: 10777
Location: Keepin' It Weird in Portland, OR | And suddenly, like magic, it works.
(now where are the smileys) |
|
| |
|
Joined: December 2001 Posts: 7237
Location: The Great Pacific Northwest | smileys should show on the reply page... not in this quick-reply box
http://www.ovationfanclub.com.asp1-8.dfw1-1.websitetestlink.com/bb/... |
|
| |
|
 Joined: September 2006 Posts: 10777
Location: Keepin' It Weird in Portland, OR |
Just so long as the child in me can have Toys! ;) |
|
| |
|
 Joined: August 2009 Posts: 1137
Location: Germany, where delicious wine is growing (Rheinh) | Okay, now I think I've to go to school again....
Bernie |
|
| |
|
 Joined: December 2009 Posts: 686
Location: Route 66, just east of the Cadillac Ranch | Lcase wrote: LOL... I'm logged in as Lisa.... Time for more coffee :)
Hey Lisa, Tell Miles I said thank you! |
|
| |
|
 Joined: September 2006 Posts: 10777
Location: Keepin' It Weird in Portland, OR | Hello... The "Preview Reply" ain't Previewing for me.
Just thought I would mention that... Anybody else having a similar problem? |
|
| |
|
 Joined: October 2008 Posts: 639
Location: NW of Philadelphia | Same here.... Reply Preview isn't working.
|
|
| |
|
 Joined: December 2008 Posts: 1455
Location: Texas | No previews here either (using Safari)…
I get a brief "loading preview" beneath the reply box, but then it disappears.
|
|
| |
|
Joined: December 2001 Posts: 7237
Location: The Great Pacific Northwest | Thanks. Unfortunatly or fortunately Im focusing 24/7 on bringing the new software online. I'm shooting for this weekend. |
|
| |
|
 Joined: December 2008 Posts: 1455
Location: Texas | I just discovered that you can now delete an accidental double post… that's a good thing… |
|
| |
|
Joined: December 2001 Posts: 7237
Location: The Great Pacific Northwest | standing wrote: I just discovered that you can now delete an accidental double post… that's a good thing…
Probably only programmers will understand this, but allowing users to DELETE anything on a database system that is so unreliable that it "DOUBLE POSTS" has to be one the most ironic demonstrations of bad coding I have ever seen. |
|
| |
|
 Joined: February 2005 Posts: 11840
Location: closely held secret | True, but as far as I know the only way to prevent double posts in a situation like this is to either index every post by user as unique or enable flood control.
The former has to be a space/performance killer, and the second is just annoying.
As a DB programmer, I'd be interested if you have a different technique, Miles. |
|
| |
|
 Joined: September 2006 Posts: 10777
Location: Keepin' It Weird in Portland, OR | Many of my double posts are just User Error.
But I have been using the delete feature when I discover that my images are not coming-out as images, but just a link.
|
|
| |
|
Joined: December 2001 Posts: 7237
Location: The Great Pacific Northwest | Waskel_dup1 wrote: True, but as far as I know the only way to prevent double posts in a situation like this is to either index every post by user as unique or enable flood control.
The former has to be a space/performance killer, and the second is just annoying.
As a DB programmer, I'd be interested if you have a different technique, Miles.
While many times it's user error (clicking more than once) that can be prevented by employing a couple of things, first and foremost is optimize performance so people don't get lulled into the "didnt it take, did I click" etc..
There are some more aggressive tactics but you really don't want to allow anyone to delete something if there is a reply. That can really make a mess especially on here where threads get to be pages and pages long. Someone long gone could delete their post at the front and the whole thread is dead. There are ways around that too, but in reality... when dealing with db's online.. performance is key. When performance is up the preview option works better, it's just exponential.
FYI some other tactics include qualified checks.. like if the poster is responding to a post they made, within 2 seconds (or maybe 5 seconds) do a quick checksum between the current and previous content or even a cheap comparison of length check would eliminate most double posts. With stored procedures in the DB, there are endless possibilities to check potential double posts if it becomes an issue without having to modify much code.
There are forums that I run that are larger and busier than this one as far as posting where a double post is very very rare... as they should be. Once in awhile.. it happens.. but daily... something is wrong. |
|
| |