joomla / jed-issues

Joomla! Extensions Directory - Issue Tracker
8 stars 2 forks source link

Broken link in unpublished message #243

Open toivo opened 2 years ago

toivo commented 2 years ago

Describe the bug

If an extension has been unpublished, the link 'view error codes' is presented as https://extensions.joomla.org/support/knowledgebase/item/unpublished-extensions-error-codes/ but clicking that link results in a blank page

To Reproduce Steps to reproduce the behavior:

  1. Go to Tag Meta at https://extensions.joomla.org/extension/tag-meta/
  2. Click on 'View error codes'

Expected behavior The page Unpublished Extensions Error Codes is displayed from https://extensions.joomla.org/support/knowledgebase/error-codes/unpublished-extensions-error-codes/

Additional context The error was reported on Dec 17 at the forum extensions.joomla.org - Feedback/Information at https://forum.joomla.org/viewtopic.php?f=262&t=990655

toivo commented 2 years ago

Update and New Test URL Tag Meta was mentioned earlier but now it is been published. Check the following unpublished extension instead:

DD Google Analytics (EU Privacy) at https://extensions.joomla.org/extension/site-management/analytics/dd-google-analytics-eu-privacy/

Llewellynvdm commented 2 years ago

Here we fixed it months ago... Untitled image image

Why the systems which moves this to the live site has not yet done so is strange as I have also investigated this, here is the code that does that once the site is cloned from github... it hits this hook:

#!/bin/bash
#
# Script used by git hooks, which runs every 5 mins polling the
# develop branch. Uses rsync to copy changes from the repository to t
#   he staging web root.
#
# To install it, copy the post-merge file into the repository .git/hooks directory.
# To run it, "git pull"
# A cronjob running every 5 minutes, running a "git pull" on the repository.

GIT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REPO_DIR="$GIT_DIR/../.."
SOURCE_PUBLIC_HTML_DIR="$REPO_DIR/public_html"
TARGET_PUBLIC_HTML_DIR="$HOME/public_html"

rsync -avq $SOURCE_PUBLIC_HTML_DIR/ $TARGET_PUBLIC_HTML_DIR

The cronjob logs look correct and so the search is on...