Kategorie: Development
-
Eclipse PHP IDE Preview
von
in PHPZend provides a preview version of the upcoming PHP IDE which I mentioned in another blog entry. They provide a short introduction how to install this Eclipse extension. http://www.zend.com/de/phpide/ Update: Thanks to Martin who pointed out some installation problems (see comment), Linux users should care for the following: A package named „WST“ is needed (at…
-
SCAMP
von
in PHPApparently SCO is trying to push it’s OS with a new Product – SCAMP, a LAMP-like combination of OpenServer, Apache, MySQL and PHP/Perl. Unfortunately for them the abbreviation is already an english word. Leo says in german it’s „Schuft, Spitzbube“ as a noun and „pfuschen“ as a verb. Should this tell us anything about the…
-
September 2006: PHP IDE 1.0 release
von
in PHPOn the long term, ZendStudio will be migrated into the Eclipse platform. What a great decision. There has been a PHP IDE proposal on eclipse.org where you can also find the „PHP IDE creation review“ slides. On page 8, you can find the following timeline: March 8, 2006: Creation review March 20-23, 2006: EclipseCon April,…
-
How do you start Scrum for your PHP projects? And which PHP software to use for Scrum management
von
in PHPIn my previous blog post, I was asked how to implement Scrum in the first steps. My personal experience is that it’s better not to directly begin with all the methods Scrum provides. Scrum requires changes in your internal business processes, so it’s better to move ahead step by step instead of trying to get…
-
Leveraging Security to PHP (using sausages)
von
in PHPLet’s be honest – the guys over at bugtraq, full-disclosure and others make fun of us PHP people. Not only do we provide the dramatis personae – be it phpBB, the Nuke family or XMLRPC, we also deliver remote code execution, XSS or SQL injections right to the security peoples‘ doorstep.Why does this happen? Are…
-
Information Management at it’s best – Machen Sie Ihre Daten fit
von
in PHPInformationen sind der Kern der Entwicklung eines Unternehmens. Meist sind die wachsenden Datenmengen jedoch an verschiedenen Orten und in unterschiedlichen Formaten abgespeichert. Die Herausforderung besteht darin, diese Ressourcen zusammenzuführen, zu analysieren und einen Nutzen daraus zu ziehen. Kommen Sie am Dienstag, den 28. März 2006 nach Düsseldorf und erfahren Sie das Neueste rund um das…
-
„I’m Spartacus!“: The future of PHP – after ten years of success Zend changes the architecture of the scripting language PHP
von
in PHPImportant information: this article is the opinion of Björn Schotte in the role of the editor in chief of the PHP Magazin. I was just reading the new Computerwoche (one of the most recognized weekly IT journals in Germany) and found an article called „PHP steht vor einem Generationenwechsel“. It’s quite interesting (irony!) and I…
-
Nested input sequences with PHP5 SOAP
von
in PHPImagine you have a WebService that defines in its WSDL file the following input structure: <xsd:element name="Z_CATSIF_UPDATE_HOURS> <xsd:complexType> <xsd:all> […] <xsd:element name="DATA"> <xsd:complexType> <xsd:sequence> <xsd:element name="item" type="ZCO_CATSIF_COMM" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:complexType> </xsd:element> <xsd:complexType name="ZCO_CATSIF_COMM"> <xsd:sequence> <xsd:element name="ELEM1" minOccurs="0"> <xsd:simpleType> <xsd:restriction base="xsd:string"> <xsd:maxLength value="6" /> </xsd:restriction> </xsd:simpleType> </xsd:element> […] </xsd:sequence> </xsd:ComplexType> <wsdl:message name="rfc.Z_CATSIF_UPDATE_HOURS.Input">…