PhpEd vs Zend Studio

Original post provide by Core PHP

Many years ago I bought version 3 of Nusphere’s PhpEd. To cut a long whine short, I was sorely disappointed with it. It was full of bugs and couldn’t do some of the most basic tasks. I complained, didn’t get very far, and dropped it and some months later moved onto the Zend IDE instead. I used this for years, and while it had flaws, it also had just about the right level of features for me.

A few months back Nusphere emailed me to say that version 4.6 of PhpEd was out, and did I want to trial it. I figured what the heck, and here is what I found out when you compare the two …
Continue reading “PhpEd vs Zend Studio”

Previous Articles:
ASP.NET 2.0: A Getting Started Guide
Join Cristian and Zak on this eventful ride: you'll tame the installation process, sink your teeth into two ASP.NET languages, and conquer .NET programming basics with your bare hands. Finally, you'll pull server controls, user controls, master pages, and CSS into the beginnings of an application that will see you land safely - and without casualties - at the start of a brilliant career in ASP.NET programming.
PHP Conference Brasil 2007
This year's conference will have room for 1000 people. Its scheduled for tutorials of 3 hours, aside of speeches, cases, stands and a great catch up time for newbies and veterans. Visit the website for more details. Early registration with discounted price is available until November 9th.
DC PHP Conference 2007 : Call For Papers
Present your technical concepts, cutting edge applications, or business applications for an opportunity to showcase your ideas in the PHP community. Please submit an abstract for consideration. All abstracts submitted on or before July 22, 2007 will be considered.
Easy Reflections
You can use it to give your site that 'iTunes / Apple' look if you so desire. I created it to make image uploads to a site I run look that little bit nicer, so figured I would share it with you all.
Time Flies When You're Having A Son
The reason for this is that shortly after the last post I made my wife gave birth to our first child, a boy that we named Thomas. As any parent will tell you, the first few months are hectic!
More Articles:
Avoiding The 5 Most Common SEO Mistakes
Are your SEO efforts hampered by any of the 5 most common SEO mistakes? They're not difficult to rectify ... once you know what they are! Johnathon explains them clearly, and shows you how to correct them, in this hands-on tutorial.
(PHP) Entwicklungsumgebung Unter Windows
Die Konfiguration für LightTPD findet man anschliessend unter '/etc/lighttpd/lighttpd.conf' und könnte wie folgt aussehen: # default document-root server.document-root = "/data/www/htdocs" accesslog.filename = "/var/log/lighttpd/access.www.log" server.port = 81 $SERVER["socket"] == "127.0.0.1:80" { server.username = "nobody" server.groupname = "nogroup" server.errorlog = "/var/log/lighttpd/error.www.log" fastcgi.server = ( ".php" => (( "host" => "127.0.0.1", "port" => 1026, #"socket" => "/tmp/php-fastcgi.socket", "bin-path" => "/usr/bin/php", "bin-environment" => ( "PHP_FCGI_CHILDREN" => "4", "PHP_FCGI_MAX_REQUESTS" => "100" ), "bin-copy-environment" => ( "PATH", "SHELL", "USER" ), "broken-scriptfilename" => "enable" )) ) # configure server $HTTP["host"] == "localhost" { simple-vhost.server-root = "/data/www/" simple-vhost.default-host = "localhost" simple-vhost.document-root = "/htdocs/host/" } server.document-root = "/data/www/htdocs/host/" } # index filenames index-file.names = ( "index.php", "index.html", "index.htm", "default.htm" ) # selecting modules server.modules = ( "mod_rewrite", "mod_auth", "mod_access", "mod_accesslog", "mod_fastcgi", "mod_redirect", "mod_simple_vhost" ) # disable directory listings server.dir-listing = "disable" # mime types mimetype.assign = ( ".pdf" => "application/cation/pdf", ".ps" => "application/postscript", ".gz" => "application/x-gzip", ".pac" => "application/x-ns-proxy-autoconfig", ".swf" => "application/x-shockwave-flash", ".tar.gz" => "application/x-tgz", ".tgz" => "application/x-tgz", ".tar" => "application/x-tar", ".zip" => "application/zip", ".mp3" => "audio/mpeg", ".m3u" => "audio/x-mpegurl", ".wma" => "audio/x-ms-wma", ".ogg" => "application/ogg", ".wav" => "audio/x-wav", ".gif" => "image/gif", ".jpg" => "image/jpeg", ".jpeg" => "image/jpeg", ".png" => "image/png", ".xbm" => "image/x-xbitmap", ".xpm" => "image/x-xpixmap", ".xwd" => "image/x-xwindowdump", ".css" => "text/css", ".html" => "text/html", ".htm" => "text/html", ".js" => "text/javascript", ".dtd" => "text/xml", ".xml" => "text/xml", ".mpeg" => "video/mpeg", ".mpg" => "video/mpeg", ".mov" => "video/quicktime", ".qt" => "video/quicktime", ".avi" => "video/x-msvideo", ".asf" => "video/x-ms-asf", ".asx" => "video/x-ms-asf", ".bz2" => "application/x-bzip", ".tbz" => "application/x-bzip-compressed-tar", ".tar.bz2" => "application/x-bzip-compressed-tar" ) Da unter Windows fastCGI nicht über Sockets funktioniert, muss es über TCP durch Angabe der Parameter Host und Port konfiguriert werden.
Google Summer Of Code: Php.net Students
The PHP team is once again proud to participate in the Google Summer of Code. Ten students will "flip bits instead of burgers" this summer: Zend LLVM Extension by JoonasGovenius, mentored by NunoLopes PHP Optimizer by SamuelGraham Kelly IV, mentored by DerickRethans PhD Improvements and Updates by NicholasSloan, mentored by HannesMagnusson Replace auto with CMake by Alejandro LeivaRojas, mentored by Pierre A.Joye gsoc:2008 - XDebug by Chung-YangLee, mentored by DavidCoallier Rewrite the run-tests.php script by CesarMontedonico, mentored by TravisSwicegood PHP Bindings for Cairo by AkshatGupta, mentored by AnantNarayanan Algorithm Optimizations by MichalDziemianko, mentored by ScottMacVicar PECL, Website Improvements by BarryCarlyon, mentored by Helgi ÞormarÞorbjörnsson Implement Unicode into PHP 6 by Henrique do NascimentoAngelo, mentored by ScottMacVicar
In Praise Of Zend Core
The latest versions install PHP 5.1.6. The little known secret is that these 2 installers are perfect for MySQL as the mysql and mysqli extensions are included in the release. Zend Core is the installer I would recommend to setup PHP in a Windows IIS environment because it has support for FastCGI with IIS.
ASP.NET Graphs: Raise The Bar
If you use static images to present graphs and charts online, now's the time to make your efforts more dynamic. In this results-focused tutorial, Pat explains how easy .NET makes the dynamic generation and display of bar charts online.

Leave a Reply