Puse un Ubuntu Server 6.10 con LAMP. Hasta ahi todo OK. El problema es que hay una aplicacion que no me anda, porque debo haber hecho algo mal. Porque en el script (.pl) de instalacion la ultima pregunta no la entendi y le di enter. Ahora no puedo encontrar el script, pero igual viendo lo que pasa pueden quizas darse cuenta del problema. Son 2 problemas, por un lado no anda el dir virtual que esto me creo y el otro problema es que si voy manualmente al dir del server (con el navegador), no anda. Pero esto ultimo ahora no importa, primero quiero arreglar lo del dir virtual. En el apache2.conf se me agrego lo siguiente:
================================================================== #### XGDB-core configuration directives Alias /XGDBhtml "/var/www/xgdb_1_0/XGDB/html_xGDB/" Alias /XGDBjs "/var/www/xgdb_1_0/XGDB/javascripts/" <Directory "/var/www/xgdb_1_0/XGDB/html_xGDB"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> #### xGDBdemo configuration Alias /xGDBdemo "/var/www/xgdb_1_0/xGDBdemo/html/" Alias /xGDBdemo-chtml "/var/www/xgdb_1_0/XGDB/html_xGDB/" ScriptAlias /xGDBdemo-cgi "/var/www/xgdb_1_0/XGDB/cgi-bin/" <Directory "/var/www/xgdb_1_0/xGDBdemo/html"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> <LocationMatch "/xGDBdemo"> php_value include_path .::/var/www/xgdb_1_0/xGDBdemo/conf:/var/www/xgdb_1_0/XGDB/phplib SetEnv PERL5LIB /var/www/xgdb_1_0/xGDBdemo/conf:/var/www/xgdb_1_0/XGDB/perllib:/var/www/xgdb_1_0/XGDB/perllib/DSO </LocationMatch> ================================================================== Lo que implicaria que si yo desde el navegador voy a http://miip/XGDBhtml tendria que ver la pagina que esta alojada /var/www/xgdb_1_0/xGDBdemo/html/ y no pasa eso, tengo que ir "a mano" a ese dir. Pero ademas, tengo un archivo llamado default en /etc/apache2/sites-available y este es el contenido: ================================================================== NameVirtualHost * <VirtualHost *> ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all # Uncomment this directive is you want to see apache2's # default start page (in /apache2-default) when you go to / #RedirectMatch ^/$ /apache2-default/ </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ "/usr/share/doc/" <Directory "/usr/share/doc/"> Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 </Directory> </VirtualHost> ================================================================== Alguna sugerencia? -- Para desuscribirte tenés que visitar la página https://listas.linux.org.ar/mailman/listinfo/lugar-gral/ /* Publica y encontra trabajo relacionado con softlibre en http://www.usla.org.ar/modules/jobs/ */ Si tenés algún inconveniente o consulta escribí a mailto:[EMAIL PROTECTED]
