branko ajzele, senior developer / project manager

Posts / Articles

Snippi.net has been reviewed (mentioned) :)

What a shock (in a positive sense) today when I saw snippi.net mentioned on SMASHING MAGAZINE’s article. I know its not much, but it makes me happy To all of the contributors of Snippi.net one BIG THANK YOU! I appreciate the snippets you posted. Hopefully others involved in learning Magento appreciate them also. I am waiting for 100 snippets to be...

Sending emails via Zend_Mail using Google email account

Here is a little (working) code example of how easy it is to send emails via Zend_Mail class using your existing Google email account. <?php   $emailSmtpConf = array( 'auth' => 'login', 'ssl' => 'tls', 'username' => 'email2@domain.com', 'password' => 'mypasshere' );   $transport = new...

Drupal Zend Framework autoloader module, ActiveCodeline_ZendFrameworkLoader

For all those poking around Drupal and Zend Framework, I wrote a little module that auto-loads Zend Framework. This module works with new Zend_Loader_Autoloader introduced in version 1.8. Therefore this Drupal module requires new 1.8 or higher version of Zend Framework library. Module is really simple, not much to it. Note that Zend Framework library it self is...

5 years of Packt Publishing

Official announcement: Celebrate with Packt as We Turn 5 Five years ago, Packt published its first book, Mastering phpMyAdmin for Effective MySQL Management. In the years that followed, Packt has published over 200 books on many different subjects and technologies. We think it’s important to take the time to celebrate and thank the people who have made...

Busy busy busy

Huh, days fly and fly. This week at work was like “damn, is it Friday already?”. I have been busy with getting on track with Adobe Flex and Action Script. Thought I might move onto something more interactive and apply that on Magento. I see some of you have joined snippi.net site. I would like to thank for all contributed code snippets so far. Hope...

Variable number of arguments is not supported for services error… Magento and Zend_AMF

Here is a little something to share with the world. Last night I was building a nice little application for Flex – AMF – Magento development. Basically it consists of Flex application from which you are calling Magento AMF server. AMF server is made as a module in Magento, with its own config.xml file, controller and model files. Basically I already...