SugarCRM SOAP server and ASP client

Yesterday I tried to implement a creation of new lead via ASP web site. I’m a Linux geek. So, my colleague assisted me on ASP side. First of all, I was pleasantly surprised that SugarCRM provides WSDL to build SOAP client. It isn’t so important in case Perl or even Java (this is amazing) but it’s impossible to create SOAP client on ASP without WSDL […]

Read Me Leave comment

More Advancements in Perl Programming

Simon Cozens is an author more than 90 CPAN modules and second edition of Advanced Perl Programming published an article on Perl.com where he gave some significant additions since first edition. The most interesting for me in this article was a mention about module Class::Accessor. I use Class::DBI for a long time. It lightens the routine work when you need to develop some classes which […]

Read Me Leave comment

Breadcrumb Navigator added to the repository

This morning I received email from Matt with URL of Breadcrumb Navigator repository. I added my plugin there and now you can see its source via Trac: breadcrumb-navigator. I have some ideas how to improve it. Hope they’ll be implemented soon 🙂

Read Me Leave comment

The first Worpress plugin

Yesterday I released my first WP plugin – Breadcrumb Navigator. It simple adds breadcrump menu for taken up pages. You can see this plugin in action here. I’d like to add Breadcrumb Navigator to WP plugins repository but Matt who is responsible to grand access didn’t answer me yet. When I developed the plugin I was implressed by WP structure and documentation. It’s amazin! To […]

Read Me Leave comment

RSS forever

I use RSS feeds to read information interested for me. I have 128 active feeds on Bloglines. Sure it’s not absolute record 🙂 But it’s greater then average statistical result. Moreover the number of my feeds grows day by day. So, today I subscribed on RSS feeds from job.perl.org. There are five different kinds of feeds: whole list of new jobs, mod_perl jobs, Mason jobs, […]

Read Me Leave comment

Perl Oneliners: rename files

Image you have some files in the directory. You heed to rename them added some prefix. This is a simple Perl code can do it: find . | Perl -ne ‘chomp; next unless -e; $oldname = $_; s#\./(.+)#prefix_$1#; next if -e; rename $oldname, $_;’ Let’s see what we do. First of all we get a list of files using command find and pass it to […]

Read Me Leave comment

Happy Birthday PERL!

The first version of Perl was released 18 years ago – 18 December 1987! I work with Perl more than 5 years and I’d like to say it’s the best programming language (IMHO). Thanks a lot to Larry Wall for this perfect thing, thanks a lot the best Perl community Perlmonks for advance of Perl, thanks a lot to all Perl developers!

Read Me Leave comment

SugarCRM: upgrade wizard

Today I decided to use SugarCRM upgrade wizard (which exists since version 3.5) to setup a new language pack. During uploading the language pack archive I got an error message: Abort pclzip.lib.php : Missing zlib extensions The problem was in absence of zlib – PHP extention which processes ZIP files. To add this feature PHP should be recompiled with option ‘–with-zlib’. I had PHP 5.0.4 […]

Read Me Leave comment