Menu Content

Support

> Forums, FAQs & Paid Support
Welcome, Guest
Username Password: Remember me

problem after installing JoomDOC 3 into joomla 1.7
(1 viewing) (1) Guest
Support forum for users using free edition of JoomDOC. These forums are mainly for mutual help between users.

NOTE: Due to our capacity limitations, ARTIO does not monitor this forum category regularly. If you want direct support from ARTIO, please start a ticket at Support Dashboard. If you have no support ticket available, you need to purchase it.
  • Page:
  • 1
  • 2

TOPIC: problem after installing JoomDOC 3 into joomla 1.7

Re: problem after installing JoomDOC 3 into joomla 1.7 12 years, 8 months ago #23656

I had to make 2 modifications:

First, define the constant J16 correctly:
\components\com_joomdoc\assets\j16\index.php, line 19
define('J16', version_compare(JVERSION, '1.6') >= 0);

Edit: Better alterantive
define('J16', JVersion::isCompatible('1.6'));


Then, in \administrator\components\com_joomdoc\tables\file.php, line 69
// OLD:
$this->_db->setQuery('SELECT `id` FROM `#__joomdoc_file` WHERE `path` = ' . $this->_db->Quote($this->path)) . ' AND `version` = ' . $version;
// NEW
$this->_db->setQuery('SELECT `id` FROM `#__joomdoc_file` WHERE `path` = ' . $this->_db->Quote($this->path));


There are still some glitches on windows systems with subfolders and directory separators in the URL.
Last Edit: 12 years, 8 months ago by asdgas.

Re: problem after installing JoomDOC 3 into joomla 1.7 12 years, 8 months ago #23658

  • enock
Thanks a lot! Now it works!

Re: problem after installing JoomDOC 3 into joomla 1.7 12 years, 8 months ago #23659

Thank you for your hard work :)

Have you made a revision update already with these changed incorporated?

thx.
  • Page:
  • 1
  • 2
User Login Empty