Lyften Bloggie - Some minor PHP 5.3 and js errors - Forums

Items per page:

Showing 1-3 of 3 items

Hi Lyften - What a great and feature rich extension! Kudos.

Noticed some errors related to deprecated functions in PHP 5.3.x

In administration/Dashboard it gives a deprecated error for split() administrator\components\com_lyftenbloggie\libraries\magpierss\rss_parse.inc on line 153
list($ns, $el) = split( ':', $element, 2);
Change to preg_split or explode?
list($ns, $el) = explode( ':', $element, 2); (works)

In frontend blog main view it gives a deprecated error for ereg_replace()
components\com_lyftenbloggie\helpers\helper.php on line 472
$link = ereg_replace('^-','', $link);
Change to preg_replace or str_replace?
$link = str_replace('^-','', $link); (works)

Those above errors obviously not are shown when switching to PHP 5.2.x

Then there was a js error when trying to save new category in backend.
Meddelelse: 'tinyMCE.get(...)' er null eller ikke et objekt
Linje: 198
Tegn: 3 Kode: 0
URI: http://localhost/1515test/administrator/index.php

PS.: When writing this forum entry, using IE8, I had to first choose hmtl source, because for some reason text field
 not active for that browser.

Keep up the good work. Quite impressive first release.

Errors have been fixed, thank you for bring them to my attention.

Update: http://www.lyften.com/products/brezza/download/id-6.html

I couldn't find the JS error with 'tinyMCE.get(...)'

 

-Daniel

"I couldn't find the JS error with 'tinyMCE.get(...)'"

Yes, can see its not an issue with current 1.5.14 stable. Only happens testing on 1.5.15 test version and at latest SVN with latest fixes to TinyMCE and more. At 1.5.14 categories can actually be saved/applied without issues.
Noted, so that we can do an extra check if fixes made could introduce issues for 3pds. Smile

Items per page:

Showing 1-3 of 3 items