24
Wed, Apr
0 New Articles

Practical Linux: P Is for PHP

Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

P stands for PHP, the programming language of LAMP.

Two earlier articles of this series (here and here) walked you through the first two videos from Catherine Gaughan-Smith's fantastic tutorial series on installing a virtual Ubuntu LAMP stack. The third video in her series walks you through configuring both PHP and MySQL. These are both relatively large, important steps that most of us green-screen folks have never even had to think about, so I'm going to devote one article to each step. Today, we focus on configuring PHP.

PHP: The ILE of the LAMP stack

Well, not really, since it's just one language. But it's very similar: on the IBM i, we write programs using ILE languages, and on Linux (and specifically in configurations based on the LAMP stack), we use PHP. If you're serious about learning about the world of LAMP stacks and web serving in the Linux world, you're going to have to become proficient with PHP.

One problem with learning PHP is having an environment to work with. You can find PHP hosts on the web or, as I just mentioned, you can even install PHP on the IBM i, but in those cases you are sort of at the mercy of whoever installed and is currently managing the PHP environment. In fact, that was one of the primary motivations for me for this entire series of articles: I wanted my own PHP environment that I could play with without having to worry about any limitations. At the same time, I didn't want to take a chance of blowing up my home machine, so until now PHP has been just sort of an intellectual curiosity for me. But once I realized that I could create a virtual machine that would entirely insulate my Windows environment from my Linux work, then suddenly PHP became a reality.

Back to the Tutorials!

And that brings us back to Catherine Gaughan-Smith's third video. In this 16-minute piece, Catherine walks you through the basic configuration of both PHP and MySQL on the virtual LAMP machine she helped you create in the first two videos. Today I'll guide you along the first ten and a half minutes, which focus solely on PHP. The rest of the video centers on MySQL and, since my path of using Eclipse PDT diverges quite sharply from hers, I'm going to leave that part of the tutorial to the next article.

The basic outline of the PHP portion consists of roughly eight parts. The first 30 seconds are a recap and a reintroduction to her Mac-based SSH terminal. She also mentions the PuTTY application for Windows, but if you've been following along, you know I use Eclipse PDT instead. I'll review that later. Continuing on with the video, she next uses the native Linux editor nano to create an introductory PHP page and show it in the browser via the Apache server. We'll do the same, but in PDT. Next, she creates an error page as part of a larger effort to improve PHP error reporting, which is especially important in a development environment. Catherine creates an error page, ending at the 3:00 mark, and then introduces you to the PHP configuration files, which takes you to 4:00. Next, she walks you through configuring the PHP environment using a custom configuration file. She uses nano, but as I explained in the previous article, we'll use the vi editor via the terminal view in PDT. Catherine then creates a log file in the standard Linux log folder, /var/log, taking you to the 7:00 mark. The next two minutes, to 9:00, focus on enabling some additional PHP files. The final portion of the video that I'll be concentrating on in this article, up to 10:30, simply shows the result of the error configuration that we did in the earlier steps. This leaves us with a working PHP environment that just needs a database to complete the installation.

Adapting to Our PDT Environment

If you've been working with these articles, you know that one of the biggest differences between Catherine's videos and my project is that, while Catherine works from tools on her Mac desktop, I instead use the Eclipse PHP Development Tools (PDT) as my IDE. The goal was to be able to do all my development work within a single platform-independent environment. PDT addresses those needs very well. And also, it's free, which is another project requirement. However, that means that in some places we have to do things a little differently, and this part of the article identifies where we diverge.

It starts pretty quickly. The first thing Catherine does is create an introductory page in PHP. Not exactly a Hello World page, the info.php page uses a standard PHP function to dump a whole bunch of very useful information about the PHP environment. Catherine uses her Mac-based SSH terminal program to do this, but we'll do it using PDT. These next steps are, in fact, one of the major reasons that I went in this direction. In a previous life, I spent a lot of time writing UNIX code and in so doing grew to really dislike the constant switching from one folder to another. UNIX experts can do this almost without thought, but not being a UNIX expert, I find myself flailing around from directory to directory using the cd and ls commands like a white cane to see where I am. So, the first thing Catherine does is change her current directory to one called /var/www/html. The Linux-literate will immediately recognize that folder, but for you and I it's just a bit of word salad. It turns out this tends to be the standard root of an Apache web server in Linux, and so is a well-known folder name. To me, it's sort of like knowing that QUSRWRK is the primary subsystem for many IBM i services or that QGPL is the default folder for temporary objects. In any event, if you plan to do web development from the command line in Linux, you'll want to remember that folder name because you'll be there all the time.

But I have a trick up my sleeve! I’m going to use PDT, and I'm going to create something called a filter, which will act as an easy shortcut for me to get to that folder and the files within it. Let's do that, shall we?

Practical Linux: P Is for PHP - Figure 1 

Figure 1: Expand the Sftp Files entry under your SSH connection.

