http://prdownloads.sourceforge.net/ezcontents/ezContents_1_40.tar

On Wed, 2002-05-29 at 14:07, Hans Odink wrote:
> You're correct. I think their down for the moment yesterday the site was
> operational. If you're going searching for the file ezContents_1_40.tar i'm
> sure you will find it.
> Good luck,
> Hans
> 
> > -----Oorspronkelijk bericht-----
> > Van: Hsing-Foo Wang [mailto:[EMAIL PROTECTED]]
> > Verzonden: woensdag 29 mei 2002 22:00
> > Aan: 'Hans Odink'; 'Brandon Friedman'; 'Daley Lay'
> > CC: [EMAIL PROTECTED]
> > Onderwerp: RE: [e-smith-devinfo] ANNOUNCEMENT: owl Intranet Installation
> >
> >
> > Hi Hans,
> >
> > The links seems unreachable...?
> > Any thoughts?
> >
> > Regards,
> > Hsing-Foo
> >
> > > -----Oorspronkelijk bericht-----
> > > Van: Hans Odink [mailto:[EMAIL PROTECTED]]
> > > Verzonden: woensdag 29 mei 2002 20:58
> > > Aan: Brandon Friedman; Daley Lay
> > > CC: [EMAIL PROTECTED]
> > > Onderwerp: RE: [e-smith-devinfo] ANNOUNCEMENT: owl Intranet
> > > Installation
> > >
> > >
> > > Maybe you should have an look at ezContents also this is an
> > > very impressive content management system. You can find it at
> > > www.visualshapers.com
> > >
> > > Greetings,
> > > Hans Odink
> > >
> > > > -----Oorspronkelijk bericht-----
> > > > Van: Brandon Friedman [mailto:[EMAIL PROTECTED]]
> > > > Verzonden: woensdag 29 mei 2002 17:38
> > > > Aan: Daley Lay
> > > > CC: [EMAIL PROTECTED]
> > > > Onderwerp: Re: [e-smith-devinfo] ANNOUNCEMENT: owl Intranet
> > > > Installation
> > > >
> > > >
> > > > Nice work Daley....
> > > >
> > > > Will give it a try later, I am looking for a good, secure web-based
> > > > document management system (Mysql and php based)
> > > >
> > > > If I like it , I'll rpm it!
> > > >
> > > > Daley Lay wrote:
> > > >
> > > > > Hi Devs,
> > > > >
> > > > > Details:
> > > > >
> > > > > Owl is a multi user document repository (knowledgebase) system
> > > > written in PHP and stores its data in a MySQL database for
> > > publishing
> > > > of files/documents onto the web for a corporation, small buisness,
> > > > group of people, or just for yourself, more details @
> > > > http://owl.sourceforge.net.
> > > > >
> > > > > Features:
> > > > > - Multi-user environment
> > > > > - Folder and file permissions
> > > > > - Group permissions
> > > > > - Size of the database is limited by your hardware
> > > > > - Searchable (integrated search tool)
> > > > > - Easy to use, and sets up very quickly
> > > > >
> > > > > How To Setup?
> > > > > =============
> > > > > 1. create your ibay named "owl" with php support.
> > > > > 2. then cd /home/e-smith/files/ibays/owl/html
> > > > >
> > > > > 3. Download file, type...
> > > > > wget
> > > > >
> > > http://telia.dl.sourceforge.net/sourceforge/owl/owl-20020213.tar.gz
> > > > >
> > > > > 4. Unpack file, type...
> > > > > tar zxvf owl-20020213.tar.gz
> > > > >
> > > > > 5. Move files to html folder, type...
> > > > > cp -rp intranet/* .
> > > > >
> > > > > 6. Remove unneeded foler and files, type...
> > > > > a) rm -rf intranet
> > > > > b) rm index.html owl-20020213.tar.gz
> > > > >
> > > > > 7. Create mysql database named "owl", type...
> > > > > mysqladmin create owl
> > > > >
> > > > > 8. Create database username and password, type...
> > > > > mysql -u root
> > > > > mysql> grant all on owl.* to owl@localhost identified by
> > > > 'yourpassword';
> > > > > mysql> exit;
> > > > >
> > > > > 9. Verify the new user account, type as follows:
> > > > > mysql --user=owl --password=yourpassword
> > > > > mysql> exit;
> > > > >
> > > > > 10. Creating table, type...
> > > > > mysql --user=owl --password=owl241 owl < DOCS/mysql-tables;
> > > > >
> > > > > 11. modified some scripts in order to work for your environment,
> > > > > type...
> > > > > a) vi config/owl.php
> > > > > *** original ***
> > > > > // Some urls
> > > > > $default->owl_root_url                = "/intranet";
> > > > > $default->owl_graphics_url    =
> > > $default->owl_root_url . "/graphics";
> > > > >
> > > > > // Directory where owl is located
> > > > > $default->owl_fs_root         =
> > > > "/usr/local/apache/htdocs/intranet";
> > > > >
> > > > > // Directory where The Documents Directory is On Disc
> > > > > $default->owl_FileDir         =
> > > "/usr/local/apache/htdocs/intranet";
> > > > > *** end ***
> > > > >
> > > > > Changed to
> > > > >
> > > > > *** Modified ***
> > > > > // Some urls
> > > > > $default->owl_root_url          = "/owl";
> > > > > $default->owl_graphics_url      = $default->owl_root_url
> > > . "/graphics";
> > > > >
> > > > > // Directory where owl is located
> > > > > $default->owl_fs_root           =
> > > "/home/e-smith/files/ibays/owl/html";
> > > > >
> > > > > // Directory where The Documents Directory is On Disc
> > > > > $default->owl_FileDir           =
> > > "/home/e-smith/files/ibays/owl/html";
> > > > > *** end ***
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > b) vi lib/owl.lib.php
> > > > > *** original ***
> > > > >         // Database name
> > > > >         var $Database = "intranet";
> > > > >
> > > > >         // User to access database
> > > > >         var $User = "root";
> > > > >
> > > > >         // Password for database
> > > > >         var $Password = "sq1db";
> > > > > *** End ***
> > > > >
> > > > > Changed to
> > > > >
> > > > > *** Modified ***
> > > > >         // Database name
> > > > >         var $Database = "owl";
> > > > >
> > > > >         // User to access database
> > > > >         var $User = "owl";
> > > > >
> > > > >         // Password for database
> > > > >         var $Password = "yourpassword";
> > > > > *** end ***
> > > > >
> > > > > Done! point your http://xx.xx.xx.xx/owl now,your default access
> > > > is using admin/admin (user/pass).
> > > > >
> > > > > regards,
> > > > > Daley L
> > > > >
> > > > >
> > > > >
> > > > > -------------------------------------------------------------
> > > > > Sign up for ICQmail at http://www.icq.com/icqmail/signup.html
> > > > >
> > > > > --
> > > > > Please report bugs to [EMAIL PROTECTED]
> > > > > Please mail [EMAIL PROTECTED] (only) to discuss
> > > security issues
> > > > > Support for registered customers and partners to
> > > [EMAIL PROTECTED]
> > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > > > Archives by mail and
> > > > http://www.mail-archive.com/devinfo%40lists.e-smith.org
> > > > >
> > > > >
> > > >
> > > >
> > > > --
> > > >
> > > > Regards
> > > > Brandon Friedman
> > > > Cell:083 408 7840
> > > > E-mail: [EMAIL PROTECTED]
> > > > www.bfconsult.co.za
> > > >
> > > >
> > > > --
> > > > Please report bugs to [EMAIL PROTECTED]
> > > > Please mail [EMAIL PROTECTED] (only) to discuss security issues
> > > > Support for registered customers and partners to
> > > [EMAIL PROTECTED]
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > > Archives by mail and
> > > > http://www.mail-archive.com/devinfo%40lists.e-smith.org
> > > >
> > > >
> > > >
> > >
> > >
> > > --
> > > Please report bugs to [EMAIL PROTECTED]
> > > Please mail [EMAIL PROTECTED] (only) to discuss security
> > > issues Support for registered customers and partners to
> > > [EMAIL PROTECTED] To unsubscribe, e-mail:
> > > [EMAIL PROTECTED]
> > > For additional commands, e-mail:
> > > [EMAIL PROTECTED] Archives by mail and
> > http://www.mail-archive.com/devinfo%40lists.e-smith.org
> >
> >
> >
> >
> 
> 
> --
> Please report bugs to [EMAIL PROTECTED]
> Please mail [EMAIL PROTECTED] (only) to discuss security issues
> Support for registered customers and partners to [EMAIL PROTECTED]
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> Archives by mail and http://www.mail-archive.com/devinfo%40lists.e-smith.org
> 




--
Please report bugs to [EMAIL PROTECTED]
Please mail [EMAIL PROTECTED] (only) to discuss security issues
Support for registered customers and partners to [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Archives by mail and http://www.mail-archive.com/devinfo%40lists.e-smith.org

Reply via email to