Restrict page view to authenticated users

by itwebresources on May 21, 2013

This is a nice little WordPress code snippet when you wish to restrict page view to authenticated users only. We can achieve this using WordPress is_user_logged_in() function. This function will return true if user is logged in, false otherwise. In WordPress individual pages can be set to use a specific custom page template which you [...]

{ 0 comments }

Force a file to download instead of display

by itwebresources on May 21, 2013

Forces a user to download a file, for example you have an image but you want the user to download it instead of displaying it in a web browser.

{ 0 comments }

Multimedia player for various audio and video formats

May 21, 2013

VLC Media Player is a free and open source cross-platform multimedia player that plays various audio and video formats. It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network. It doesn’t need any external codecs or programs to work. VLC supports multiple operating [...]

Read the full article →

A multi-platform remote control and desktop sharing software

May 21, 2013

TeamViewer is an easy to use application for remote control, desktop sharing and file transfer that works behind any firewall and NAT proxy. All you need to do is run TeamViewer on both machines and exchange the automatically assigned ID codes and passwords with the remote user, this can be done by email or over [...]

Read the full article →

Best free burning software

May 19, 2013

Best free burning software to create, burn and copy audio, video and data files. Perfect software choices for users who need a free, compact, reliable and easy-to-use solution for regular disc burning needs. ImgBurn ImgBurn is a lightweight CD / DVD / HD DVD / Blu-ray burning application and also one of the most popular [...]

Read the full article →

Open source chat scripts

May 17, 2013

This is a list of some most popular open source chat scripts. AJAX Chat is a free and fully customizable open source web chat implemented in JavaScript, PHP and MySQL which integrates nicely with common forum systems like phpBB, MyBB, PunBB, SMF and vBulletin. For more information and download: AJAX Chat Candy Chat Candy Chat [...]

Read the full article →

Simple WordPress SEO Tips

May 16, 2013

WordPress is an open source blogging platform which can also function as a content management system (CMS). In this article we listed few simple WordPress SEO tips that you can implement on your WordPress powered website to improve your search engine rankings. 1. Keyword research and keyword rich domain You will have to find out [...]

Read the full article →

Useful MySQL Cheat Sheet

May 16, 2013

This MySQL cheat sheet is designed to act as a reminder and reference sheet, listing useful information about MySQL. It includes a list of the available functions in MySQL, as well as data types. It also includes a list of MySQL functions available in PHP, and a list of useful sample queries to select data [...]

Read the full article →

Texts – rich editor for plain text

May 15, 2013

Write well-structured documents. Store as plain text with Markdown markup. Editing in Texts is based on separation of presentation and content. Write documents in a structured way. Mark the content according to its meaning, not to its appearance. This way you can concentrate on writing and ensure consistent design of the final output. Publish to [...]

Read the full article →

Write data to text file in PHP

May 15, 2013

This PHP code snippet writes text data to a given file. If file name does not exist, the file is created. Otherwise, the existing file is overwritten. This function is similar to above, except if file name already exists, append the data to the file instead of overwriting it.

Read the full article →