background preloader

Web Hosting

Facebook Twitter

Top 10 Pro Tips and Tools for Budding Web Developers and Designers. How to Send Email from a PHP Script Using SMTP Authentication. Sending an email from a PHP script is simple, fast and easy; if it works.

How to Send Email from a PHP Script Using SMTP Authentication

PHP mail() and SMTP Authentication Part of what makes the PHP mail() function is so simple is its lack of flexibility. Most importantly and frustratingly, stock PHP mail() does not usually allow you to use the SMTP server of your choice, and it does not support SMTP authentication — required by many a mail server today — at all. PEAR Mail for SMTP Authentication and SSL Connection Fortunately, overcoming PHP's built-in shortcomings is not difficult either, complicated or painful. Send Email from a PHP Script Using SMTP Authentication. How to remove watermark from an image or picture.

A watermark is any recognizable text, logo or pattern that appears over an image to identify the owner of the image and generally used to prevent unauthorized reuse of the image.

How to remove watermark from an image or picture

Watermarks are usually transparent and can be difficult to remove. The difficulty or ease of removal depends on the content of the image and the position, color, size etc of the watermark. There are several resources out there that teaches you how to remove watermark from pictures, but most of them are old. Although these guides are still relevant, in light of some new tools that has recently become available in our hands, I decided a new guide was necessary. About W3C Standards. Website Templates. Just another WordPress site from FREE CSS TEMPLATES. Free CSS business template.

Just another WordPress site from FREE CSS TEMPLATES

Well commented html and css code, so you can edit it with minimum efforts. Suitable for your business website, personal portfolio, corporate website etc. Free Business Template. How to convert a psd file into an html page?? - Free website templates. How to Improve Website Load Times. I’ll admit it: I’m addicted to speed.

How to Improve Website Load Times

No, not the psychostimulant; I’m talking about website speed. I’m not alone, either. Google recently announced that they consider website speed when determining search engine rankings. Oh, did I mention that a slow website can literally kill your revenue stream? Check out what the experts at websiteoptimization.com have to say about the topic: Google found that moving from a 10-result page loading in 0.4 seconds to a 30-result page loading in 0.9 seconds decreased traffic and ad revenues by 20% (Linden 2006). It’s quite clear. What Determines Website Page Speed? The Yahoo! So, I’ll break down the top performance recommendations and show you you can apply them to your website. Let’s do it. 1. Translation: Limit the number of files required to display your website When someone visits your website, the corresponding files must be sent to that person’s browser.

As expected, every file you use to enhance your design detracts from its performance. 2. Hosting a website. NOTICE: making anything visible outside your network can open security issues, so you are doing this at your own risk.

Hosting a website

Some apps are more secure than others, but there is nothing ultimately secure. Best is to use the VPN to login back home. To access the HDA itself from outside the network using VPN, check out the OpenVPN ALS application, available to install through the HDA. It enables you to access the HDA, and all applications and folders, using just your free username.yourhda.com webaddress. So you want to run a web server in your Amahi server and make it visible from the web outside your home. For the purposes of this guide you need either of the following: VNC access to your HDA if headless Terminal is available under Applications -> System Tools -> Terminal SSH if headless and no VNC A monitor if you are not headless To host your own web site you need the following: What you need to do in a terminal (as root) is find the apps conf file then edit the conf file for the app: Fedora. How to install Apache web server in Fedora 14? Can yum be used for installing?

Web App Packaging Notes. Database Restore Install Script: # Check for backup of old version database if [ -f /var/hda/dbs/latest-appname.bz2 ]; then # Import old version database bzcat latest-app.bz2 |mysql -uapp -papp app else # Insert new version database mysql -uappname -pappname appname < appname.sql; fi.

Web App Packaging Notes

How to prevent Hotlink bandwidth theft. Hotlink protection of web site images and files: What is Hotlinking?

How to prevent Hotlink bandwidth theft

Hotlinking is when a web site is linking directly to images, video's or other files that are served from another site. Hotlinking can be considered bandwidth theft, because images served on the page are remotely hosted on the owners page. As visitors arrive to view the page, the remote host has to conjour up the images for viewing which consumes additional bandwidth of the image owners site. In the following, I cover one way a site owner can protect their images and files from being hotlinked to help prevent bandwidth theft.