Jump to content

PHP im Firmennetzwerk


Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Empfohlene Beiträge

Geschrieben

hi!

 

ping funktioniert einwandfrei. ich sehe den server auch in meiner netzwerkumgebung.

 

das problem liegt anscheinend daran, dass die php-seiten nicht richtig umgesetzt werden. eine index.html wird verarbeitet, aber keine php-seite.

Geschrieben

hi!

 

ich hab zwar die standardmässig xp-firewall, aber die ist deaktviert.

 

das ist ja das, lokal geht's aber wenn ich die index.php öffnen möchte wird sie nicht verarbeitet - warum auch immer...

 

der lokale link auf die joomla_startseite lautet http://127.0.0.1/intranet/index.php. auf einem anderen rechner gebe ich http://192.168.1.24/intranet/index.php und dann heisst es server nicht gefunden. die x.x.x.24 adresse ist aber auch in config-datei hinterlegt.

Geschrieben

hi!

 

ich habe jetzt apache, php und mysql nochmal neu installiert (mit hilfe von easyphp auf partition d:; server-ip 192.168.1.24). ich poste jetzt mal die httpd.conf (leicht gekürzt ;) ). vielleicht findet darin von euch jemand den fehler. würde mir sehr viel helfen.

 

danke und gruss

neuling78

 

 

### Section 1: Global Environment

ServerType standalone

 

ServerRoot "${path}/apache"

 

PidFile logs/httpd.pid

 

ScoreBoardFile logs/apache_runtime_status

 

Timeout 300

 

KeepAlive On

 

MaxKeepAliveRequests 100

 

KeepAliveTimeout 15

 

MaxRequestsPerChild 0

 

ThreadsPerChild 50

 

Listen 127.0.0.1:80

 

LoadModule anon_auth_module modules/mod_auth_anon.so

 

LoadModule php4_module "${path}/php/php4apache.dll"

 

ClearModuleList

 

AddModule mod_env.c

...

AddModule mod_php4.c

 

### Section 2: 'Main' server configuration

Port 80

 

ServerAdmin admin@localhost

 

ServerName localhost

 

DocumentRoot "${path}/www"

 

<Directory />

Options FollowSymLinks Indexes

AllowOverride All

</Directory>

 

<Directory "${path}/www">

 

Options Indexes FollowSymLinks Includes

 

AllowOverride All

 

Order allow,deny

Allow from all

</Directory>

 

<IfModule mod_userdir.c>

UserDir "${path}/apache/users/"

</IfModule>

 

<IfModule mod_dir.c>

DirectoryIndex index.html index.shtml index.wml index.pwml index.php index.php3 index.php4

</IfModule>

 

AccessFileName .htaccess

 

<Files ~ "^\.ht">

Order allow,deny

Deny from all

Satisfy All

</Files>

 

UseCanonicalName Off

 

<IfModule mod_mime.c>

TypesConfig conf/mime.types

</IfModule>

 

DefaultType text/plain

 

<IfModule mod_mime_magic.c>

MIMEMagicFile conf/magic

</IfModule>

 

HostnameLookups Off

 

ErrorLog logs/error.log

 

LogLevel warn

 

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined

...

LogFormat "%{User-agent}i" agent

 

CustomLog logs/access.log common

 

ServerSignature Email

 

<IfModule mod_alias.c>

Alias /icons/ "${path}/apache/icons/"

 

<Directory "${path}/apache/icons">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

 

 

Alias /images_easyphp/ "${path}/home/images_easyphp/"

 

<Directory "${path}/home/images_easyphp">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

</Directory>

 

 

Alias /mysql/ "${path}/phpmyadmin/"

 

<Directory "${path}/phpmyadmin">

Options FollowSymLinks Indexes

AllowOverride None

Order deny,allow

allow from 127.0.0.1

deny from all

</Directory>

 

 

Alias /home/ "${path}/home/"

 

<Directory "${path}/home">

Options FollowSymLinks Indexes

AllowOverride None

Order deny,allow

allow from 127.0.0.1

deny from all

</Directory>

ScriptAlias /cgi-bin/ "${path}/cgi-bin/"

 

<Directory "${path}/cgi-bin">

AllowOverride None

Options None

Order allow,deny

Allow from all

</Directory>

 

</IfModule>

<IfModule mod_autoindex.c>

IndexOptions FancyIndexing

AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

...

AddIcon /icons/blank.gif ^^BLANKICON^^

DefaultIcon /icons/unknown.gif

AddDescription "GZIP compressed document" .gz

...

AddDescription "Win32 Executable" .exe

ReadmeName README

HeaderName HEADER

IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

 

</IfModule>

<IfModule mod_mime.c>

AddEncoding x-compress Z

AddEncoding x-gzip gz tgz

AddLanguage da .dk

...

AddLanguage he .he

 

<IfModule mod_negotiation.c>

LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw

</IfModule>

AddType application/x-tar .tgz

...

AddType image/vnd.wap.wbmp .wbmp

AddHandler cgi-script .cgi

 

AddType text/html .shtml

AddHandler server-parsed .shtml

 

</IfModule>

<IfModule mod_setenvif.c>

 

BrowserMatch "Mozilla/2" nokeepalive

...

BrowserMatch "JDK/1\.0" force-response-1.0

 

</IfModule>

Der letzte Beitrag zu diesem Thema ist mehr als 180 Tage alt. Bitte erstelle einen neuen Beitrag zu Deiner Anfrage!

Erstelle ein Benutzerkonto oder melde dich an, um zu kommentieren

Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können

Benutzerkonto erstellen

Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!

Neues Benutzerkonto erstellen

Anmelden

Du hast bereits ein Benutzerkonto? Melde dich hier an.

Jetzt anmelden
×
×
  • Neu erstellen...