• Home
  • Get help
  • Ask a question
Last post 2 hours 36 min ago
Posts last week 81
Average response time last week 4 hours 29 min
All time posts 67915
All time tickets 10498
All time avg. posts per day 20

Helpdesk is open from Monday through Friday CET

Please create an (free) account to post any question in the support area.
Please check the development versions area. Look at the changelog, maybe your specific problem has been resolved already!
All tickets are private and they cannot be viewed by anyone. We have made public only a few tickets that we found helpful, after removing private information from them.

#2786 – jos-Error: Sorry, but this page isn't available.

Posted in ‘sh404SEF’
This is a public ticket. Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.
Thursday, 29 September 2016 15:33 UTC
wouter.galia
Hi

After updates I have a big problem with the error page. Any page not being found gives me:
jos-Error: Sorry, but this page isn't available.

Example:
http://www.xxxx.be/testing

Admin access:
Username: xxxx
Pass: xxxx

I use these settings:
Try to auto-redirect 404s: yes (this is on for now)
404 error handling: override Joomla error pages
Sub-template for display: index

(when I change to: only for sh404sef pages, it shows the default error page)

Installed:
Joomla 3.6.2
sh404sef 4.8.0.3423

Many thanks in advance
Thursday, 29 September 2016 15:55 UTC
wb_weeblr
Hi

1 - What's the history of the site? jos-error is something that does not exist in Joomla 3 anymore, it's been removed long time ago
2 - At some point there was some problem in an sh404SEF update: you still have the sh404SEF custom content category, and the __404__ article.
[xxxx]

These 2 also were removed a long time ago, and we do not use at all that mechanism for displaying error pages. This changed like 2 years ago I think.

Ahh, ok. May have found something:
[xxxx]

Please update your site to the current Joomla database. You are running your Joomla with a database schema from Joomla 3.4!

Cant' say that's the problem, but it sure is one big problem to solve first.

Rgds
 
Thursday, 29 September 2016 16:13 UTC
wouter.galia
Hi

Thank you for the faste reply. I did the database fix and everything went fine. Actually I republished the old 404 article and category on the end just to be sure, but the problem was existing before that.

The website works fine and everything should be up-to-date now. Just struggling with this problem, only when sh404sef overrides the default Joomla error pages.

Anything els I can try?
Thursday, 29 September 2016 16:26 UTC
wb_weeblr
Hi

So we are back to the first questions:

1 - What's the history of the site? jos-error is something that does not exist in Joomla 3 anymore, it's been removed long time ago

2 - At some point there was some problem in an sh404SEF update: you still have the sh404SEF custom content category, and the __404__ article.


The article and category should be deleted, but they should not cause any issue either.

I don't know what to say: I do remember this happening, a long time ago, and we found workaround for it. I don't know why your site is doing this.

What we could do is as follow:

- take an akeeba backup of the site (exclude some directories if the backup is too big, it should not be bigger than 2 or 300 MB, otherwise it's hard to download and manipulate reliably).
- we'll download that, and install on a local machine, where we can step through the PHP when the error happens

This will allow understanding the problem and find what's causing it. I don't think it's within sh404SEF, as we have had this feature for many years, but you have many plugins and a custom template, so there's room for some interferences here

Rgds
 
Monday, 03 October 2016 15:07 UTC
wouter.galia
Hi

The website was originaly build width Joomla 3. So no migration happened. However it is possible that I installed an older version of sh404sef at the beginning. I do not remember any problems on preforming updates.

It would be very helpful if you could have a look. Can you download the Akeeba backup file? I left out some document and image directories, it is 220 MB.

Best regards
Tuesday, 04 October 2016 07:08 UTC
wb_weeblr
Hi

So this is caused by Easyblog: the Easyblog router has a problem: it fires a 404 when it cannot parse a URL, and this is a big issue. It bypasses entirely the Joomla API, and it should not.

The problem is at line 868 of the file /components/com_easyblog/router.php. To fix it change:

	if (! $vars) {
		// someting is not right here.
		return JError::raiseError(404, JText::_('COM_EASYBLOG_PAGE_IS_NOT_AVAILABLE'));
	}

into:
	if (! $vars) {
		// someting is not right here.
		// return JError::raiseError(404, JText::_('COM_EASYBLOG_PAGE_IS_NOT_AVAILABLE'));
	}

(ie comment out the faulty line).

Rgds
 
Wednesday, 19 October 2016 05:34 UTC
system
This ticket has been automatically closed. All tickets which have been inactive for a long time are automatically closed. If you believe that this ticket was closed in error, please contact us.
This ticket is closed, therefore read-only. You can no longer reply to it. If you need to provide more information, please open a new ticket and mention this ticket's number.