TriDUG Meetup 6:30pm March 17th @ Hesketh.com

Events happening in the community are now at Drupal community events on www.drupal.org.
afreeman's picture
Start: 
2010-03-17 06:30 - 09:00 America/New_York
Organizers: 
Event type: 
User group meeting

Hesketh.com has graciously offered to host our meeting in March! The evening's presentation is on setting up a development + staging + live server environment with Drupal. Topics that will be covered include:

basic LAMP stack setup
configuring SVN
Synching files & data between site versions

As usual the presentation should start at 7:00pm with some time at the end for questions.

Directions to Hesketh.com's offices

Comments

Streaming Video?

attheshow's picture

Any chance that you guys might video this session and stream it via http://www.ustream.tv/ ? I know that the Denver/Boulder user group has done this a couple of times with success.

It's a 9-hour drive for me to come from Tennessee, but I'd love to see this.

Mark W. Jarrell
Online Applications Developer
Richland Library
http://www.richlandlibrary.com
http://fleetthought.com
Twitter: attheshow

Presentation video

afreeman's picture

Hi Mark,

we've talked about filming presentations off and on for a while now and I think it's a good idea. At the moment we don't have video equipment. Streaming video of this presentation isn't outside of the realm of possibility but we'd need someone to volunteer to film the presentation to make that happen.

May help with streaming video

creatorsdream's picture

I just stumbled upon TriDUG in search of assistance with upgrading my aging Drupal 4.0 web site which has been working great except that it is now showing its age. I started the site several years ago http://artmetal.com and have been unable to upgrade it due to errors in the mysql databases. So this is a brief intro to why I'm interested in this local group. I live in the country near Jordan Lake with an Apex address, so I was tickled to see there are Drupal users in my area. I'm even more tickled with the subject matter being discussed in this upcoming meeting. So much for an intro...

I'm a filmmaker and have quite a bit of equipment which I believe can be used to set up a good stream on http://www.ustream.tv Even though I do have an account on ustream http://www.ustream.tv/channel/creatorsdream-live it has been 2 years since I did anything with it. So I will need to reacquaint myself with it if the group decides to go in this direction. It may be better if TriDUG sets up there own account or if may Drupal has something we can feed the live footage to. Again, I'll be glad to help, but we will need to coordinate everything. Let me know if I can be of service.

enrique
http://enriquevega.com (not a drupal site, but I do have several ;-)

That would be a huge help! I

afreeman's picture

That would be a huge help! I emailed you so we can further the discussion.

Did you guys get the video

museumwebbie's picture

Did you guys get the video sorted out? I actually did get permission to borrow an old camera if you need one-- just let me know if I should bring it.

We have a handle on it.

creatorsdream's picture

I am planning on setting up a camera to do both video and live stream to ustream. Since this is the first time we have tried doing this, there are no guarantees for the ustream live broadcast, but I REALLY believe it will work. Maybe a couple of hiccups, but I think it will be a positive experience. Go to the following url tomorrow at the assigned time and check us out. Allen should chime in to give details on communicating using IRC?

http://www.ustream.tv/channel/tridug

Awesome! Thanks so much to

attheshow's picture

Awesome! Thanks so much to creatorsdream and everyone for discussing and getting this set up. I hope I'm not the only one watching online and that others get to take advantage too. :)

Mark W. Jarrell
Online Applications Developer
Richland Library
http://www.richlandlibrary.com
http://fleetthought.com
Twitter: attheshow

Virtual Hosts alternative?

museumwebbie's picture

Hey Allen,

Last time you mentioned an alternative to Virtual Hosts-- is that something you could cover in this meetup?

I'll ask our AV guys about borrowing a camera, but don't hold your breath-- they're very protective of their equipment.

-Nik

We can touch on it if you

afreeman's picture

We can touch on it if you like but here's a brief writeup on what I was talking about: Emulating a Drupal Multisite installation in your local dev environment. Title's a mouthful but it's pretty straightforward.

Thanks for the info

museumwebbie's picture

Will this work for multiple sites on multiple versions of Drupal, or just regular multisite Drupal? I have our main site running on Drupal 5, but I've been playing with Drupal 6 & looking to check out 7 soon.

It only works for one version

arcaneadam's picture

it will only work for one version. You'd have to set up Vhosts to have multiple versions running on the same server because of the fact that they need their own file structure fro each version.

Alan's example is great. It's the preferred method if you are going to just drop one version of core in your localhost www root and go from there. Which is generally what I do with whatever the current release is(6 at the moment) since that is where most of my work is done. But in order to have the alpha and HEAD versions of 7 core running for testing & development I have those in separate folders and set up vhosts for them.

I also have to set up vhosts when I work on remote projects where I need to check a whole site core & contrib out from Version control as I don't want to mix VC sites with my base install.

So there is a need for vhosts if you are doing various project across core versions or working with VC or if you just want to run some other non-Drupal based project.

Adam A. Gregory
Drupal Developer and Consultant
Hire me
http://AdamAGregory.com
Twitter Me
http://twitter.com/adamgregory

Figured as much

museumwebbie's picture

I suppose this would work in conjunction with vhosts though, if I wind up doing multisites for Drupal 6/7?

Alternative to VHosts

cgmonroe's picture

If you're just developing or sandboxing and not trying to do a site mirror, here's an alternative way to run multiple versions of Drupal. You simply put different version in different subdirs. E.g., have a file structure like:

httpdocs
httpdocs/drupal5/ (contains 5 distro with sites, modules, etc)
httpdocs/drupal6/ (contains 6 distro with sites, modules, etc)
httpdocs/drupal7/ (contains 7 distro with sites, modules, etc)

Of course, each version will have to have it's own DB catalog or use separate table prefixes.

Then you can go to http: //site/drupal5 or http: //site/drupal6 or http: //site/drupal7. This is a nice way to have different dev sandboxes to test out modules, etc.

The downside is that there may be full URLs in the DB or content that will break if you do a straight transfer to a site that is based on the root. But most modern code uses the l or url functions which normalize this to the drupal root.

If I remember correctly, you can actually create subsites of drupal installs like this by continuing the "dots" in site directory name. E.g. You want a drupal6 subsite that answers to: http: //site.example.com/drupal6/sub1

You create a directory ind the httpdocs/drupal6/site directory named:  "site.example.com.drupal6.sub1" 
Copy the default.settings.php file from the site/default directory to this directory and rename it to settings.php
Go the http: //site.example.com/drupal6/sub1 URL and you should see the setup page.

Note that this is just something I saw, thought... that's neat.. but haven't tried/tested. YMMV

More info at: http://drupal.org/node/53705

Door Prize!

sheena_d's picture

Hey Everybody, I have a door prize to give away at the meeting! (Even though I won't be there in person, I'll be there virtually)

The prize is one free individual ticket to the Drupal Workshop Day presented by http://environmentsforhumans.com. I'll be presenting the second half of the workshop, which is a 3-hour theme development presentation. The first half of the workshop is a general introduction to building sites with Drupal.

More Info: http://drupalworkshop.eventbrite.com/

If anyone has a friend or co-worker who is thinking about getting into Drupal and would benefit from this introductory course, talk them into coming to the triDUG meeting - we're going to draw names from all the n00bs in the crowd (and by n00b, I just mean someone who is a beginning user to Drupal, it doesn't have to be their first meeting).

Hesketh.com Link Broken

jacobson's picture

FYI, the link to Hesketh.com does not work. I get a "Server Not Found" error on hesketh.com.

HAJ

Unable to duplicate

afreeman's picture

I just checked the link to the directions page on hesketh.com and it's working fine for me.

Working fine for me too,

kwinters's picture

Working fine for me too, maybe a firewall issue?

Ken Winters

I'll Investigate Further

jacobson's picture

No one in my office can reach the site. I will investigate further.

HAJ

Presentation Slides

JuliaKM's picture

You can find the slides for my part of the talk (version control & files) here.

Oh, and I heard a rumor that there would be pizza at this meetup. :)

Julia

That would be...

arcaneadam's picture

That would be killer! pizza is always a welcome addition to any meeting.

Adam A. Gregory
Drupal Developer and Consultant
Hire me
http://AdamAGregory.com
Twitter Me
http://twitter.com/adamgregory

can anyone confim

arcaneadam's picture

Can anyone confirm this? It'd be great to know whether or not I should eat on my way over there.

Adam A. Gregory
Drupal Developer and Consultant
Hire me
http://AdamAGregory.com
Twitter Me
http://twitter.com/adamgregory

Did she say pizza? :D

lizwinfreyventura's picture

Awesome! I picked a good night to join you guys again!

~ Liz Winfrey Ventura

Live Recording of Meeting on Ustream

creatorsdream's picture

Well, it looks like we were able to capture most of the evenings meeting live on Ustream. I apologize to Julia for having the audio problems at the start of the broadcast. The following link will take you to the recorded stream...

http://www.ustream.tv/recorded/5522675

Note that you will need to fast forward to 3 minutes. Otherwise, you will experience the audio problems.

Good first show!!

enrique vega
http://enriquevega.com

triDUG

Group organizers

Group notifications

This group offers an RSS feed. Or subscribe to these personalized, sitewide feeds: