[PHP] Re: Content Management Systems

2004-05-21 Thread David Robley
[EMAIL PROTECTED] (Jed R. Brubaker) wrote in
news:[EMAIL PROTECTED]: 

 Hey all -
 I was hoping that I could get some advice! I am setting up a site that
 will be quazi-portal-ish in nature. As such, a lot of different people
 in a lot of different departments will be making contributions and
 editing parts of the site.
 
 I have never done something like this before, but I think what I am
 looking for is a content management system (CMS). Is this correct?
 
 I have been looking at a bunch of the packages from the list on
 HotScripts, and I have to admit I am overwhelmed and confused. It
 seems that packages such as Midgard, Typo3, etc. would need to be set
 up by the server admin.. This will not work for my situation. I am
 looking for a system that: 
 
 1. Allows multiple users.
 2. Gives me complete design control.
 3. Has a non-HTML editor interface (my clients are not so savvy), and
 4. Can run just off of a PHP/MySQL interface that I can setup without
 access to anything but my server space and database.
 
 Does anyone have any suggestions?
 
 Thanks a bunch - you guys are the best!
 

Content Management System can mean different things to different people :-) 
I can't give a specific recommendation but I can point you to

http://opensourcecms.com/

which has a pretty comprehensive listing of options.

Cheers

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: content management

2004-01-26 Thread Al
Pupeno [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
Does anybody know of an extremely simple CMS (to serve pages, documents, not
news based like most of them) that can store pages in various languages and
comes with interface in various languages (or that it is translatable) ?
- -- 

This is one of the most frequently asked questions about the LAMP platform.
A fantastic site that offers a comparison of all the different open source
CMS systems out there and lets you test drive them all is
http://www.opensourcecms.com/ . I highly recommend it.

Hope it helps,

Al

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: content management

2004-01-26 Thread Justin French
On Tuesday, January 27, 2004, at 04:23  PM, Al wrote:

This is one of the most frequently asked questions about the LAMP 
platform.
A fantastic site that offers a comparison of all the different open 
source
CMS systems out there and lets you test drive them all is
http://www.opensourcecms.com/ . I highly recommend it.
But chances are you'll try them all out, and still decide that there's 
nothing to suit your needs (without being a bloated mess) and decide to 
roll your own :)

Justin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: content management

2004-01-26 Thread Al
Justin French [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 On Tuesday, January 27, 2004, at 04:23  PM, Al wrote:

  This is one of the most frequently asked questions about the LAMP
  platform.
  A fantastic site that offers a comparison of all the different open
  source
  CMS systems out there and lets you test drive them all is
  http://www.opensourcecms.com/ . I highly recommend it.

 But chances are you'll try them all out, and still decide that there's
 nothing to suit your needs (without being a bloated mess) and decide to
 roll your own :)

 Justin

So true. Everytime I sit down to choose a CMS for a project I usually go
through the following steps:

1) Write down spec and design for the CMS ... which is usually simple and
mundane except for one slightly unusual requirement.
2) Do some initial research and become excited by the dozens of open source
CMS systems promising to cut my development time by 80%.
3) Realise that none of the simple CMS platforms can handle my one unusual
requirement. Consider hacking it in, but realise just how much I hate having
to work with other people's code ... espcially on big apps like CMSs with
steep learning curves. Go back and do some more research.
4) Find a mothership CMS (e.g. ezpublish) that can handle my one unusual
requirement, and could probably iron my shirts as well, but I run away when
I realise I'll only use 3% of it's functionality but have to maintain and
serve up CPU cycles for 100% of its code.
5) Start writing my own CMS.

Al

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Content Management Systems

2003-03-11 Thread Alexandru COSTIN
Hey,
We have multiple products for CMS creation: You should check NeXTensio
and ImpAKT
http://www.interakt.ro/products/

We also have tutorials for NeXTensio
CMS:http://www.interakt.ro/index.php?page=artid=1

Alexandru

--
Alexandru COSTIN
Chief Operating Officer
http://www.interakt.ro/
+4021 411 2610
Shaun [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 I would really appreciate some advice from anyone who has worked with or
 developed their own content management system.

 This is my scenario, when i have finished creating a site, i want to be
able
 to add in the CMS with a minimum amount of fuss. I want to be able to get
 the CMS to recognize all the tables and somehow allow me to set the tables
 and fields that the client can update safely (i.e. if it is an employment
 recruitment site then they will be able to add jobs but not job_id). This
 will save me so much time rather than having to handcode the CMS for every
 site.

 I think i have an answer to my problem, and would be interested to hear
your
 opinion. When i install the CMS it will read the existing tables and
create
 2 new tables:

 CMS_TABLES
 cms_table_id(PK)
 cms_table_name
 cms_table_is_editable

 CMS_FIELDS
 cms_field_id(PK)
 cms_table_id(FK)
 cms_field_name
 cms_field_is_editable
 cms_field_type
 cms_field_size
 cms_field_is_primary_key

 As an administrator I will be able to set fields and tables which are
 editable. Now when i go to the database management page i can do 'SELECT *
 FROM CMS_FIELDS WHERE cms_table_id = '$_GET[table_id]' AND
 cms_field_editable = TRUE

 Also does anyone have any suggestions for editing static content?

 Any comments here would be greatly appreciated.

 Thanks






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Content Management

2002-02-08 Thread Philip Hallstrom

check the application section of www.zend.com

-philip

On Sat, 9 Feb 2002, karthikeyan wrote:

 Hi,

   How should i go about to developing a php application to manage the content of a 
web site OR is there allready some ready made script available which i can use in my 
project.

   Looking forward for yours response.

 karthikeyan.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Content Management

2002-02-02 Thread Lars Wilhelmsen

[EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Does anyone know of an organization who has built and maintains a web
 content management application for a large site?

Hi,

 The answer for your question is: eZ Publish : http://developer.ez.no/

 by the norwegian company eZ Systems.

 eZ Publish is GPL licensed.

 regards,

 Lars Wilhelmsen.





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: Content Management Systems

2001-07-31 Thread Gaylen Fraley

Have you tried

http://www.hotscripts.com/PHP/Scripts_and_Programs/Content_Management/

--
Gaylen

Ralph Guzman [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hello,

 I am looking for new alternatives in web development and maintenance.
 Anybody have any suggestions or comments on any open source/commercial
 PHP+mySQL based CMS programs?

 Thanks.




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: Content Management Systems

2001-07-31 Thread Marty Landman


Ralph Guzman [EMAIL PROTECTED] wrote in message

  I am looking for new alternatives in web development and maintenance.
  Anybody have any suggestions or comments on any open source/commercial
  PHP+mySQL based CMS programs?

You could check out my web-based CMS SIMPL. It's written in Perl and only 
the driver installed on the customer's site is source-readable, but on the 
bright side it has:

1. easy webmaster interface
2. ability to change site design at the click of the mouse
3. allows up to a three level hierarchy
4. page renderings are quick, usually under 12 seconds on my voice modem
5. owner viewable page view log including referers
6. cheap; it's bundled with my basic hosting plan and I'm running a 
promotional special right now

Check out http://newdiets.com for an example of a SIMPL website, and the 
SIMPL demo which is on my business site, http://face2interface.com/Demo

hth,

Marty

Face 2 Interface Web Solutions
Website Creation Made SIMPL(tm)
http://face2interface.com/Demo


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]