Web Hosting Talk







View Full Version : CMS's


Radix
07-22-2002, 09:26 PM
Ive tried a few of these things and I think they are all hard to instal. People claim to be able to instal PHPnuke in like 5 minutes and I cant even DL and unzip it in that time :bawling: .

akashik
07-22-2002, 09:36 PM
do you have shell access on your account? That makes life a lot easier. CMS's are complex pieces of machinery for the most part, so nailing them down via ftp uploads can be a bit tricky.

Radix
07-22-2002, 09:39 PM
nope =(. Unless you have a good host in mind FTP will have to do.

akashik
07-22-2002, 09:40 PM
Actually I've just dug out my install file for EZPublish to give you an example of installing vis SSH. It's written with CPanel and EZPublsh 2.2.4 in mind, with image::magick installed in the right place for it, so your milage may vary considerably. :)

(Note, yes I do jump around a bit with the CD command but it's a habit of mine to work in the folder itself)

***AS USER - NOT ROOT***

wget http://developer.ez.no/filemanager/download/353/ezpublish_2_2_4.tar.gz

tar zxvf ezpublish_2_2_4.tar.gz

mv ezpublish_2_2_4 public_html/publish

cd public_html/publish

pico site.ini (add database and site URL)

./modfix.sh

***SET UP DATABASE VIA CPANEL***

cd sql

/usr/bin/mysql database_name -u user_name -ppassword < publish_mysql.sql

cd ../

tar zpxvf data.tar.gz

./modfix.sh

cd sql

/usr/bin/mysql database_name -u user_name -ppassword < data_mysql.sql

cd ../

./clearcache.sh

***CRON JOB*** (via CPANEL)

0 23 * * * cd /home/username/public_html/publish; /usr/bin/php cron.php

***LOG IN VIA ADMIN***

http://www.yourdomain.com/publish/index_admin.php

user: admin
pass: publish

akashik
07-22-2002, 09:45 PM
without shell, you could look and see if one has an install file I suppose. I think Mambo has one. It's a nice looking script and was pretty simple to install from memory.

I don't have any experience with Nuke or Post Nuke so I'm not much help there sorry.

Greg Moore

Radix
07-22-2002, 09:47 PM
O god that will be another all nighter knowing me :(

24Host Tech3
07-22-2002, 09:57 PM
I have found the PostNuke and related stuff like Gallery to be pretty easy to install. The install routines have become pretty simple for most people to use. It is certainly easier if you can upload the tar and log in via ssh, but ftp works, just a bit slower.

The language files can be big sometimes, as can the different themes. If using a slower connection or FTP, you might consider not uploading too many different languages or themes.

Radix
07-22-2002, 10:20 PM
I should ask someone to do it for me :stickout

shaunewing
07-23-2002, 01:05 AM
We wrote our own CMS - in the long run it was much easier than installing a third party one and we can add whatever features we want - when we want.

It wasn't too hard, took a few hours to come up with something decent in PHP and then I added things like the admin area, etc. over the next few days (the admin area isn't all that pretty but only two people see it so it doesn't matter).

Mambo is easy to install, I installed that on our development machine to have a play around with - but many sites that use Mambo can be identified in an instant (similar to the Frontpage syndrome as I've called it).

--Shaun

hostasia
07-23-2002, 08:39 AM
postnuke is pretty easy to install, all you need is the paths, database info, and that's pretty much it.

unzip it on your computer, ftp up, and run the browser based install.

not 5 minutes but not hours either. just read the instal doc and follow it step by step.

i'm not a programmer either...and i had no problems.