News:

Support for jDownloads 3 has been ended
Since 17 August 2023 Joomla.org has discontinued support for Joomla 3.x. Therefore, we will no longer offer official support for our Joomla 3 jDownloads version 3.9.x from January 2024.
Please update your website to the latest Joomla version (Joomla 4 or Joomla 5) as soon as possible. Afterwards, please update jDownloads to the latest published version. The longer you delay, the more difficult the upgrade process for your website is likely to be.

Main Menu
Support-Forum

Deprecated: Function ereg() is deprecated - [Fixed in 3.2.3]

Started by SoundHunter, 28.04.2014 22:12:32

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

SoundHunter

Hi all,

I got after a upgrade from jDownloads version 1.9.10 on Joomla 3.2 to jDownloads 3.2 the following errors (only on pages with sound files):
Deprecated: Function ereg() is deprecated in /components/com_jdownloads/helpers/jdownloadshelper.php on line 906
and
Deprecated: Function ereg() is deprecated in /components/com_jdownloads/helpers/jdownloadshelper.php on line 922
on PHP 5.3.2.

This is due changes in PHP 5.3.

Here is what I did to fix it for my installation of jDownloads:

In /components/com_jdownloads/helpers/jdownloadshelper.php change line 906 from:
                   while(ereg("^[A-Z][A-Z0-9]{3}$",$frameName=fread($fp,4))){
to:
                   while(preg_match("/^[A-Z][A-Z0-9]{3}$/",$frameName=fread($fp,4))){

In /components/com_jdownloads/helpers/jdownloadshelper.php change line 922 from:
                           if(!ereg("^T",$frameName)){// = not a text frame, they always starts with 'T'
to:
                           if(!preg_match("/^T/",$frameName)){// = not a text frame, they always starts with 'T'

Maybe this can be fixed in a next release?

Regards,

SoundHunter
  •  

Arno

Best Regards / Gruß
Arno
Please make a Donation for jDownloads and/or write a review on the Joomla! Extensions directory!
  •