ftp access permissions

2003-10-10 Thread H. Bartel
Hi, I have set up an Apache Server with FTP Access for Users A, B, C D. All users are chrooted to a specific folder inside the Apache root. Now there comes my problem: If User A makes a new directory, User B, C D are not allowed to access or modify it. This happens with all the other users

Re: apache php3 question

2003-10-04 Thread H. Bartel
On 10/02/2003 10:50 AM [EMAIL PROTECTED] (Marc Ramirez) wrote: 1) Make sure it's not in browser/squid cache. 2) In your httpd.conf, you'll probably need to add index.php3 to your DirectoryIndex directive, if you haven't already. DirectoryIndex index.html index.html.var index.php index.php3 I

apache php3 question

2003-10-02 Thread H. Bartel
I have Apache1.3 running with mod_php4. Directory indexes are set to index.html, index.php and index.php3. None of those .php3 pages get parsed, every .php page works fine. It should not be a register_globals problem, since the other .php sites work fine. mod_php3 is not installed, but I

RE: apache php3 question

2003-10-02 Thread H. Bartel
On 10/02/2003 08:02 PM [EMAIL PROTECTED] (Gil Agno Virtucio) wrote: have you tried adding something like IfModule mod_mime.c AddType application/x-httpd-php .php3 AddType application/x-httpd-php-source .phps /IfModule Well, I haven't tried it, but those AddType things are already

Re: apache php3 question

2003-10-02 Thread H. Bartel
On 10/02/2003 02:58 PM [EMAIL PROTECTED] (Nico Meijer) wrote: Change: AddType application/x-httpd-php .php To: AddType application/x-httpd-php .php .php3 And you should be dandy again... Nico This looks like it does make a lot of sense. After changing and restarting apache, it

Users mySQL User

2003-09-23 Thread H. Bartel
Hi, I have installed mySQL-Server on my freeBSD 4.8, and now I want to set it up. I can connect to the database with [EMAIL PROTECTED] and the according password, but I would like to add another user, which would then only be used to connect to the database server. Does this need to be another

apache error

2003-09-22 Thread H. Bartel
Hi, I did have apache running and then installed mod_php3 after I already have installed mod_php4. Now I get the following errors when I try to start apache: Segmentation fault (core dumped) /usr/local/sbin/apachectl start: httpd could not be started localhost /kernel: pid 183 (httpd), uid 0:

apache / php problem

2003-09-22 Thread H. Bartel
Hi all, Since I do have php4 running and phpinfo() tells me that it does, Sites that I put into my root dir of Apache are not parsing their variables. The index pages are displayed properly, since they don't require any vars to be passed, but every other sub-pages (e.g. index.php?sub=2) don't

Re: apache / php problem

2003-09-22 Thread H. Bartel
On 09/22/2003 11:26 AM [EMAIL PROTECTED] (Kevin D. Kinsey, DaleCo, S.P.) wrote: If you have just updated to PHP4 from 3, be advised that the register_globals handle in php.ini is now OFF by default, and therefore any code of the type include $sub; should now read include $_GET['sub']; I

apache and ftp server

2003-09-21 Thread H. Bartel
Hi all, I have now set up my apache server. Now I need to access it from other machines on the local network. Which is the standard or most recommended ftp-Server? I have tried wu-ftpd and pure-ftp. How do I start the ftp-Server? I once had it running, but after a reboot I can't connect

apache, mod_php filename-dist

2003-09-21 Thread H. Bartel
I installed mod_php4 on Apache and phpinfo(); tells me php 4.1.3 is running. Nevertheless variables do not get parsed at all. I tried looking for the /usr/local/etc/php.ini file and I realised it is called /usr/local/etc/php.ini-dist Could this be the reason or did I miss something? Is this

apache startup problem

2003-09-19 Thread H. Bartel
Hi everybody, after succesfully de- and reinstalling apache13, I get the following error after running /usr/local/sbin/apachectl start Bus error (core dumped) /usr/local/sbin/apachectl start: httpd could not be started /kernel: pid 141 (httpd), uid 0: exited on signal 10 (core dumped) After

Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 12:17 PM [EMAIL PROTECTED] (Laurens Heeren) wrote: what do you get when you run: apachectl configtest ? I get: Syntax OK ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send

Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 10:17 AM [EMAIL PROTECTED] (Jens Rehsack) wrote: If I were you I'd try gdb apache apache.core to identify the module which dumps. If it's a standard one, you shouldn't probably rebuild it using lower optimization level. I read the man pages for gdb but 'gdb apache apache.core'

Re: apache startup problem

2003-09-19 Thread H. Bartel
On 09/19/2003 11:21 AM [EMAIL PROTECTED] (Jens Rehsack) wrote: You should either search the file or start the apache from within the gdb. If I start the apache from within the gdb I get the following: Undefined command: . Try help. What I typed is: (gdb) /usr/local/sbin/apachectl start

deinstalling / reinstalling apache

2003-09-18 Thread H. Bartel
Hi everybody, how can I deinstall apache-1.3.27_4 so that I can do a fresh install of it? I can't make it run, so I want to start all over again and see if I did something wrong. There is a file in /var/db/pkg/apache-1.3.27_4/ with the name +DEINSTALL which seems to be an executable, but I

Re: deinstalling / reinstalling apache

2003-09-18 Thread H. Bartel
On 09/18/2003 11:46 AM [EMAIL PROTECTED] (Josh Paetzel) wrote: pkg_info | grep apache will tell you the exact name of the apache package you have installed, you can then pkg_delete it. Hi, after done so, I get the following: pkg_delete: couldn't entirely delete package (perhaps the packing

Re: deinstalling / reinstalling apache

2003-09-18 Thread H. Bartel
On 09/18/2003 12:41 PM [EMAIL PROTECTED] (Josh Paetzel) wrote: Another thing that could be going on here is pkg_delete isn't deleting /usr/local/etc/apache/httpd.conf because it's been changed. Manaully removing it will be the best course of action if you want to start with a completely

can't start apache

2003-09-17 Thread H. Bartel
Hi, I just installed freeBSD for the first time and now I'm trying to get apache running. When running apachectl start I get the following error: Could not determine the server's fully qualified domain name, using 127.0.0.1 for Servername httpd not running, trying to start (13) Permission

Re: can't start apache

2003-09-17 Thread H. Bartel
On 09/17/2003 04:33 AM [EMAIL PROTECTED] (Eugene Lee) wrote: Again, this is a warning, not an error. With sudo, apachectl start gets run as root, so you do not encounter the previous errors. And at this point, Apache is running. Thanks, I doublechecked and Apache is really running. I suppose