From previous articles you should already have an SSH connection to your test machine, which in my case I called Test 1. Under that connection should be an entry for Sftp Files. If you have that, you can expand it and you'll see two default entries, one for My Home, which is the home directory for the user you used to log into the server, and Root, which is the root of the entire machine. You have access to all of this because you should have logged on with the administrator profile you created all the way back in the first article. Specifically in the article on Apache, we used this technique to drill all the way down into the /var/www/html folder to create a new index.html page.

We could do that again, but if you recall, it was a little cumbersome. Instead, we want to be able to get to the /var/www/html folder quickly. To do that, we create a filter.

Practical Linux: P Is for PHP - Figure 2 

Figure 2: Create a filter using the context (right-click) menu from the Sftp Files object.

Practical Linux: P Is for PHP - Figure 3 

Figure 3: Enter the folder name /var/www/html and leave the rest of the defaults.

Practical Linux: P Is for PHP - Figure 4 

Figure 4: You may want to override the default with something more meaningful.

It's straightforward. Right-click on the Sftp Files object and select New > Filter… from the context menu. On the first dialog, enter the fully qualified name of the folder you want to access, and hit Next. The second dialog will default the filter's name to the last folder in your fully qualified name (that is, for /var/www/html, the default filter name will be html). I prefer to use the fully qualified name in the cases where there are conflicts, or you could use something meaningful like "Apache HTML folder." It's up to you. But once you hit Finish, you'll now have a shortcut. And if you expand that entry, you should see two files: index.html and index (old).html.

Practical Linux: P Is for PHP - Figure 5 

Figure 5: Expanding the filter shows the index.html we created and the index (old).html we renamed.

So starting at about 0:30 in the video, Catherine changes her current directory to the /var/www/html directory and then invokes nano to create the new file. You can bypass all that by simply right-clicking on the filter you created and selecting New > File….

Practical Linux: P Is for PHP - Figure 6 

Figure 6: Use New > File… to bring up the New File dialog, and enter the file name info.php.

This will create a new file named info.php, which you can then double-click on to bring up the PHP editor. The nice thing is that you are automatically placed into the PHP editor, and as soon as you type <?, the editor knows you're doing a PHP command and auto-completes the entire angle keyword .

Practical Linux: P Is for PHP - Figure 7 

Figure 7: The PHP editor will auto-complete the PHP tag as soon as you type <?.

Now just finish typing in the phpinfo(); call. Note that if double-clicking doesn't automatically bring up the PHP editor, you may need to force it the first time by using the context menu. Right-click on info.php and select Open With > PHP Editor to bring up the PHP editor. Once that's done, you'll be in the PHP editor.

Practical Linux: P Is for PHP - Figure 8 

Figure 8: Finish the code, hit Ctrl+S to save, and you're done!

The point is that not only can you get to the files quickly, but you also have a PHP-aware editor available to you. I think it's well worth the effort of diverging from Catherine's otherwise fantastic tutorial. In the next section, you'll use the same technique to create the errors.php page. Once again, you'll be in the PHP editor, which will help you with lots of auto-correct as you type in the simple PHP page.

Next, you switch back to the terminal view. Remember, this is just another window in PDT; you never leave the IDE. Follow along with her instructions right up until roughly the 3:55 mark, where she uses the sudoedit command to create a new file, custom.ini.

Ubuntu is very picky about not allowing you to edit configuration files, much the same way that you can't do certain things on the IBM i without special permissions. I could fix that by using the Linux version of permissions (the chmod command), but for now I'm just going to continue to do it using the more brute force method of using vi in the terminal. Although vi is not a very friendly editor, since editing configuration files is not something you should do casually, I think this is a reasonable compromise. When we move to more advanced Linux configuration, I may use a different technique.

Anyway, instead of sudoedit nano mods-available/custom.ini, you'll use the command sudo vi mods-available/custom.ini and then use the vi editor to enter the configuration. After that, you can then continue to follow her instructions all the way to the 10:30 point, which encompasses the entirety of the PHP configuration. You've now successfully installed and configured PHP and are ready to move on to MySQL!

And while MySQL will have to wait until the next article, you are free to move ahead with PHP. Feel free to find any PHP tutorial information, such as the ones I pointed to earlier, and use the PDT editor to create PHP files to your heart's content. This should give you plenty of opportunity to learn PHP basics until our next article. Enjoy!

 

 

Joe Pluta

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been extending the IBM midrange since the days of the IBM System/3. Joe uses WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. He has written several books, including Developing Web 2.0 Applications with EGL for IBM i, E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. Joe performs onsite mentoring and speaks at user groups around the country. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Joe Pluta available now on the MC Press Bookstore.

Developing Web 2.0 Applications with EGL for IBM i Developing Web 2.0 Applications with EGL for IBM i
Joe Pluta introduces you to EGL Rich UI and IBM’s Rational Developer for the IBM i platform.
List Price $39.95

Now On Sale

WDSC: Step by Step WDSC: Step by Step
Discover incredibly powerful WDSC with this easy-to-understand yet thorough introduction.
List Price $74.95

Now On Sale

Eclipse: Step by Step Eclipse: Step by Step
Quickly get up to speed and productivity using Eclipse.
List Price $59.00

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: