You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
(4) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(4) |
Dec
(5) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(1) |
Feb
(1) |
Mar
(5) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2002 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
From: ZeroDiVide <ze...@ze...> - 2002-11-19 18:36:37
|
The docs and the library are two vastly varying things at this point. The docs system needs to be updated badly.. I haven't been working on prometheus for a while, but would be happy to help ou out if i can. ************************************************************ Jason Orcutt - "ZeroDiVide" - ze...@ze... Prometheus Lead Developer : http://prometheus.zerodivide.net On Tue, 19 Nov 2002, Jean-Paul HOUNKANRIN wrote: > Hi, I just started using Prometheus-Library and I really love it. > I have a question, I wanted to connect to a database and get some results, I > check the docs and found out that I could use both > > Open and Close to open and close the connection to the database, but also > there are other functions such as > CreateConnection and DestroyConnection and according to the docs, they do > the same Open and Close, but I'm not really sure, can anyone tell me > anything about this??? > > --------- > Jean-Paul HOUNKANRIN > Web Developer > Soft Internet Solutions > Web: http://www.sis.gh > Email: jea...@si... > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: To learn the basics of securing > your web site with SSL, click here to get a FREE TRIAL of a Thawte > Server Certificate: http://www.gothawte.com/rd524.html > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > https://lists.sourceforge.net/lists/listinfo/prometheus-library > |
From: Jean-Paul H. <jea...@si...> - 2002-11-19 12:09:36
|
Hi, I just started using Prometheus-Library and I really love it. I have a question, I wanted to connect to a database and get some results, I check the docs and found out that I could use both Open and Close to open and close the connection to the database, but also there are other functions such as CreateConnection and DestroyConnection and according to the docs, they do the same Open and Close, but I'm not really sure, can anyone tell me anything about this??? --------- Jean-Paul HOUNKANRIN Web Developer Soft Internet Solutions Web: http://www.sis.gh Email: jea...@si... |
From: <RdR...@ao...> - 2002-02-04 16:46:46
|
Need information on the myth of prometheus and its affect on literature |
From: Jason O. <ze...@ze...> - 2001-04-16 05:57:01
|
On this note i'm moveing all of my prometheus related projects over to sourceforge. As time permits + them processing my requests =) ************************************************************ Jason Orcutt - "ZeroDiVide" - ze...@ze... Prometheus Lead Developer : http://prometheus.zerodivide.net On Tue, 13 Mar 2001, Woolhiser, Eric wrote: > I've been to prometheus.zerodivide.net and looked at the > documentation there, but I can't seem to find the history of this > project stored in a Source Code Control system like CVS. > Since there is a Jason has space already on sourceforge, I wonder > why he has not produced a CVS tree there. > > I'm still on the fence with the decision to adopt this project, I > think that seeing this an active project on sourceforge with the > possibility of submitting my patches would sell me. > > I mean I have downloaded 5.3, and by definition of PHP, I have the source. > I'm just looking for the possibility of a "full" open source experience. > > > > -- > Eric Woolhiser BMC Software Inc > NT Build Meister 880 Winter St. Bldg 4 rm. > 2.227 > 781-663-4646 (or x34646 internally) Waltham, Ma 02454-9111 > http://midwatch.org/pgp-key.html http://www.bmc.com > http://www.tuxedo.org/~esr/ecsl > > > > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/lists/listinfo/prometheus-library > |
From: Jason O. <ze...@ze...> - 2001-03-15 22:45:11
|
CVSROOT=:pserver:you...@cv...:/cvs/zerodivide I'll need to setup a account for you to you to use, so spot me a private email and i'll do it. When i setup the sourceforge implementation, i had prometheus under MPL with the intent to eventually sell it. I relaly didn't want to use others gear when i had my own. Now that it's gpl i might want to move it over. > I'm still on the fence with the decision to adopt this project, I > think that seeing this an active project on sourceforge with the > possibility of submitting my patches would sell me. Yep considering this. also considering a merger with the phpgw guys. > I mean I have downloaded 5.3, and by definition of PHP, I have the source. > I'm just looking for the possibility of a "full" open source experience. Again splat me acct details. |
From: Jason O. <ze...@ze...> - 2001-03-15 22:32:51
|
Even if the user decided to post a serialized version of $user, then the session would overwrite that varabile. On Thu, 15 Mar 2001, Oskar wrote: > No, if I'm getting right, sessions in PHP are made > the same way as sessions in all other tools, that means > only unique session ID is sent between pages. > Variables registered into session are serialized and stored but > they are stored at the server side. > When you are accessing page and calling session_start(), > session ID is checked (taken either from cookie or URL rewriting), > next local store is searched for proper file (or database entry) and > all variables are recreated from that store. None of registered > variables is sent through HTTP. > > > Oskar > > On Tue 13. March 2001 18:58, you wrote: > > I'm looking in ./prometheus/db/User_Db/User.object and I wonder about the > > fact that the user object has a member variable of 'password'. > > > > I am very new to PHP, so I hope someone can explain this me gently: > > > > If in PHP4 I were to session_start() and session_register() a user object, > > would the user object be serialized and passed via POST to the next page in > > the clear? > > If so, could a Prometheus user compromise his website by registering a user > > object? > > > > I don't really understand sessions in PHP4 that well. > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/lists/listinfo/prometheus-library > |
From: Oskar <os...@2n...> - 2001-03-15 19:07:42
|
No, if I'm getting right, sessions in PHP are made the same way as sessions in all other tools, that means only unique session ID is sent between pages. Variables registered into session are serialized and stored but they are stored at the server side. When you are accessing page and calling session_start(), session ID is checked (taken either from cookie or URL rewriting), next local store is searched for proper file (or database entry) and all variables are recreated from that store. None of registered variables is sent through HTTP. Oskar On Tue 13. March 2001 18:58, you wrote: > I'm looking in ./prometheus/db/User_Db/User.object and I wonder about the > fact that the user object has a member variable of 'password'. > > I am very new to PHP, so I hope someone can explain this me gently: > > If in PHP4 I were to session_start() and session_register() a user object, > would the user object be serialized and passed via POST to the next page in > the clear? > If so, could a Prometheus user compromise his website by registering a user > object? > > I don't really understand sessions in PHP4 that well. |
From: Woolhiser, E. <Eri...@bm...> - 2001-03-13 17:56:14
|
I'm looking in ./prometheus/db/User_Db/User.object and I wonder about the fact that the user object has a member variable of 'password'. I am very new to PHP, so I hope someone can explain this me gently: If in PHP4 I were to session_start() and session_register() a user object, would the user object be serialized and passed via POST to the next page in the clear? If so, could a Prometheus user compromise his website by registering a user object? I don't really understand sessions in PHP4 that well. -- Eric Woolhiser BMC Software Inc NT Build Meister 880 Winter St. Bldg 4 rm. 2.227 781-663-4646 (or x34646 internally) Waltham, Ma 02454-9111 http://midwatch.org/pgp-key.html http://www.bmc.com http://www.tuxedo.org/~esr/ecsl |
From: Woolhiser, E. <Eri...@bm...> - 2001-03-13 17:24:07
|
I've been to prometheus.zerodivide.net and looked at the documentation there, but I can't seem to find the history of this project stored in a Source Code Control system like CVS. Since there is a Jason has space already on sourceforge, I wonder why he has not produced a CVS tree there. I'm still on the fence with the decision to adopt this project, I think that seeing this an active project on sourceforge with the possibility of submitting my patches would sell me. I mean I have downloaded 5.3, and by definition of PHP, I have the source. I'm just looking for the possibility of a "full" open source experience. -- Eric Woolhiser BMC Software Inc NT Build Meister 880 Winter St. Bldg 4 rm. 2.227 781-663-4646 (or x34646 internally) Waltham, Ma 02454-9111 http://midwatch.org/pgp-key.html http://www.bmc.com http://www.tuxedo.org/~esr/ecsl |
From: Roshan S. <ros...@ho...> - 2001-02-26 00:18:34
|
I can't ftp or http the apache-kit, it says permission denied. Thanks, Roshan _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com |
From: Oskar <os...@2n...> - 2001-01-11 19:46:06
|
Hi, First of all - excellent idea and great work! I found a small bug within library: SqlUtil object - function SelectStatement - when I pass multiple tables as a parameter it doesn't generate proper query - tables are not divided by comma Fix: $more_than_one++ in loop for tables (the same is done for columns) Regards Oskar (os...@2n...) |
From: Andre B. <and...@ed...> - 2000-12-21 12:33:38
|
hello, I am trying to run build.pl at a solaris 2.5 machine but the following error comes up: (root@xxx) #> build.pl Missing $ on loop variable at lib/ApacheKit/Find.pm line 67. BEGIN failed--compilation aborted at lib/ApacheKit.pm line 4. BEGIN failed--compilation aborted at ./build.pl line 11. Thanks Andre |
From: ZeroDiVide <ze...@ze...> - 2000-12-12 15:03:29
|
Where does mysql live on this host? -------------------------------------------------------------------------------- | Jason "ZeroDiVide" Orcutt "Code is life is Code" | | Prometheus Project - http://prometheus.zerodivide.net | | PIMP Webmail - http://prometheus.zerodivide.net/apps/pimp/ | | Resume - http://www.zerodivide.net ICQ - 31948044 | -------------------------------------------------------------------------------- On Tue, 12 Dec 2000, James McLaughlin wrote: > Hello, > > This is concenring the apache_kit latest version. > > I am trying to get mysql to be recongnized by the apache_kit build and > am having no luck. Mysql is running and working out of default RH6.2 > dir. When I run > ./build.pl --redhat-6 --apache-dir=/usr/local/apache --build-php4 > --build-imap --build-mod-perl > > It runs through the config, sets everything up BUT...mysql does not set > up..I am guessing its not seeing it. > > Is there a way to find out what it is missing to build with MySQL > correctly? > > In dire need of assistance (DeadLine is too close for comfort) > > TIA > > James > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/mailman/listinfo/prometheus-library > |
From: James M. <ka...@mo...> - 2000-12-12 12:34:07
|
Hello, This is concenring the apache_kit latest version. I am trying to get mysql to be recongnized by the apache_kit build and am having no luck. Mysql is running and working out of default RH6.2 dir. When I run ./build.pl --redhat-6 --apache-dir=/usr/local/apache --build-php4 --build-imap --build-mod-perl It runs through the config, sets everything up BUT...mysql does not set up..I am guessing its not seeing it. Is there a way to find out what it is missing to build with MySQL correctly? In dire need of assistance (DeadLine is too close for comfort) TIA James |
From: ZeroDiVide <ze...@ze...> - 2000-12-08 02:22:28
|
modify - lib/ApacheKit/Imap.pm Thanks, -------------------------------------------------------------------------------- | Jason "ZeroDiVide" Orcutt "Code is life is Code" | | Prometheus Project - http://prometheus.zerodivide.net | | PIMP Webmail - http://prometheus.zerodivide.net/apps/pimp/ | | Resume - http://www.zerodivide.net ICQ - 31948044 | -------------------------------------------------------------------------------- On Thu, 7 Dec 2000, James McLaughlin wrote: > Can you change the imap src to imap-200a instead of 4.7c2 ??? > > If so how would I do this? > > Change the package.config.pl file to reflect the dir and tar.Z vs tar.gz > ? > > Any help is grateful > > -- > ###www.frontlineforce.com### > ->A Real MOD for Real Players<- > > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/mailman/listinfo/prometheus-library > |
From: James M. <ka...@mo...> - 2000-12-08 01:22:27
|
Can you change the imap src to imap-200a instead of 4.7c2 ??? If so how would I do this? Change the package.config.pl file to reflect the dir and tar.Z vs tar.gz ? Any help is grateful -- ###www.frontlineforce.com### ->A Real MOD for Real Players<- |
From: ZeroDiVide <ze...@ze...> - 2000-11-13 21:04:44
|
> > I haven't had the time to add openssl support to the apache kit, it is a > > often asked for feature. I would love to see it added, but since i'm the > > only developer, it basically gets the features that i have time for. > > and trust me, it isn't that hard to build apache yourself, or OpenSSL. > (on my FreeBSD box both install without one bit of need to tweak anything) > If it seems like to much of a problem to handle, just ask arround, there's > bound to be someone (like me) who doesn't mind helping you out, and guide > you through it on a step to step basis. If you can document it as a step by step thing, even though a psedo-terminal capture, i can try to write the perl code =) > wich brings me to another question: > ZeroDiVide: is there a manual to build some kind of "superapache" in > combination with Prometheus and is there a need for such manual? > if Yes, I wouldn't mind working on the manual, and I think I can get a > buddy of mine to work out any FreeBSD - Linux diffs. The uber-apache? Like a installer that includes prometheus all ready to go? Hmm i've never thought of that, mostly cause i end up installing prometheus on already existant sites, with their own apache+php config. This is a good idea. No there's no manual for any of this, some rough oop docs for the library, but that's woefully out of date at this point. All of the system is auto doc'd in the sense that i have a perl script that runs, prompts me for questions and builds the documentation. I'd be happy to add people, would help liven this project up a bit. Thanks, -------------------------------------------------------------------------------- | Jason "ZeroDiVide" Orcutt "Code is life is Code" | | Prometheus Project - http://prometheus.zerodivide.net | | PIMP Webmail - http://prometheus.zerodivide.net/apps/pimp/ | | Resume - http://www.zerodivide.net ICQ - 31948044 | -------------------------------------------------------------------------------- |
From: Arjan K. <ak...@wi...> - 2000-11-13 06:06:33
|
Hiya's On Sat, 11 Nov 2000, ZeroDiVide wrote: > I haven't had the time to add openssl support to the apache kit, it is a > often asked for feature. I would love to see it added, but since i'm the > only developer, it basically gets the features that i have time for. and trust me, it isn't that hard to build apache yourself, or OpenSSL. (on my FreeBSD box both install without one bit of need to tweak anything) If it seems like to much of a problem to handle, just ask arround, there's bound to be someone (like me) who doesn't mind helping you out, and guide you through it on a step to step basis. wich brings me to another question: ZeroDiVide: is there a manual to build some kind of "superapache" in combination with Prometheus and is there a need for such manual? if Yes, I wouldn't mind working on the manual, and I think I can get a buddy of mine to work out any FreeBSD - Linux diffs. Cheers, arjan |
From: ZeroDiVide <ze...@ze...> - 2000-11-11 21:04:44
|
I haven't had the time to add openssl support to the apache kit, it is a often asked for feature. I would love to see it added, but since i'm the only developer, it basically gets the features that i have time for. -------------------------------------------------------------------------------- | Jason "ZeroDiVide" Orcutt "Code is life is Code" | | Prometheus Project - http://prometheus.zerodivide.net | | PIMP Webmail - http://prometheus.zerodivide.net/apps/pimp/ | | Resume - http://www.zerodivide.net ICQ - 31948044 | -------------------------------------------------------------------------------- On Sat, 11 Nov 2000, Forrest Aldrich wrote: > Can we get OpenSSL with this, or at least detect the installation so that > the compile can activate the module properly when creating the apache > executable. > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/mailman/listinfo/prometheus-library > |
From: Forrest A. <fo...@fo...> - 2000-11-11 17:27:36
|
Can we get OpenSSL with this, or at least detect the installation so that the compile can activate the module properly when creating the apache executable. |
From: ZeroDiVide <ze...@ze...> - 2000-10-28 22:10:46
|
Try doing ./httpd in the /usr/local/apache/php/bin/ dir and see what that dumps. -------------------------------------------------------------------------------- | Jason "ZeroDiVide" Orcutt "Code is life is Code" | | Prometheus Project - http://prometheus.zerodivide.net | | PIMP Webmail - http://prometheus.zerodivide.net/apps/pimp/ | | Resume - http://www.zerodivide.net ICQ - 31948044 | -------------------------------------------------------------------------------- On Fri, 27 Oct 2000, Gary Nielson wrote: > Hi, > > I downloaded apache_kit-7_76.tar.gz and installed it as follows: > > /usr/bin/perl build.pl --redhat-6 --apache-dir=/usr/local/apache/php > --build-imap --build-php3 --build-php4 --build-mod-perl > > I am running a VALinux Intel box with RedHat Linux 2.2.14-5.0.14b. The > install went great, except that whenever I start the httpd session, I am > told that ./apachectl start starts the httpd process, but it really > doesn't. It is not listed when I do a 'ps -ax'. I ran a ./apachectl > configtest and was told the syntax of my httpd.conf file is fine. > > FYI, I have three other installations of apache on my server -- one at > /etc/httpd, another at /usr/local/apache running mod_perl, another at > /usr/local/apache/java running tomcat -- each listening to a different > port (8080, 8081 and 8082). I have successfully built apache > many times. I killed all my httpd processes and tried starting my > apache_kit install listening to the default port and still, nothing > happened. > > What do you recommend I do? Should I try another install? Is there > something I am missing here? I perused the logs and found one entry that > appeared to indicate something went wrong in the install, but other than > that the log files look pretty good. The entry: > > [activating module `php3' in /usr/local/apache/php/conf/httpd.conf] > > ********************************************************************** > Thu Oct 26 11:51:05 2000 - Build command > Thu Oct 26 11:51:05 2000 - cd php-3.0.16 ; /bin/cp php.ini-dist > /usr/local/lib/php.ini >> php3_build_log.log 2>&1 > > ********************************************************************** > > /bin/cp: php.ini-dist: No such file or directory > > > -- Gary Nielson > ga...@ga... > > > > > _______________________________________________ > Prometheus-library mailing list > Pro...@li... > http://lists.sourceforge.net/mailman/listinfo/prometheus-library > |
From: Gary N. <gni...@ch...> - 2000-10-28 03:04:45
|
Arjan, thanks for your comments. In my case, both the access and error logs have 0 bytes, so it doesn't appear that apache is really starting at all, even though when running apachectl, it reports that httpd has started. On Fri, 27 Oct 2000, Arjan Koole wrote: > Hi > > On Fri, 27 Oct 2000, Gary Nielson wrote: > > > Hi, > > > > I downloaded apache_kit-7_76.tar.gz and installed it as follows: > > > > /usr/bin/perl build.pl --redhat-6 --apache-dir=/usr/local/apache/php > > --build-imap --build-php3 --build-php4 --build-mod-perl > > > > I am running a VALinux Intel box with RedHat Linux 2.2.14-5.0.14b. The > > install went great, except that whenever I start the httpd session, I am > > told that ./apachectl start starts the httpd process, but it really > > doesn't. It is not listed when I do a 'ps -ax'. I ran a ./apachectl > > configtest and was told the syntax of my httpd.conf file is fine. > > I ran into something simular myself a couple of times, with the only > difference that I build apache myself, and not through a kit. > > check your error_log, should be in <apachedir>/var/log or something > simular, it might give you an idea what goes wrong. > > It's odd how apachectl start gives you an okay, apachectl configtest does > too, and yet the darn thing won't start. > > AFAIK, the problem when I had it was with some lib.*.so it couldn't find > at the time, after toying with ldconfig once it was resolved. > > CHeers, > Arjan Koole > Rotterdam, The Netherlands > -- Gary Nielson ga...@ga... |
From: Arjan K. <ak...@wi...> - 2000-10-27 20:59:10
|
Hi On Fri, 27 Oct 2000, Gary Nielson wrote: > Hi, > > I downloaded apache_kit-7_76.tar.gz and installed it as follows: > > /usr/bin/perl build.pl --redhat-6 --apache-dir=/usr/local/apache/php > --build-imap --build-php3 --build-php4 --build-mod-perl > > I am running a VALinux Intel box with RedHat Linux 2.2.14-5.0.14b. The > install went great, except that whenever I start the httpd session, I am > told that ./apachectl start starts the httpd process, but it really > doesn't. It is not listed when I do a 'ps -ax'. I ran a ./apachectl > configtest and was told the syntax of my httpd.conf file is fine. I ran into something simular myself a couple of times, with the only difference that I build apache myself, and not through a kit. check your error_log, should be in <apachedir>/var/log or something simular, it might give you an idea what goes wrong. It's odd how apachectl start gives you an okay, apachectl configtest does too, and yet the darn thing won't start. AFAIK, the problem when I had it was with some lib.*.so it couldn't find at the time, after toying with ldconfig once it was resolved. CHeers, Arjan Koole Rotterdam, The Netherlands |
From: Gary N. <gni...@ch...> - 2000-10-27 17:11:52
|
Hi, I downloaded apache_kit-7_76.tar.gz and installed it as follows: /usr/bin/perl build.pl --redhat-6 --apache-dir=/usr/local/apache/php --build-imap --build-php3 --build-php4 --build-mod-perl I am running a VALinux Intel box with RedHat Linux 2.2.14-5.0.14b. The install went great, except that whenever I start the httpd session, I am told that ./apachectl start starts the httpd process, but it really doesn't. It is not listed when I do a 'ps -ax'. I ran a ./apachectl configtest and was told the syntax of my httpd.conf file is fine. FYI, I have three other installations of apache on my server -- one at /etc/httpd, another at /usr/local/apache running mod_perl, another at /usr/local/apache/java running tomcat -- each listening to a different port (8080, 8081 and 8082). I have successfully built apache many times. I killed all my httpd processes and tried starting my apache_kit install listening to the default port and still, nothing happened. What do you recommend I do? Should I try another install? Is there something I am missing here? I perused the logs and found one entry that appeared to indicate something went wrong in the install, but other than that the log files look pretty good. The entry: [activating module `php3' in /usr/local/apache/php/conf/httpd.conf] ********************************************************************** Thu Oct 26 11:51:05 2000 - Build command Thu Oct 26 11:51:05 2000 - cd php-3.0.16 ; /bin/cp php.ini-dist /usr/local/lib/php.ini >> php3_build_log.log 2>&1 ********************************************************************** /bin/cp: php.ini-dist: No such file or directory -- Gary Nielson ga...@ga... |
From: Nick B. <ni...@em...> - 2000-06-22 15:04:14
|
I'm using mysql for authentication in vpopmail... ############################### I've got pimp setup and can login as root and as a real user on the box, but i cannot login to a virtual domain "box". It's entirely possible that this is a problem with courier-imap not authenticating correctly. I'm not sure - still investigating... Also, another question, on a successful login as root or real user, it takes quite a long time (20-30 seconds) to get from the login page to the "logged-in" page. any thoughts? Overall, I'm impressed with the cleanness of pimp - simple and sweet. Thanks in advance, --Nick |