A sample text widget
Etiam pulvinar consectetur dolor sed malesuada. Ut convallis
euismod dolor nec pretium. Nunc ut tristique massa.
Nam sodales mi vitae dolor ullamcorper et vulputate enim accumsan.
Morbi orci magna, tincidunt vitae molestie nec, molestie at mi. Nulla nulla lorem,
suscipit in posuere in, interdum non magna.
|
Saturday I took the Zend Framework certification exam and I passed !
I’m quite proud of it, as I started working with zf not long ago and at the moment, according to zend yellow pages, there are only 10 developers in the UK holding both zend certifications.
Being able to use all the modules helps [...]
XDebug is a free PHP extension to debug variables of your applications. Combined with Netbeans for PHP debug features (break points, variable watching and flow execution navigation, see screenshot on the left), it allows to have a complete debug environment.
What it’s really interesting is the possibility to place breakpoints in any file, even [...]
WordPress supports metaWeblob API standard to post data into the blog from an external service.
WordPress contains xmlrpc.php [source], that is basically a XML RPC server that can be called from a client that posts XML RPC messages.
See here the wordpress codex guide.
Sending XML message is a task very easy with zend framework [...]
SVN supports external definitions.
Basically, it allows to map a subdirectory of our SVN working copy to an URL of another SVN repository. See the link above for more details.
That’s can be useful for example to mount zend framework libraries in our repository, in order to have a smaller and faster svn as well [...]
Zend Framework is decoupled, so it’s possible to use only the needed features.
I had to improve the performances of an old site, with no cache at all. Changing all the database/file_get_contents requests would have been a long process, so I decided to enable the cache of the web pages with Zend Framework FrontEnd Page [...]
Getting caching objects if a fairly frequent task when dealing with performative web applications.
Standard approach
if (cache object is valid) { return cached object } else { get fresh object (*) save object into cache return object }
I don’t like that approach as there are a lots of LOC that wraps the only [...]
I’ve recently made extensible Zend Framework libraries for admin scaffolding [click to go to the page with details and download link], that is the automatic creation of CRUD forms. Differently from Symfony admin generator, Code Igniter and CakePHP, on ZF there is nothing similar already made EDIT: Of course there are other frameworks to scaffold [...]
Netbeans 6.9 modifies the zend framework tool and adds an additional class in order to use it directly from the IDE.
The problem is that Netbeans changes the common INI file of the tool (.zf.ini placed inside the user folder). Without specifying additional parameters, the tool does not work anymore from the external command line.
[...]
Zend_Cache is a versatile generic Zend Framework component to manage cached data. The cached objects are saved and retrieved with an ID (string) or a list of tags.
[...]
In this post, an overview of Zend routing [official doc] and how set custom rule for routing (tested on Zend v1.10).
[...]
|
|