Hi, Deckard Canine,
You have two ways you can resolve this problem, both of which are easy to do:
1) Access your /public_html/d/ folder on the FTP and delete the buggy HTML files you specified. Then, upload your PNG files from those dates to your /public_html/workspace/comics folder, like you were uploading new comics. Delete the old files from your /public_html/comics/ folder, and schedule an update in Site Admin. The server will create new HTML files to replace the ones you deleted.
Or,
2) Access your /public_html/d/ folder on the FTP and edit the buggy HTML files to work as intended. For the pages that incorrectly link to the latest comic, change the URL in the following...
- Code: Select all
<a href="http://downscale.comicgenesis.com">Next comic</a>
...to the HTML file you desire, such as...
- Code: Select all
<a href="http://downscale.comicgenesis.com/d/20100604.html">Next comic</a>
For the HTML files that don't have the "Next comic" and "Latest comic" links, add the following after "Previous comic</a> "...
- Code: Select all
<a href="http://downscale.comicgenesis.com/d/20100604.html">Next comic</a> <a href="http://downscale.comicgenesis.com">Latest comic</a>
...using the correct date for "Next comic."
For
http://downscale.comicgenesis.com/d/20100521.html, which lists the author as "ARRAY(0xd130b0)," you can fix it by changing this line...
- Code: Select all
<h2>by ARRAY(0xd130b0)</h2>
...to this...
- Code: Select all
<h2>by Stephen Gilberg</h2>
Also, note that adding...
- Code: Select all
***calendar***
...anywhere in your HTML will generate a calendar-style navigation section that displays the comic's entire archives.