?
avatar micker
micker
20 Dec 2017

Steps to reproduce the issue

on joomla 3.8
database fixed
check new update
Unknown column 'stability' in 'field list'

in backend and now in front-end ...

avatar micker micker - open - 20 Dec 2017
avatar joomla-cms-bot joomla-cms-bot - labeled - 20 Dec 2017
avatar franz-wohlkoenig franz-wohlkoenig - change - 20 Dec 2017
Category com_joomlaupdate
avatar franz-wohlkoenig franz-wohlkoenig - change - 20 Dec 2017
Title
[j3.X]Unknown column 'stability' in 'field list'
Unknown column 'stability' in 'field list'
avatar joomla-cms-bot joomla-cms-bot - edited - 20 Dec 2017
avatar franz-wohlkoenig
franz-wohlkoenig - comment - 20 Dec 2017

Can't confirm.

Set "Database > fix", then "Joomla Update" > "Check for Updates": Works as expected in Front- and Backend.

avatar franz-wohlkoenig franz-wohlkoenig - change - 20 Dec 2017
Status New Discussion
avatar micker
micker - comment - 20 Dec 2017

did you have an idea about this sql request ?
=> maybe an update for futur compatibility check ?
i have some site with the same problem


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/19107.

avatar franz-wohlkoenig
franz-wohlkoenig - comment - 20 Dec 2017

No, i haven't as i'm no Developer. But sure other will.

avatar ggppdk
ggppdk - comment - 20 Dec 2017

To see where the error is thrown you could enable Joomla DEBUG,

  • but to get both the location of the error and also get the DB query too

Try replacing in
administrator/templates/isis/error.php

(similar for frontend template, but for frontend undo the change as soon as you get the error information)

<?php if ($this->debug) : ?>
	<br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?>
<?php endif; ?>

with

<?php if (1 || $this->debug) : ?>
	<br/><?php echo htmlspecialchars($this->error->getFile(), ENT_QUOTES, 'UTF-8');?>:<?php echo $this->error->getLine(); ?>
	<?php if ($this->error instanceof JDatabaseExceptionExecuting) : ?>
		<br/><?php echo htmlspecialchars($this->error->getQuery(), ENT_QUOTES, 'UTF-8');?>
	<?php endif; ?>
<?php endif; ?>
avatar micker
micker - comment - 20 Dec 2017

i found sorry ... an update.xml

avatar micker micker - change - 20 Dec 2017
Status Discussion Closed
Closed_Date 0000-00-00 00:00:00 2017-12-20 10:23:45
Closed_By micker
avatar micker micker - close - 20 Dec 2017

Add a Comment

Login with GitHub to post a comment