06-22-2011
Quote:
Originally Posted by
hardcoregenie
When I started studying Web Development I scoured all the forums and with the help of a couple people within the industry came up with a guide.
1. html/xhtml & CSS
2. php
3. MySQL
4. Ruby on Rails
5. Javascript
6. CMS
7. Linux CLI
8. Apache
9 Subversion
There is no hard and fast way. That worked for me and took about 10 years of study, at which point I went back to 1 and started again.
There, I fixed it for you
5 More Discussions You Might Find Interesting
1. UNIX for Dummies Questions & Answers
Hi (Help, Help, Help)
I am on a computer course and have designed a web site as one of my assignments. just before Xmas my college tutor "very kindly" viewed my site with a mac, safari browser and unix operating system computer. This is what she Emailed back to me, and I am trying to sort... (3 Replies)
Discussion started by: skylark167
3 Replies
2. Web Development
I think we are missing an important forum on Web Development, including Web 2.0 and Mashups.
Well, here is another poll ..... I vote yes :b: (4 Replies)
Discussion started by: Neo
4 Replies
3. Web Development
Need some idea of what I should charge, per hour or per project, for a 3-4 page site that I design & program (HTML, CSS, & PHP). No databases involved. (1 Reply)
Discussion started by: Anna Hussie
1 Replies
4. Web Development
I have a website and I am thinking of slowly making small mods to it and learn through tutorials along the way. To start using PHP where do I start?
Should I use dreamweaver? or do I need a PHP program that will allow me to access and edit the code? My websites programmed in cakephp. I want... (3 Replies)
Discussion started by: Anna Hussie
3 Replies
5. Web Development
I designed a website with a slideshow (slideshow created with WOW Slider). The slideshow always appears as being on the top layer, and I don't want it that way. You'll notice I have a fixed menu which always stays at the top of the page. When you scroll down the page the slideshow appears to be on... (1 Reply)
Discussion started by: minnawanda
1 Replies
LEARN ABOUT SUSE
apache::session::lock::mysql
Session::Lock::MySQL(3) User Contributed Perl Documentation Session::Lock::MySQL(3)
NAME
Apache::Session::Lock::MySQL - Provides mutual exclusion using MySQL
SYNOPSIS
use Apache::Session::Lock::MySQL;
my $locker = Apache::Session::Lock::MySQL->new();
$locker->acquire_read_lock($ref);
$locker->acquire_write_lock($ref);
$locker->release_read_lock($ref);
$locker->release_write_lock($ref);
$locker->release_all_locks($ref);
DESCRIPTION
Apache::Session::Lock::MySQL fulfills the locking interface of Apache::Session. Mutual exclusion is achieved through the use of MySQL's
GET_LOCK and RELEASE_LOCK functions. MySQL does not support the notion of read and write locks, so this module only supports exclusive
locks. When you request a shared read lock, it is instead promoted to an exclusive write lock.
CONFIGURATION
The module must know how to connect to your MySQL database to acquire locks. You must provide a datasource name, a user name, and a
password. These options are passed in the usual Apache::Session style, and are very similar to the options for
Apache::Session::Store::MySQL. Example:
tie %hash, 'Apache::Session::MySQL', $id, {
LockDataSource => 'dbi:mysql:database',
LockUserName => 'database_user',
LockPassword => 'K00l'
};
Instead, you may pass in an already opened DBI handle to your database.
tie %hash, 'Apache::Session::MySQL', $id, {
LockHandle => $dbh
};
AUTHOR
This module was written by Jeffrey William Baker <jwbaker@acm.org>.
SEE ALSO
Apache::Session
perl v5.12.1 2008-01-08 Session::Lock::MySQL(3)