Wednesday, August 29, 2007

JAlbum Free Hosting

As you know, JAlbum is all about publishing personalized photo albums.
Recently JAlbum created a new service - myjalbum.net hosting. That's a very simple way to get your albums online.

Steps to create photo albums online:

  1. Sign up - Register an account at jalbum.net. (You don’t need to sign up if you already are registered in the JAlbum forum.)

  2. Make album - Download the JAlbum software. Just drag and drop images and image folders onto JAlbum and press “Make album”.

  3. Publish - Use your username and password to publish to: yourname.myjalbum.net
View JAlbum Free Hosting Example.

Let’s get your photo albums online!


Enjoy,
Create Online Photo Album

Thursday, August 23, 2007

Secure a Directory on Your Website

Ever wanted a specific directory in your website to be available only to people who you want it to be available to? There are numerous methods to password protecting areas of your website. htaccess (Hypertext Access) is about as secure as you can or need to get in everyday life, though there are ways above and beyond even that of htaccess.

Create .
htaccess and .htpasswd files with .htaccess Password Generator and upload them to your website.

*
This will only work on Linux hosting that support htaccess.

Enjoy,
Download Free FTP Program.

Wednesday, August 22, 2007

Yahoo! Photos is Closing

Yahoo! Photos is closing on September 20, 2007.

Until then, Yahoo! offers you the opportunity to move to another photo sharing service (Flickr, KODAK Gallery, Shutterfly, Snapfish, or Photobucket). Yahoo! makes the transfer real simple, and with a couple clicks Yahoo! automatically move your photos. You can also download your original-resolution photos back to your computer.

Please make your decision by Thursday, September 20, 2007, at 9 p.m. PDT. After that time, any photos remaining in Yahoo! Photos will be deleted.

Click here to make your decision.

Enjoy,
Create Online Web Gallery.

Sunday, August 19, 2007

Web Statistics for JAlbum

I'll explain here how you can view web statistics for your JAlbum web album. My example is based on Google Analytics web service but you can use any other web statistics service as well.

  1. After installing JAlbum on your computer, there are index.htt and slide.htt files. Usually, these files located in "C:\Program Files\JAlbum7.2\skins\" skin name " folder.

  2. Edit these files with notepad or some other text editor. Insert Google Analytics tracking code immediately before the </body> tag. Save and close these files.

  3. Open JAlbum software and make an album. Now all pages include Google Analytics tracking code.

  4. The last step is to upload the web album to your website. You can upload it with free ftp program or publish it through JAlbum program.

Enjoy,
Create Photo Album

Tuesday, August 14, 2007

JAlbum Integrated with Wordpress

The Wordpress - JAlbum plugin allows to integrate JAlbum galleries directly into wordpress posts. Either, you can use the JAlbum theme as is, or you can pull the files directly into the WordPress theme you use, disregarding the theme of the generated JAlbum gallery.

You can integrate complete albums, partial albums or single images from any JAlbum on your server.

It is also possible to integrate complete JAlbums from different servers - though this will not give you the possibility of using the Wordpress theme (in which case the gallery files have to be placed on the same server).

Just download the plugin and unzip it into the wp-content/plugins folder. Setup is done through the Wordpress settings control panel, and the Wordpress editor toolbar is automatically expanded with the new JAlbum functionality.

Download JAlbum plugin for Wordpress.

Enjoy,
Create Photo Gallery

Thursday, August 9, 2007

CSS Property Min Height Doen't Work in Internet Explorer 6

The min-height property sets the minimum height of an element. But for some reason this property doesn't work in Internet Explorer 6.

Instead use this code:
p {
min-height: 10px;
}

Use this solution:
p {
min-height:10px;
height:auto !important;
height:10px;
}

I've checked this solution with Internet Explore 6, Internet Explorer 7 and Firefox, works fine.

Enjoy,
Learn Web Development

Wednesday, August 1, 2007

Install Google Analytics on phpBB2 and phpBB3

Google Analytics is a free service offered by Google that generates detailed statistics about the visitors to a website.

With Google Analytics you can get detailed statistics about your phpBB forum.

You need enter Google Analytics code before </body> in the file:
phpBB 2: overall_footer.tpl file that located in /"forum folder"/templates/"template name".
phpBB 3: overall_footer.html file that located in /"forum folder"/styles/"style name"/template.

like this:

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-xxxxxxx-x";
urchinTracker();
</script>

</body>

Enjoy,
Create a website.