News Feed
Jobs Feed
Sections




News Archive
feed this:

Community News:
ZendCon Keynotes Live Stream
October 23, 2012 @ 08:27:35

If you weren't able to make it to this year's ZendCon conference (happening right now in Santa Clara, CA) you can at least get a little taste of it though their live video stream of the keynotes.

There's five sessions they'll be sharing via the stream starting today and running through the 25th:

  • Opening Keynote - Andi Gutmans (Zend)
  • Open Source Cloud Technologies - Jimmy Guerrero (Red Hat, Inc.), Adrian Otto (Rackspace) and Peder Ulander (Citrix Systems)
  • The Media Industry and Moving to PHP - Raghu Bala (Source Interlink), Brent Pearson (UBM Technology)
  • PHP in the Cloud: Choice, Scale, Code, Simplify - Simone Brunozz (Amazon Web Services)
  • Zend Framework 2 - Practical Experience from the Trenches - Matthew Weier O`Phinney (Zend Technologies), Shawn Stratton (Discovery Communications, Inc.), Evan Coury (SouthwestMedical.com) and Mike Willbanks (CaringBridge)

The Opening Keynote starts at 8:30am PDT, so keep your eyes here for that broadcast.

0 comments voice your opinion now!
zendcon12 live stream keynote broadcast conference


DevHell Podcast:
Episode 13 #tek12 or Something. I Don't Know
June 04, 2012 @ 10:19:50

The Dev/Hell podcast (as hosted by two PHP community members, Chris Hartjes and Ed Finkler) has posted their latest episode - Episode 13: #tek12 or Something. I Don't Know. (This episode was recorded live at this year's php|tek conference.)

This episode was recorded at the tek12 uncon in front of a live studio audience. We talk about pair programming, what we'd recommend to folks who want to start programming, the PHP-FIG & PSRs, and our favorite events from tek12. Also Chris punched Ed a couple times. It hurt. Video hosting for this episode is provided by WonderNetwork, who generate some really cool ping data. This was lots of fun, and we want to thank all the folks who came out and participated.

You can listen to this latest episode in a few different ways - using the in-page audio player, downloading the mp3, subscribing to their feed or grabbing the video of the live recording.

0 comments voice your opinion now!
devhell podcast tek12 live video recording


PHPClasses.org:
Participate in the Lately in PHP podcast in Video with Google Hangouts
April 25, 2012 @ 12:25:15

PHPClasses.org is trying something new with their "Lately in PHP" podcast for this latest episode - they want you to be a part of it via a Google hangout.

The Google Hangouts On Air edition is not yet generally available to all Google+ users. However, thanks to the guides of the Google Top Contributor program, on which I have the pleasure and the privilege to participate, this feature was enabled on the PHP Classes site Google+ account. Therefore, starting the next episode, we are going to try recording the Lately in PHP podcast using the Google Hangouts On Air. This is still an experimental idea, but if all goes well, all the upcoming podcast episodes will be recorded this way.

Instructions are included in the post if you'd like to participate in the upcoming episode (recording time is yet to be determined).

0 comments voice your opinion now!
latelyinphp podcast google hangout live recording participation


Community News:
EngineYard Hosts "Future of PHP" Live Panel - "PEAR & Pyrus"
November 07, 2011 @ 13:09:35

EngineYard, a company that recently merged with the PHP platform as a service provider Orchestra.io, has a new live panel podcast about the Future of PHP, specifically involving PEAR and Pyrus.

If you are a PHP developer using PEAR and Pyrus, we invite you to join us this week as we explore the future of PEAR and Pyrus. We'll be discussing issues such as where PEAR/Pyrus will be going in the next few years, what obstacles may be on the horizon, and how they're going to get where they're going.

The live panel, hosted by Elizabeth Naramore, will include experts from the two projects: David Coallier (President), Helgi Þormar Þorbjörnsson, Brett Bieber, and Till Klampäckel. There's still time to sign up to attend - the show happens on November 17th. To put your name in to be a part of the event, fill in the info here and you'll be sent more information about attending.

0 comments voice your opinion now!
podcast live panel pear pyrus futureofphp engineyard


DZone.com:
PHP UML generation from a live object graph
May 11, 2011 @ 10:19:47

On the PHP On Windows section of the DZone.com site Giorgio Sironi has a new post looking at the process (and script he's created) to create a UML diagram with PHP from a project's current class structure.

Sometimes you need to share a design with your colleagues. You can walk him through the code, and explain which classes and interfaces you created, but there are higher abstracted models that you can show to him to make him grasp the picture quickly. One of these tools is UML, and in particular class diagrams.

His script creates a UML diagram from a PHP object graph, a sort of "reverse engineering" of the current object's hierarchy and relationships. It creates definitions that Yuml.me can use to generate the image and does some handy things like following the path down N levels until it hits "the bottom" and the ability to ignore certain namespaces (like "Zend_" or "Doctrine_") to help limit things down to just your application. He includes a sample set of tests to show it in action as well as a resulting UML diagram generated from the PHPUnit structure.

0 comments voice your opinion now!
uml generate github object live graph


Community News:
PHP Community Conference Live Video Stream
April 21, 2011 @ 09:56:17

If you weren't able to make it to the PHP Community Conference, you're in luck! They're providing a live video stream from the event on OpenEvent.tv.

Check out today's schedule for more information what the sessions are and summaries of what they're about. This morning's sessions are tutorials from Lorna Mitchell (web services) and Matthew Weier O'Phinney (Mastering Zend Framework 2 Patterns).

You can also follow the official conference twitter account at @phpcomcon for the latest updates.

0 comments voice your opinion now!
phpcomcon11 community conference live video stream openeventtv


php|architect:
Live! in Austin - Introducing in-person training from php|architect
April 06, 2011 @ 10:18:40

php|architect, the people behind the php|tek confernece, have announced a new training event they're holding in Austin to help you hone your OOP skills in a day-long class.

On Tuesday we launched a new initiative called php|architect Live! - a full-day, in-person training course that gives you practical and in-depth knowledge of a specific topic. But there is more: we don't want our Live! events to be "just training courses." We want them to be intimate learning experiences.

As mentioned, their first event happens in Austin on April 20th and will be taught by Keith Casey. The number of seats is limited (20) so if you're interested, check out the tickets page for a more detailed explanation of the class and to get your tickets ($250 USD).

0 comments voice your opinion now!
phparchitect training oneday austin keithcasey live


Gonzalo Ayuso's Blog:
Live video streaming with PHP
September 20, 2010 @ 08:46:06

In a new post to his blog today Gonzalo Ayuso talks about video streaming and PHP. Well, okay, not so much using PHP for playing the video, more for the security and streaming around the streaming feeds.

For example we want to show videos only to registered users based on our authentication system. Imagine we're using sessions for validate users. That's means we cannot put the media in a public folder and point our media player to those files. We can obfuscate the file name but it'll remain public. In this small tutorial We're going to see how to implement it with PHP.

Since the video stream he wants to deal with is a live one (and not a single video file that can be read all at once) he shows how to use the output buffering functions in PHP to output small chunks of the data at a time with the correct headers attached.

0 comments voice your opinion now!
video stream live feed tutorial output buffer


ServerGrove Blog:
Implementing a staging/live website system with symfony and Apostrophe CMS
September 16, 2010 @ 12:06:17

On the ServerGrove.com blog today there's a new tutorial posted showing how to, using symfony and the Apostrophe CMS, create a full staging and live setup with different URLs for each.

This system allows you to make changes to a website and preview them before actually going live. It can be implemented with any website, we will show the necessary requirements and steps to implement with symfony and Apostrophe CMS, but you can also take parts of the tutorial and implement them without these applications. We have found this workflow suitable in a number of projects and wanted to share it.

The process can be modified to fit the needs of your symfony application (or really any app with enough tweaking) since it uses several "off the shelf" tools like Apache, PHP, symfony, Gearman and Supervisord. The sfSyncContentPlugin plugin is a bit more specific to Apostrophe, though. They walk you through the integration of all of the tools - starting up Gearman and Supervisord, making a worker and setting up your symfony configuration to have a "publish" route to set things in motion.

0 comments voice your opinion now!
symfony apostrophe cms gearman supervisord staging live content migration


Godaddyhostingreview Blog:
How to move Magento from Production to Live Server
July 05, 2010 @ 10:47:26

Setting up and using the Magento e-commerce application can be a difficult process in itself, but when you start moving things around from server to server, things can get even more complex. In this new post from the Godaddyhostingreview blog they talk about moving a Magento instance from your local install out to a live site.

This is the method I used to move my local copy of magento store from WAMP on windows to a shared hosting account. In my case am using magento1.3.x.

The instructions are detailed right down to which configuration values to change, how to update your database for the move, what will need to be removed before you and push everything over. There's even a bit of instruction on what to change if your database structure is slightly different.

0 comments voice your opinion now!
magento move tutorial production live server



Community Events









Don't see your event here?
Let us know!


object database language phpunit zendframework2 community example framework introduction opinion release code podcast unittest tool development api interview composer testing

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework