Tag Archives: development

Inchoo Demostore extension

Inchoo Demostore extension

kikashi@sxc.hu

In my last project, during development of API extension for Mageboard application, when started to develope Apple Push Notifications Services integration, one problem came out that took me too much time each day to solve: Push notifications are supposed to be active only if some new order and/or customer is made on site.

So if there are no constant new orders and/or new customers, I can not test my APNS integration. Read more

0

Magento with xDebug, web services API and testUnit

Featured Image

Merreper@sxc.hu

Using xDebug from NetBeans is pretty straightforward and after installing xDebug from their website does not require some special configuration in order to make it work.
If you visit the link above, you will notice that it’s enough to paste the source code of your phpinfo() and you will get directions what xDebug binary to download and how to set it. Read more

0

Magento API V2 Soap unit testing

Featured Image

flaivoloka@sxc.hu

In previous article, I wrote about setting up environment for Magento unit testing. Let’s expand our tests to test some Magento’s API calls with soap. Read more

0

Magento learning – developer’s first touch

Featured Image

svilen001@sxc.hu

Hello everybody! Hello whole Magento community!

Until now i wrote articles most about Symfony2 and some about Android platform. Someone somewhere said: “man has got to do what men has got to do … “ and of course, the time for me to swim in Magento’s waters has came too … :-) Read more

1

Android – playing with separate threads

Featured Image

shho@sxc.hu

This time, I played a little with Threads and I tried to implement somekind of simple-test separate thread and start it inside main activity and also return results from separate Thread so it can be used to update UI for example. Read more

2

Configuring Magento for development

Featured Image

New to the Magento or just used to doing things one way? Here are few tips for configuring Magento for development, in case you overlooked them. Please note, the more proper title of this article would be something like: Configuring Magento for development on local machine (after installation config). Meaning the tips outlined here only apply after the Magento is already installed. Read more

7

Creating simple Symfony2 service

Featured Image

I am not talking about web services, but I am talking about symfony2 service container and the way of basic creating services inside Symfony2 project that are accessible from all other bundles via service container.

Why do I need to make some part of code like service inside Symfony2 anyway?

There is one possible problem: Read more

7

Creating your own web shop – Part 1: Where to start

Featured Image

Creating your own web shop can be a tedious task, both technically and time consuming. Not to mention there are tens of quality PHP based web shop systems out there available for free. One of the best if you ask me is Magento, which exceeds the term web shop system by even bigger term “platform”. However, regardless of how some much a given system/platform is feature rich there are always those special clients with special requests which exceed the possibilities of even the mightiest eCommerce systems/platforms out there. Read more

4

Doctrine DBAL with Symfony2

Featured Image

I regularly use Doctrine ORM for database operations in my Symfony2 project, but there was one situation that I had to write database importer from SQLITE database into projects Mysql database. Importer should run only once and I didn’t want to make new entity classes for importer, but just make code to work while import is not finished. Read more

2

Symfony2 writing data-fixtures

Featured Image

In last article about fixtures I wrote about manual setup for using data-fixtures with your Symfony2 project.
Now it’s time to write first data fixture. Read more

0