Extensions Blog
The stable release of DJ-Menu and DJ-MultiTreeMenu modules for Joomla! 1.7
DJ-Menu
Written by Administrator    Tuesday, 13 September 2011 12:22

We have just released the updated versions of our menu modules for Joomla! 1.7.

 

Changes:

- stable version!

- all php bugs removed

- meets PHP Strict Standards (version for Joomla 1.6+)

- improved tree mechanism (DJ-MultiTreeMenu)

 

To update from previous version just overinstall the package.

 
Updated version of DJ-Image Slider module (1.3.0 RC4) for J!1.6
DJ-Image Slider
Written by Szymon Woronowski    Wednesday, 29 June 2011 10:25

We have just released the updated version of DJ-Image Slider module for Jommla!1.6.

 

Changes:

- fixed: links structure with SEF enabled

- fixed: messages on the front-end

 

To update from previous version just overinstall the package.

 
Updated Version of DJ-LikeBox (v1.6.2) released!
DJ-LikeBox
Written by Szymon Woronowski    Wednesday, 29 June 2011 10:20
This DJ-LikeBox version is just fixed installation package of v1.6.1.

 

To update from previous version just overinstall the package and save the module parameters.

download

 
Updated Version of DJ-LikeBox (v1.6.1) released!
DJ-LikeBox
Written by Szymon Woronowski    Wednesday, 22 June 2011 13:35

We have just released the updated version of DJ-LikeBox.

 

Changes:

- added the possibility to add custom css styling for Like Box
- updated facebook like box parameters

 

To update from previous version just overinstall the package and save the module parameters.

download

 
DJ-Menu (1.6.0 RC3) and DJ-MultiTreeMenu (1.6.0 RC2) updated for J!1.6
DJ-Menu
Written by Szymon Woronowski    Thursday, 02 June 2011 11:29

We have just released the updated version of our menu modules for Jommla!1.6.

 

Changes:

- Separator is unclickable now

- fixed afterDJMultiTreeMenuHide and afterDJMenuHide functions call

 

You can find more about these modules here:

dj_menu_mdj_multitreemenu_m

 
Updated version of DJ-Image Slider module (1.3.0 RC3) for J!1.6
DJ-Image Slider
Written by Szymon Woronowski    Tuesday, 12 April 2011 13:59

We have just released the updated version of DJ-Image Slider module for Jommla!1.6.

 

Changes:

- fixed: translation for frontpage messages and 'read more' button

- fixed: image extensions can be write capitalise

 

To update from previous version just overinstall the package.

 
DJ-Menu and DJ-MultiTreeMenu updated for J!1.6
DJ-Menu
Written by Administrator    Thursday, 03 March 2011 12:03

Just to let you all know, we've recently updated and released our menu modules for Joomla 1.6. 

You can find more about them here:

dj_menu_mdj_multitreemenu_m

 
Updated version of DJ-Image Slider component (1.2.2)
DJ-Image Slider
Written by Administrator    Thursday, 17 February 2011 16:28

We have just released the updated version of DJ-Image Slider component.

 

Changes:

- fixed: warnings above parameters in slide edit form

 

To update from previous version just overinstall the package.

 
Updated version of DJ-ImageTabber module - (1.1)
DJ-Image Slider
Written by Administrator    Tuesday, 15 February 2011 15:34

We have just released the updated version of DJ-ImageTabber module.

 

Changes:

- fixed: article link and description when selected article is not assigned to any menu item.

- added: all external slide links will open in new window

 

To update from previous version just overinstall the module.

 
Updated Version of DJ-Classifieds (1.1.2)
DJ-Classifieds
Written by Łukasz Ciastek    Friday, 28 January 2011 12:19

DJ-Classifieds minor update available .

 

Changes:
- Fixed: adding menu item in menu manager

- Fixed: friendly link bugs
- Fixed: promotion parameter.

Update from version 1.1.1 - just overinstall the package.
Update from version 0.9 - read the details here: http://dj-extensions.com/extensions/dj-classifieds.html

 

 
Updated Version of DJ-Catalog2 - (2.01)
DJ-Catalog2
Written by Administrator    Monday, 28 June 2010 09:52

We have just released the updated version of dj-catalog2 .

Changes:
- Spanish language added  - translated by "azorko" (http://dj-extensions.com/forum/memberlist.php?mode=viewprofile&u=172). Thank you!
- Fixed minor bugs with images, css and js on Windows servers
- Parameters window in Joomla backend was shortened -users with small screens were complaining about lightbox not fitting

Update from version 2.0 - just overinstall the package.
Update from version 1.2 - read the details here: http://dj-extensions.com/dj-catalog2/

 
DJ-Catalog 2 Released!
DJ-Catalog2
Written by Administrator    Tuesday, 22 June 2010 14:13

The DJ-Catalog 2 extension is released! Try out the new version of a popular component and discover the many new features it provides.

 
DJ-Classifieds Update
DJ-Classifieds
Written by Administrator    Thursday, 10 June 2010 11:57

We have updated our classifieds extension.

The update contains:

- antispam protection for sending notifications by unregistered users

- solved bug with "ask a seller" button in IE browsers

- new option in parameters allows you to set the maximum amount of messages that can be sent by a user ,and how often user can ask a question to particular classified

Installation instructions:

- the file is full component installer

- install it as normal extension

- do NOT uninstall previous installation (the new package upgrades the files so all your classifieds remains)

 

DOWNLOAD THIS UPDATE

 

 
Vulnerability Fix
DJ-Classifieds
Written by Administrator    Tuesday, 04 May 2010 11:44

As reported at:

http://www.securityfocus.com/bid/39858

There was a vulnerability issue in our new dj-classifieds extension.

This was already fixed.

New version is available to download here: dj-classifieds-0.9.2.

 

If you're already using dj-classifieds extension you can fix the issue manually:

 

In file components/com_djclassifieds/controller.php
near line 428 replace:

for ($i = 0; $i < count($pliki['name']); $i++)
{
if (substr($pliki['type'][$i], 0, 5) == "image")
{
$nazwa = md5(microtime()).$pliki['name'][$i];;
$images .= $nazwa;
$images .= ";";
$sciezka = JPATH_BASE."/components/com_djclassifieds/images/".$nazwa;
move_uploaded_file($pliki['tmp_name'][$i], $sciezka);
$this->makeimg($sciezka);
if ($i == 0)
{
$this->makeimg_s($sciezka);
} //tylko dla pierwszego obrazka miniaturka
}
}

to:

for ($i = 0; $i < count($pliki['name']); $i++)
{
if (substr($pliki['type'][$i], 0, 5) == "image")
{
$s_f = getimagesize($pliki['tmp_name'][$i]);
if(is_array($s_f) && $s_f[0] > 2){
$nazwa = md5(microtime()).$pliki['name'][$i];;
$images .= $nazwa;
$images .= ";";
$sciezka = JPATH_BASE."/components/com_djclassifieds/images/".$nazwa;
move_uploaded_file($pliki['tmp_name'][$i], $sciezka);
$this->makeimg($sciezka);
if ($i == 0)
{
$this->makeimg_s($sciezka);
} //tylko dla pierwszego obrazka miniaturka
}
}
}