Can't get any pictures to upload whether i copy/paste them in or upload from saved files. Anyone else?
Trouble uploading photos?
-
-
Yup. It'll only post images as a download link.
-
Well at least it's not just me lol
-
- Official Post
Currently investigating it, I'll keep you updated
-
Its annoying!!!
-
- Official Post
Working on it - I am working together with the developers of the software on this so should be resolved soon.
-
thanks Laerah
-
bsoltan
June 24, 2025 at 12:27 PM Moved the thread from forum General to forum Forum suggestions and help. -
Has this been resolved yet?
-
- Official Post
Has this been resolved yet?
Unfortunately, no. Working on it.
It's harder than I had hoped and I have checked and ruled out a lot of things on our new server that were the likely culprits. What doesn't help is that the way file uploads are handled are changed in this version of the forum software (and radically so) and thus I am not that familiar with how it works now.
So, currently still investigating it. Will update as soon as I have an update to make.
- Kev
-
- Official Post
This is now resolved - unfortunately, this didn't happen retroactively - this only works for new uploads going forward.
-
This is now resolved - unfortunately, this didn't happen retroactively - this only works for new uploads going forward.
Thank you so much for your effort and dedication to make this forum the best it can be!
-
- Official Post
This is now resolved - unfortunately, this didn't happen retroactively - this only works for new uploads going forward.
Thank you so much for your effort and dedication to make this forum the best it can be!
You're very welcome
Guild Wars is extremely dear to my heart, this is just one thing I can do for all the years of enjoyment GW has given me (so far).
By the way, our new server is now Zu Heltzer, Vekk has officially retired now!
-
I had ChatGPT write this userscript to fix older images if anyone is interested.
You will need Greasemonkey/Tampermonkey installed in your web browser to use it.
I haven't tested it extensively, but initial tests work so far. Use at own risk.
Code
Display More// ==UserScript== // @name Guild Wars Legacy Image Link Converter // @description Convert image links in posts to actual images. // @author ChatGPT // @match https://guildwarslegacy.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Function to convert links to images function convertImageLinks() { // Select all message text elements const messageTexts = document.querySelectorAll('.messageText'); messageTexts.forEach(message => { // Find all anchor tags within the message const links = message.querySelectorAll('a'); links.forEach(link => { // Check if the link is an image link if (link.href.match(/file-download\/\d+/)) { // Create an image element const img = document.createElement('img'); img.src = link.href; // Set the source to the link's href img.alt = 'Image'; // Set alt text img.style.maxWidth = '100%'; // Make sure the image is responsive img.style.height = 'auto'; // Maintain aspect ratio // Replace the link with the image link.parentNode.replaceChild(img, link); } }); }); } // Run the function to convert links on page load window.addEventListener('load', convertImageLinks); })();