View previous topic :: View next topic |
Author |
Topic : "Current "easy" ways to maintain a website?" |
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Sun Feb 12, 2006 5:16 pm |
|
|
I've been using Dreamweaver 4 for all of my website design/maintenance, but I've always hated how tedious it gets--especially when you have a ton of new pictures to add. In my case I'd have to create a html file for each image, change the background to black, then set the link for the popup window and set the size of the window to match the image. That is way too much work, and at some point I had asked about some of the templates out there, but I wasn't happy with any of them. I'm just wondering if there are any new options available these days?
The most important thing for me is to be able to have the popup windows create themselves to match the size of the images--without me having to enter the dimensions for each image.
And please don't preach about popup windows. I've heard that a million times, and I still like popup windows for viewing galleries of images. |
|
Back to top |
|
Sumaleth Administrator
Member # Joined: 30 Oct 1999 Posts: 2898 Location: Australia
|
Posted: Sun Feb 12, 2006 7:02 pm |
|
|
You need a content management script of some description. A script, written in PHP or CGI, that automates everything except uploading new images.
The two most popular image-gallery scripts are Gallery and Coppermine Photo Gallery, but there are dozens and dozens. If you want it to work in a very specific way you might only achieve that through some tweaking of the code.
Only way to know is to download a few scripts, install them on your server, and take them for a ride around the block. _________________ Art Links Archive -- Artists and Tutorials |
|
Back to top |
|
-HoodZ- member
Member # Joined: 28 Apr 2000 Posts: 905 Location: Jersey City, NJ, USA
|
Posted: Sun Feb 12, 2006 7:42 pm |
|
|
for the lazy...like me
Coppermine
http://coppermine-gallery.net/index.php
Gallery
http://gallery.menalto.com/
currently im in the same situation Luna...except my knowledge on HTML is very very limited...i have wordpress and i have no idea what im looking at when it comes to code...i just want to change the navigation i.e. links, gallery etc. and i have no clue to where to go :/ i may need to read up some more to get my site up and running soon....
http://wordpress.org/ |
|
Back to top |
|
LoTekK member
Member # Joined: 07 Dec 2001 Posts: 262 Location: Singapore
|
Posted: Mon Feb 13, 2006 12:08 am |
|
|
Some sort of CMS would probably be the best way to go about it. I think spooge and sparth both use Coppermine, which seems like a good bet.
If you're feeling adventurous, and know a little php, you can write one up as well. I did that with my own site, simply because I had time to kill, though the code is admittedly messy and pretty ugly. I also lost steam somewhere along the way, so I didn't add auto-thumbnailing code, which means I need to manually create thumbs, and I also need to maintain a .csv list for each of the sections. |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Mon Feb 13, 2006 1:08 am |
|
|
I checked out the suggestions, and it doesn't seem like they can do the things I need. I guess what I'm looking for is one that can pretty much work with the kind of layout my website currently uses, with automatically generated popups implemented for each image. |
|
Back to top |
|
B0b member
Member # Joined: 14 Jul 2002 Posts: 1807 Location: Sunny Dorset, England
|
Posted: Mon Feb 13, 2006 2:57 am |
|
|
thats possible
BOAN wrote a custom CMS for seaweed that pretty much gives them total control over all the content on the site (not the buttons) and even to add more pictures if they want etc |
|
Back to top |
|
DJorgensen member
Member # Joined: 26 Jun 2003 Posts: 147 Location: Edmonton, Canada
|
Posted: Mon Feb 13, 2006 4:12 am |
|
|
I programmed a java script that resized the window to the image size or the screen size (smaller of the two) ... back when I actually programmed things.
It also centered the image to the middle of the screen and brought it to the front when it finished loading.
Code: |
function checksize() {
if (document.images[0].complete) {
heightA = window.screen.availHeight;
widthA = window.screen.availWidth;
docWidth = document.images[0].width+100;
docHeight = document.images[0].height+250;
docWidthX = docWidth;
if (docWidth>widthA-50) {
docWidthX = widthA;
}
if (docHeight>heightA-20){
docHeight = heightA;
}
window.resizeTo(docWidthX,docHeight);
window.moveTo(widthA/2 - docWidth/2, 0);
window.focus();
}
else {setTimeout('check()',250)}
} |
and then in each image's html file I just placed this before the body tags
Code: |
<SCRIPT language=JavaScript src="checkSize.js"></SCRIPT> |
For the jave file its right here.
http://d-jorgensen.com/linked/other/checkSize.js
(right-click and save as)
I believe that it took for granted that the image you sized the window to was the first one in the html file (hence the array of [0] )... I really dont remember this stuff anymore.....
I got to the lazy point and use coppermine now.
EDIT :: I still entered the height and width of the image. It may still work without it though. _________________ |
|
Back to top |
|
jfrancis member
Member # Joined: 08 Aug 2003 Posts: 443 Location: Los Angeles
|
Posted: Mon Feb 13, 2006 4:33 pm |
|
|
I went the blog route. You can put your images on flickr.com |
|
Back to top |
|
insane007 member
Member # Joined: 28 Feb 2003 Posts: 93
|
Posted: Mon Feb 13, 2006 7:38 pm |
|
|
if you need help I can probabaly help you code this for a very minimal price
or if you want to try and code it yourself I offer advice and help for free. |
|
Back to top |
|
Terry G. junior member
Member # Joined: 18 Feb 2006 Posts: 20 Location: houston,tx
|
Posted: Sat Feb 18, 2006 8:47 am |
|
|
being medicaly retired i now build lots of web sites, the one thing i use quite ofter is "iview", you can group all of your pictures in one directoy on yr computer run iview and it will make thumbnails of the pictures and make a html page for you named what ever you want and a paage for each picture .
click on the thumbnail and it will take you to that pic with a next and back link on each pic page (sorry no popup) but works quite well for most usages.
the thing i like about it is i can do 20 or 30 pictures in a few mins and the thing that takes the time is just uploading the pictures to a site. _________________ a painters mind is "not" a thing to waste - use it! |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Sat Mar 04, 2006 9:30 pm |
|
|
I've been checking out the options out there, and it seems at this point, for a guy that can't code (and has no interest in it), highly customized solutions are extremely limited. My current goal is to do a hybrid blog/gallery site with the following design:
-All pieces of art/photograph can be commented on, and have its own html page so that if I need to write stuff about the piece, I could. This also maximizes the amount of space a single piece can take up without having so scroll inside a frame.
-The blog section of the site is well integrated with the main site, so that it's seamless. I toyed with the idea of setting main frame of my site to access a blog site like livejournal or myspace, but it could get confusing to browse for people who aren't aware they're looking at two seperate sites in one window (for example, they'd click on something that leads them to some community crap on myspace, and all of a sudden, they're browsing crap that has nothing to do with my site, but inside a frame in my website).
I could just seperate the blog and the my site totally, by simply having a link to the blog from my site, but the whole point for me to redesign the site was to integrate both into a seamless whole. I currently blog on my own site, but I really want to implement the commenting feature and the archiving by blog subject feature. I looked into WordPress (I found it because RagNar Tornquist, creator of Longest Journey, uses it), and for a non-coder like myself, it's daunting as hell to install and work with. Originally, I was going to simply have a wordpress blog sitting in the main frame of my site (but hosting it myself), but now I don't even know if I could get wordpress up and running.
*sigh* |
|
Back to top |
|
Exclamation junior member
Member # Joined: 01 Sep 2004 Posts: 39 Location: Los Angeles
|
Posted: Sun Mar 05, 2006 2:49 am |
|
|
I suggest you look into WordPress (http://www.wordpress.org). It's a PHP-based content management system that has literally hundreds of available plugins and templates.
With the right template and plugins, you can do exactly what you're asking. It may still require some customizing on your part if you want to match your current site 100%.
I've been using WordPress for about a year now and I love it. It's so easy I'm running 4 blogs across 2 different domains with it. Plus, most hosts will have WordPress available for automatic installation (although not always the latest version). _________________ Freelance Illustration & Design | A Portrait of Envy |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Sun Mar 05, 2006 3:13 am |
|
|
I tried to install WordPress, but like I already mentioned, it did not go well. All kinds of errors and misformating. And I can't even figure out what I did wrong. |
|
Back to top |
|
Francis member
Member # Joined: 18 Mar 2000 Posts: 1155 Location: San Diego, CA
|
Posted: Sun Mar 05, 2006 2:27 pm |
|
|
What about blogger.com? They do their free hosting/external blog thing, but I think you can also get a version you host on your own server. The "template" window shows all the code so you can customize it to match your site. Here is mine - I was able to use one of their stock templates and change a few colors and graphics to match the look of my site.
http://francistsai.blogspot.com/
I haven't bothered to host it on my own site though - sort of started it on a whim and hadn't really had any intentions of making it a permanent part of my site. _________________ Francis Tsai
TeamGT Studios |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Sun Mar 05, 2006 8:35 pm |
|
|
For me to access blogspot right now (when I'm still in China), I'd have to use a proxy tool. That causes problems because cookies can't be stored that way, and some stuff requires cookies to be installed on your computer. I'll have to wait until I move back to the States (in May) to try it out. I checked out yours and some of the guys you linked to--all just gorgeous! It's funny, but the artist blogs are always more content rich, because it's almost like artists feel they have to post drawings/paintings with the entries. But how long can you keep that up? My blog is all over the place--from pro audio equipment, camera reviews, travel, film reviews, to personal crap.
I noticed that blogspot doesn't have the "tag each entry with categories" feature--where you can archive entries by the topic. Take a look at Ragnar Tornquist's (creator of Longest Journey) blog to see what I mean: http://ragnartornquist.com/
See the Categories on the right and on the bottom of each entry? That's what I mean.
I've setup one with livejournal and myspace, but I haven't decided if I'm going to use either. Both can't be hosted on your own server, so that's a drawback. If I can get wordpress to work, I'll most likely use that. |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Thu Mar 09, 2006 6:13 pm |
|
|
Ok, I managed to get WordPress installed and running. I had to spend about two days just learning CSS coding, plus some javascripting for certain things I needed to do within some entries. I'm not a techie guy at all--so although this stuff might be just mundane crap to some of you, it's actually a big deal for me. It's like the guy who lived off of frozen dinners for years actually getting dirty in the kitchen and cooking a meal.
I discovered two CSS editors that made my life much easier--CSSVista and Topstyle. Just awesome programs for more intuitive CSS editing (I tried many others and they all weren't very intuitive).
Anyway, WordPress has been fully intergrated into my website now. I'm not sure if I still want to implement that whole gallery system with comments. Maybe not for now. |
|
Back to top |
|
Yarik member
Member # Joined: 11 May 2004 Posts: 231 Location: Russian/Ukrainian American in California
|
Posted: Fri Mar 10, 2006 8:41 am |
|
|
Might be out of my league to post this here but
picasa from google is a great product
Worked great for me. It has an export function which allows you to create wanderfull gallerys. |
|
Back to top |
|
Lunatique member
Member # Joined: 27 Jan 2001 Posts: 3303 Location: Lincoln, California
|
Posted: Fri Mar 10, 2006 6:18 pm |
|
|
Yarik wrote: |
Might be out of my league to post this here but
picasa from google is a great product
Worked great for me. It has an export function which allows you to create wanderfull gallerys. |
I took a look at it, and it's really something for the average person--not for people who wants to create/maintain an entire website created from scratch. |
|
Back to top |
|
|