Results 1 to 14 of 14

Thread: What do you recommend for a site that needs frequent updates?

  1. #1

    Thread Starter
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985

    What do you recommend for a site that needs frequent updates?

    At work I need to make a website that allows us to display data (like certain things sold and some other statistics) and It needs to be updated easily.

    Now my manager told me to let me know what I need and he'll see about getting it done but I'd rather do it with as little server-side scripting as possible.

    So I need to make a site with statistics and such and it needs to be able to be modified inside of a web browser. It also needs to be platform-independant so no ActiveX controls.

    Do I absolutely need a server-side technology like PHP? Would the easiest route be using PHP and saving to a text file? I take it there isn't anyway to modify a text file on a web server without some sort of server-side technology, correct?

    Also, does anyone know if PHP is installed by default on OS X's apache install or not?

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: What do you recommend for a site that needs frequent updates?

    Server side scripting is a must. You have no other way. As for platform independence, if you're talking about the application itself, then it doesn't really matter, since it's only a matter of having a browser.

    Else, you can use PHP which can be hosted on a Linux server or Windows server (Apache and IIS both support it)

  3. #3
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: What do you recommend for a site that needs frequent updates?

    I very much doubt PHP comes with OS X's Apache install. While PHP is sponsored by the Apache foundation, they're not one product.

    Oh, and a database is generally easier to use than plain text files.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  4. #4
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: What do you recommend for a site that needs frequent updates?

    Might be worth looking for a open source CMS (Content Management System) basically a fully database driven site already written for you - if you don't want to get your hands dirty. Example: http://phpnuke.org/. It depends which platform and language you have the facilities to host.

    DJ

    If I have been helpful please rate my post. If I haven't tell me!

  5. #5
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765

    Re: What do you recommend for a site that needs frequent updates?

    I wouldn't use OSX as a server.
    Don't Rate my posts.

  6. #6
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: What do you recommend for a site that needs frequent updates?

    I've never heard of such a setup.

  7. #7
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: What do you recommend for a site that needs frequent updates?

    OS X is just a version of Linux so it can really be treated the same. PC-Madness - why not use OS X?

    I'm sure I've read about a package of Apache, PHP and MySQL together recently but when I've done this install in the past it was separate. They are all open source so you can download and install them for free.

    DJ

    If I have been helpful please rate my post. If I haven't tell me!

  8. #8
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: What do you recommend for a site that needs frequent updates?

    OS X is just a version of Linux so it can really be treated the same.
    Sorry, but that's nonsense. OS X is based on the Darwin kernel, which is a variant of the BSD kernel, derived, I think, from the FreeBSD project.
    Linux is a completely independent kernel.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  9. #9
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: What do you recommend for a site that needs frequent updates?

    I stand corrected - I always assumed BSD was a variant of Linux. There must be similarities surely? I wouldn't think OS X would be a bad platform as a web server?

    DJ

    If I have been helpful please rate my post. If I haven't tell me!

  10. #10
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: What do you recommend for a site that needs frequent updates?

    Both BSD and Linux are "Unix-like" operating systems, meaning that they share a lot of similarities, most of which are written down in the POSIX standards, which both systems strive to comply with.

    OS X was primarily developed as a desktop OS. While it would serve as a server OS, a different Unix variant (*BSD, Linux, something else) is probably a better choice.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  11. #11
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: What do you recommend for a site that needs frequent updates?

    Isn't there a OS X Server version of the software?

    If I have been helpful please rate my post. If I haven't tell me!

  12. #12
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    Re: What do you recommend for a site that needs frequent updates?

    All three packages (Apache, PHP and MySQL) are provided for Mac OS X.
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  13. #13
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    Re: What do you recommend for a site that needs frequent updates?

    Just checked and there is a server version -> http://www.apple.com/server/macosx/ . Must be more geared to server environment than desktop.

    CornedBee - thanks for the info.

    kasracer - sorry for hijacking the thread!

    DJ

    If I have been helpful please rate my post. If I haven't tell me!

  14. #14
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: What do you recommend for a site that needs frequent updates?

    If you need/want a BSD server for web hosting, I believe that's what NetBSD was for... but I'm not sure.

    However, as for pre-packaged PHP/Apache/MySQL/etc. There's LAMP, WAMP and XAMP... depending if you want the Linux, Windows or XP installs. It can all be found here: http://www.apachefriends.org/en/ (http://www.apachefriends.org/de/)

    I do think other platforms are supported as well, but I'm not sure. I know for sure those three are.

    Tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width