Persistent forum annoyance
Phil Pilgrim (PhiPi)
Posts: 23,514
This is something that's been going on for a long time. When I insert an image into a post, I get multiple copies of it, viz:
The number of dupes can range anywhere from three to twenty or more.
Is there any way this can be fixed?
Also, it would be nice if the image could be inserted at the current cursor position, rather than after the end of the post.
Thanks,
-Phil
The number of dupes can range anywhere from three to twenty or more.
Is there any way this can be fixed?
Also, it would be nice if the image could be inserted at the current cursor position, rather than after the end of the post.
Thanks,
-Phil
Comments
Yes, it would be nice to insert them anywhere but it would also be nice to be able to scale them in the post as well. Sometimes the pic is way too big and obscures the text even though it is a small file, yet we want something more than the attachment thumbnail to complement the text that we are reading at the same time.
At least the thing where the URL prompt for the link button would disappear if the mouse button was not held down got resolved, although I think that was a bug in my browser (Vivaldi).
Somewhat related: I'd also love it if when I press the Quote button
- It places the quote where I have my cursor
- If I have selected some part of the post, only it quotes that part
Also, last I checked, the YouTube button in the edit box does not work (and is useless, for you can embeds videos just by putting their URL into the post)
Also, I always get a red triangle "Not secure" warning in the address bar using Chrome. Been that way for a LOOOONG time. Never see that on any website except Parallax.
Strange. It does not happen to me. But I arranged for erco. And as a favor to the robots of a household in Idaho.
----
Mascot away. Please leave messages and food at the sound of the Yak.
I decide not to post but then I can't get rid of the draft.
There is a way.... Once you've created a draft, the "My Drafts" menu will appear in the left side bar, under New Discussions. You will need to refresh the page if it's your first Draft for the menu to appear.
Click into the menu, hover over unwanted drafts, and click the X
(Yeah, it's not great!)
We're going to crack the forums open pretty soon and expect to deal with this problem along with a list of others. Likely before late August.
Ken Gracey
Ken Gracey
Don't worry, just having fun while I can still post multiple images and blame it on the forum bug. I get the same thing with Tachyon/TAQOZ etc. Doesn't matter how much you put out on the table, there's always one more thing missing
We appreciate all that you and Chip and Parallax do Ken. Take care.
Thanks, Ken! I know you've got a lot on your plate. Yet I was thinking, "This one little persistent gnat should be easy to swat in no time." But I hadn't considered the greater efficiency of scheduling exterminators to come fumigate the entire house. You da man!
-Phil
---
Mascot and Yak away.
It's not the https, I'm using that. On closer examination, I only get the "not secure" warning on the General Discussion homepage.
I'm not getting anything like that in Vivaldi (which is based on Chromium).
Fixed. Thanks for finding the cause.
ps. We'll find a more interesting avatar later
hmm.. ok... there's more to this. Maybe the gravatar plugin is pushing http into the mix.
I'll add this to the list of things to fix at the next forum update.
Some link to Parallax pages that are long gone but many link to other forum messages.
Newer posts have titles that can be searched for but older posts have just numbers.
Confirmed- that task is on the list too.
Essential.
I didn't realize this was on our task list. I've always thought there was nothing we could do about this old problem.
Ken
It's completely solvable. You just need a program to spider through all of the forum posts, doing a search and replace on the links. (Best to do this in the wee hours, so you can temporarily shut down the forum while it's operating. You probably won't get it done in one night, so it'd be best to break the task up into smaller chunks.) This is the kind of thing Jim Ewald and I did years ago when you upgraded to the forum software that predated Vanilla.
For example, for embedded images, a program could be written to look for strings like this:
http://forums.parallax.com/attachment.php?attachmentid=83152&d=1311203972
and replace them with this:
https://forums.parallax.com/discussion/download/83152
The image ID (83152) never changed so there's no need for any kind of lookup table.
Similarly, for links to threads:
http://forums.parallax.com/showthread.php?133173
gets replaced with:
https://forums.parallax.com/discussion/133173
Again, no lookup table is required, since the ID number didn't change. The only caveat here is that the new link points to the last page, instead of to the first one. (IIRC, there's a URL qualifier in Vanilla that refers to the top page, but I can't remember what it is.)
A similar thing is likely possible for links to individual posts.
-Phil
BTW, this is particularly easy to do in Perl:
does all the replacements for images in the page. (There's probably at least one error in there. You hardly ever get regexes right the first time. )
Similarly for thread links.
The "0" is a needed filler. It can be anything that isn't syntactic. Normally has the topic title.
-Phil