Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/03/2013, 11:49
Avatar de Patriarka
Patriarka
 
Fecha de Ingreso: enero-2011
Ubicación: Moreno, Buenos Aires, Argentina
Mensajes: 2.851
Antigüedad: 13 años, 3 meses
Puntos: 288
Respuesta: WAMP vs AMPPS

Bueno me respondo a mi solo,
lo resolvi tocando los .conf del apache en este engrendo de Ampps

lo que hay que hacer es comentar un codigo que pisa cualquier otra configuracion personalizada de virtualhost, el archivo es D:\Ampps\conf\httpd.conf
Código Apache:
Ver original
  1. #### Localhost VirtualHost ####
  2.  
  3. #### EDITADO ####
  4.  
  5. # ANULO ESTE CODIGO POR QUE PISA TODAS LAS APLICACIONES PERSONALIZADAS
  6.  
  7. #<VirtualHost 127.0.0.1:80>
  8. #<Directory "{$path}/www">
  9. #   Options FollowSymLinks Indexes
  10. #   AllowOverride All
  11. #   Order deny,allow
  12. #   allow from All
  13. #</Directory>
  14. #ServerName localhost
  15. #ServerAlias localhost 127.0.0.1
  16. #ScriptAlias /cgi-bin/ "{$path}/www/cgi-bin/"
  17. #DocumentRoot "{$path}/www"
  18. #ErrorLog "{$path}/apache/logs/error.err"
  19. #CustomLog "{$path}/apache/logs/access.log" combined
  20. #</VirtualHost>
  21.  
  22. #APLICACIONES PERSONALIZADAS
  23.  
  24. #
  25. # Use name-based virtual hosting.
  26. #
  27. NameVirtualHost *:80
  28. #
  29.  
  30. #DINEMOSJUNTOS
  31. <VirtualHost *:80>
  32.     ServerAdmin webmaster@localhost
  33.     ServerName proyecto.local
  34.     ServerAlias *.proyecto.local
  35.     DocumentRoot "D:/Ampps/www/proyecto/site/"
  36.     <Directory "D:/Ampps/www/proyecto/site/">
  37.          Options FollowSymLinks
  38.          AllowOverride All
  39.          Order allow,deny
  40.          allow from all
  41.     </Directory>
  42.     ScriptAlias /php/ "D:/Ampps/php/"
  43.     AddType application/x-httpd-php .php
  44.     # For PHP 5
  45.     Action application/x-httpd-php "/php/php-cgi.exe"
  46. </VirtualHost>