Codewalkers
  PHP Help, PHP Code - Web Hosting by Hostway
Codewalker Forums 
  Tutorials  
Database Articles  
Miscellaneous  
Navigation Usability  
PEAR Articles  
Programming Basics  
Server Administration  
XML Tutorials  
  Reviews  
Database Book Reviews  
Linux Book Reviews  
Miscellaneous Reviews  
PHP Book Reviews  
PHP Software Reviews  
Server Admin Reviews  
SQL Tool Reviews  
  Code Gallery  
Content Management Code  
Contest Code  
Counters Code  
Database Code  
Date Time Code  
Discussion Board Code  
Email Code  
File Manipulation Code  
GUI Code  
Link Farm Code  
Miscellaneous Code  
Search Code  
Site Navigation Code  
User Management Code  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Download TestComplete 
Forums Sitemap 
Weekly Newsletter 
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP PROGRAMMING

Wine: Not Another Emulator in Server Administration
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-11-04
 
"Wine Is Not another Emulator." This is the recursive acronym hidden in the name of an application to which someone might direct you if you wanted to know how to run your Windows applications under a Linux distribution. However, what is hidden under the hood of this small kit you downloaded to make it happen? Keep reading and we shall find out.


Preventive Measures to Block SSH Attacks in Server Administration
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 3
2009-10-28
 
It should not surprise anyone that over the past few years, SSH attacks have become stupendously frequent. It is not uncommon to see tens of thousands of login occurrences in the case of a mid-sized company. Throughout this article we will look into viable solutions and preventive measures that we recommend implementing to reduce the count of these attacks—often eliminating them entirely.


Using PHP to Stream MP3 Files and Prevent Illegal Downloading in Miscellaneous
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-10-21
 
Are you looking for a way to sell your music online without your visitors ripping off your stuff for free? If you use streaming MP3s, that's a very real risk. Keep reading to learn how to sell your work online and prevent illegal downloading of your audible art.  Discuss (3)


Monitoring Temperatures with Cacti in Server Administration
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 3
2009-10-14
 
You are reading the sequel to the article we published last week on Cacti, the RRDTool based graphing solution. In the previous article we learned how Cacti works and how to deploy it. While it can monitor network load, hard drive spaces, CPU utilization, available memory, and all that right out of box, there are two things left to monitor: temperatures and voltages. In this article we’ll find out how!


Cacti: RRDTool-based Graphing Solution in Server Administration
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2009-10-07
 
As you’ve surely noticed, we frequently cover topics related to server administration, targeting the audience of system administrators and network technicians here on Codewalkers. Today, we will overview Cacti—a complete network graphing solution that utilizes the functionalities of RRDTool. Throughout this article we’re going to discuss how implementing Cacti as a network monitoring system can yield good results.


A Web App Based on a Model for the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-09-30
 
Among the numerous features provided by the CodeIgniter PHP framework, its flexibility is probably one of the most appreciated by both beginners and experienced users. This flexibility gives them the liberty to develop their own custom model classes with minor restrictions. Precisely this characteristic is highlighted in this series of articles, which form a comprehensive guide that walks you through building a highly-generic model class. You'll be able to use this class for creating database-driven web applications without having to code multiple and redundant models. This article concludes the eight-part series.  Discuss (1)


Completing a Model for the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-09-23
 
One of the most remarkable features offered by the CodeIgniter PHP framework is its great flexibility, which lets web developers build custom libraries that contribute to extending the framework’s core functionality. In this group of articles you’ll learn how to create a generic model class for CI. The class will permit you to perform CRUD operations against a number of database tables in a truly painless fashion, without having to spend a long time coding numerous and complex models.  Discuss (1)


Validating Input Data with the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-09-16
 
Welcome to the sixth installment of the series that shows you how to build a generic model for the CodeIgniter PHP framework. Made up of eight parts, this series walks you through the development of a simple model class for the CodeIgniter PHP framework. This class will allow you to retrieve, save and delete rows of a specified database table with minor hassles by using a truly straightforward programming interface, along with a few basic child models.  Discuss (1)


Deleting Database Records with the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-09-09
 
Regardless of its remarkable features, including its outstanding online documentation, a flat learning curve and a strict application of the Model-View-Controller pattern, the CodeIgniter PHP framework still lacks an important characteristic that other competitors have already implemented in the form of native libraries. In this eight-part series, of which this is the fifth, we go some way toward remedying this oversight.  Discuss (1)


Inserting Database Records with a CodeIgniter PHP Framework Model in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-09-02
 
Welcome to the fourth part of an eight-part series that shows you how to build a generic model for the CodeIgniter PHP framework. In this part of the series, I code a new method for the generic model class which allows you to insert new records into the specified database table, as well as update an existing one. Keep reading for the full details.  Discuss (1)


Fetching Database Rows with a Model for the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2009-08-26
 
Welcome to the third part of a series that walks you through building a generic model for the CodeIgniter PHP framework. Comprised of seven tutorials, this series shows you in a step-by-step fashion how to create a useful abstract PHP class that will allow you to fetch, insert, update and delete rows in a specified database table very easily by using only a few child models.  Discuss (1)


Model Data and Validation Rules for a Generic CodeIgniter PHP Framework Model in Miscellaneous Code
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2009-08-19
 
Welcome to the second part of an eight-part series on building a generic model for the CodeIgniter PHP framework. In this part, I will expand the functionality of the “AbstractModel” class we created in the first part by adding a couple of handy methods to it. Keep reading for the full details.  Discuss (1)


Building a Generic Model for the CodeIgniter PHP Framework in Miscellaneous Code
     
Rating: 3 stars3 stars3 stars3 stars3 stars / 2
2009-08-12
 
Welcome to the first part of an eight-part series that, as you can tell from the title, shows you how to build a generic model class for CodeIgniter. In this part, I start by building an abstract model class that extends the native default model provided by CodeIgniter. This is a bare bones model, but I will provide it with more functionality in upcoming parts of the series.  Discuss (6)


TECHNEWS TV
Click Audio or Video to get Podcast
DEVELOPER SHED SPONSORS
 

Brand New IBM Developer Knowledge Center
IBM Developer Knowledge Center on Developer ShedThe Developer Shed Network is proud to announce a brand new, IBM® developerWorks™ Developer Knowledge Center. Now, you can find new resources for FREE eKits, Tutorials, Webcasts, Trial Downloads and become part of a growing network of developers. Take advantage of this new and growing resource center today!

IBM – Taking Web 2.0 to Work
You'll get answers to many questions and more from David Barnes, Lead Evangelist for IBM Emerging Internet Technologies. David will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.

Check out the new Jazz space on developerWorks
developerWorks Jazz spaceYou've heard the buzz about Jazz... want to know more about it from a developer's perspective? Check out the Jazz space on developerWorks. This space is an up-to-date resource for developers, including technical information about Jazz and products built on Jazz, like Rational Team Concert Express. The Jazz space includes content from a wide variety of sources, including links, feeds, and comments from experts.




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
Stay green...Green IT