Foros del Web » Administración de Sistemas » Apache »

mi porpio wamp

Estas en el tema de mi porpio wamp en el foro de Apache en Foros del Web. Hola, por cuestiones de mi centro de trabajo no me permiten utilizar el wamp ni el xamp, ni ninguna otra app. Por lo que me ...
  #1 (permalink)  
Antiguo 10/12/2012, 06:51
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
mi porpio wamp

Hola,
por cuestiones de mi centro de trabajo no me permiten utilizar el wamp ni el xamp, ni ninguna otra app.
Por lo que me obligan a instalar:
Apache,
Mysql,
PHP,
PhpMyAdmin
de uno en uno, es decir todos como inataladores independientes, yo he tratado de configurar cada uno para que se comuniquen entre todos y lo he logrado , gracias a la ayuda de la internet, pero ahora me encuetro con un problema y es que el modo rewrite de apache no me esta funcionando del todo bien, o mejor dicho no me funciona a pesar de que tengo descomentariada la linea qu elo habilita.
Espero qu eme puedan ayudar con el modo rewrite para poder utilizar URL amigables
un saludo.
  #2 (permalink)  
Antiguo 10/12/2012, 18:56
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

mod_rewrite no requiere más dependencias que
LoadModule rewrite_module modules/mod_rewrite.so

Una vez cargado el módulo podés activarlo con
RewriteEngine on

Segun el tipo de directiva que uses necesitarás también
Options +FollowSymLinks

ejemplo:

Código Apache:
Ver original
  1. Options  +FollowSymLinks
  2. RewriteEngine on
  3. RewriteCond %{HTTP:Accept-Language} ^de [NC]
  4. RewriteRule ^$ /de/hauptseite [L,R=301]

Por supuesto, si estás definiendo las reglas en .htaccess, lo primero que tenés que hacer es activar el uso de .htaccess, esto lo vas a conseguir agregando al
<directory>
</directory>
para la carepeta que corresponda, la directiva

AllowOverride all

ejemplo

Código Apache:
Ver original
  1. <Directory "/www/juan/htdocs">
  2. AllowOverride All
  3. </directory>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #3 (permalink)  
Antiguo 11/12/2012, 05:47
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Hola emprear
Yo estoy instalando cada producto por separado,
apache, mysql, php y phpmyadmin para vincularlos configuro los ficheros necesarios segun un manual que me encontre. Hata el dia de ayer tod funcionaba a la perfeccion salvo que necesite instalar codeigniter y utilizar url amigables y no funciono, tambien trate con el plugin budypress de wordpress y no funciono, probe con bonfire y no funciono...Todas esas aplicaciones tienen bien configurados sus .htaccess y eso lo comprobe porque en otra pc instale el wamp y corrieron sin problemas. El lio esta en la configuracion de mi apache u otro.

Cuando hago lo que me dices:
AllowOverride All
me da como respuesta que no se encuentra la pagina 404


que puede ser todo esto?
ayudenme por favor
  #4 (permalink)  
Antiguo 11/12/2012, 05:58
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

Pone un fragmento de un .htaccess donde hagas urls amigables

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #5 (permalink)  
Antiguo 11/12/2012, 06:04
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

<IfModule mod_rewrite.c>
# Make sure directory listing is disabled
Options +FollowSymLinks -Indexes
RewriteEngine on

# Send request via index.php (if it's not an existing file/folder)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>

Pero recuerda ya probe este codigo en un wamp y funciona, si lo pruebo en mi instalacion de apache NO
  #6 (permalink)  
Antiguo 11/12/2012, 06:17
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

comentá todos los if module, si te arroja un error 500, es que alguno no está cargado.
Por otra parte. como instalaste php en apache? para verificar hacé un phpinfo() y el valor para
Server API

además esta regla no la entiendo
RewriteRule ^(.*)$ index.php?/$1 [L]

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #7 (permalink)  
Antiguo 11/12/2012, 06:30
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

te envio los pasos que he seguido paar instalar apache y php y demas modulos


Código:
Instalacion de Servidor WEB
---------------------------
Solo se expondran los modulos a instalar por orden y los pasos fundamentales en cada instalacion


1- Instalacion APACHE
	1.1 Network Domain = 	localhost
	1.2 Server Name = 		localhost
	1.3 Admin Email =		[email protected]
	1.4 Instalacion Custom
	1.5 Instalacion Path = 	C:\webserver\apache
	1.6 Comprobamos que funciona en el navegador:	localhost (It works!)
	
2- Configuracion Apache (fichero apache\conf\httpd.conf)
	2.1 Quitar comentario a ServerName
---------------------------------------------
	
3- Instalacion PHP
	3.1 Descompactar PHP y copiar carpeta a C:\webserver\php
	3.2 Copiar todas las DLL (NO las de los subdirectorios) en System32
	3.3 Cambiar nombre de php.ini-development por php.ini

4- Configuracion PHP (fichero php\php.ini)
	4.1 Register_globals = Off
	4.2 Descomentamos extension_dir
		4.2.1 Agregamos la direccion de nuestra instalacion de PHP mas ext
			  debe quedar asi: extension_dir = "C:/webserver/php/ext"
	4.3 Descomentamos upload_tmp_dir
		4.3.1 Le gragamos C:/webserver/apache/htdocs/uploads
			  debe quedar asi: upload_tmp_dir = "C:/webserver/apache/htdocs/uploads"
		4.3.2 Creamos la carpeta uploads en apache\htdocs
	4.4 upload_max_filesize = 10M
	4.5 Descomentamos session.save_path
		4.5.1 Le agregamos C:/webserver/apache/htdocs/sessions
			  debe quedar asi: session.save_path = "C:/webserver/apache/htdocs/sessions"
		4.5.2 Creamos la carpeta sessions en apache\htdocs
	4.6 Copiar el fichero php.ini en Windows
	
---------------------------------------------
5- Configurar APACHE para que cargue el modulo de PHP (fichero apache\httpd.conf)
	5.1 Buscar Load Module
	5.2 Agregar al final de Load Module
		5.2.1 LoadModule php5_module "C:/webserver/php/php5apache2_2.dll"
		5.2.2 PHPIniDir "C:/webserver/php/"
	5.3 Buscar DirectoryIndex
		5.3.1 Donde dice <IfModule dir_module>
		5.3.2 Debe quedar asi:
			<IfModule dir_module>
				DirectoryIndex index.php index.html
			</IfModule>
		5.3.3 Agregamos debajo
			<IfModule mod_php5.c>
				AddType application/x-httpd-php .php
				AddType application/x-httpd-php-source .phps
			</IfModule>
	5.4 Comprobamos que los cambios esten correctos y que PHP funciona
		5.4.1 En apache\htdocs creamos un fichero llamado test.php y le escibimos dentro			
			<?php
				phpinfo();
			?>
		5.4.2 En el navegador escribimos localhost/test.php (debe salir la informacion de PHP)
		
---------------------------------------------
6- Instalar MySQL
	6.1 Instalacion Custom
	6.2 Instalacion Path = C:\webserver\mysql
	6.3 Detailed Configuration
	6.4 Developer Machine
	6.5 Multifuntional DataBase
	6.6 Number Connectios configuramos Manual Settings a 15 conexiones
	6.7 Marcar Add firewall exception
	6.8 Seleccionar el Charset para la BD UTF-8
	6.9 Marcar Include Bin Directory in Windows PATH
	6.10 Ponemos el password de root y marcamos Enable root access from remote machine
	
---------------------------------------------	
7-	Instalar phpMyAdmin
	7.1 Descompactamos y ponemos la carpeta phpMyAdmin en webserver
	7.2 Configuramos php.ini
		7.2.1 Vamos a la session Dynamic Extensions
		7.2.2 Descomentamos:
					extension=php_bz2.dll
					extension=php_mysql.dll
					extension=php_mysqli.dll
					extension=php_mbstring.dll
		7.2.3 Vamos a la session BD: [MySQL]
		7.2.4 Debe quedar asi:
					mysql.default_port = "3306"
					mysql.default_host = "http://localhost/"
	7.3 En la carpeta phpMyAdmin cambiamos:
		config.sample.inc.php POR config.inc.php
		7.3.1 Abrimos el fichero y buscamos:
			$cfg['blowfish_secret'] y ponemos una clave extraña cualquiera
			$cfg['blowfish_secret'] = 'M*2Qa8b7c6ddvGND6ch*2QV';
	7.4 Vamos a apache el fichero: httpd.conf
		7.4.1 Buscamos la session: <IfModule alias_module>
			Alias /phpmyadmin "C:/webserver/phpMyAdmin/"
		7.4.2 Despues del cierre de </IfModule> ponemos:
			<Directory "C:/webserver/phpMyAdmin/">
				AllowOverride None
				Options None
				Order allow,deny
				Allow from all
			</Directory>
  #8 (permalink)  
Antiguo 11/12/2012, 07:16
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

Por lo que se vé en esta linea
LoadModule php5_module "C:/webserver/php/php5apache2_2.dll"
instalaste php como módulo de apache
tus condicionales en .htaccess deberían ser

<IfModule php5_module>
#directivas
</ifModule>

Pero vamos a ir testeando una a una las cosas, renombra tu .htaccess actual y crea uno nuevo en la raiz con el siguiente contenido

Código Apache:
Ver original
  1. Options +FollowSymLinks
  2. RewriteEngine On
  3. RewriteRule ^iralforo$ http://forosdelweb.com [L]

solo eso, si te lleva a Foros del Web. modRewrite te está funcionando y lo que están mal son las reglas, pero eso ya es otra cosa

Saludos

luego tipea en la barra de direcciones
http://localhost/iralforo
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #9 (permalink)  
Antiguo 11/12/2012, 07:51
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Me responde esto:
The requested URL /iralforo was not found on this server.
  #10 (permalink)  
Antiguo 11/12/2012, 08:03
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

entonces mod rewrite no te está funcionando, a mi me lleva a foros del web.
Sin ver todo tu httpd.conf no estoy muy seguro de lo que te pasa.
Si es posible pasámelo, al igual que versiones de apache y php que estés utilizando
(si no entra el httpd.conf en el post decime que te mando un mp con una dirección de email para que me lo envíes)
Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #11 (permalink)  
Antiguo 11/12/2012, 08:31
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Aqui te envio el httpd.conf de apache

Código:
#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see 
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "C:/servidor/apache" will be interpreted by the
# server as "C:/servidor/apache/logs/foo.log".
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
# If a drive letter is omitted, the drive on which httpd.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths to avoid confusion.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk.  If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot "C:/servidor/apache"

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule authn_alias_module modules/mod_authn_alias.so
#LoadModule authn_anon_module modules/mod_authn_anon.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
#LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule cache_module modules/mod_cache.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule cgi_module modules/mod_cgi.so
#LoadModule charset_lite_module modules/mod_charset_lite.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_lock_module modules/mod_dav_lock.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
#LoadModule disk_cache_module modules/mod_disk_cache.so
#LoadModule dumpio_module modules/mod_dumpio.so
LoadModule env_module modules/mod_env.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule ext_filter_module modules/mod_ext_filter.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule filter_module modules/mod_filter.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule imagemap_module modules/mod_imagemap.so
LoadModule include_module modules/mod_include.so
#LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
#LoadModule ldap_module modules/mod_ldap.so
#LoadModule logio_module modules/mod_logio.so
LoadModule log_config_module modules/mod_log_config.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule mime_module modules/mod_mime.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule negotiation_module modules/mod_negotiation.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule ssl_module modules/mod_ssl.so
#LoadModule status_module modules/mod_status.so
#LoadModule substitute_module modules/mod_substitute.so
#LoadModule unique_id_module modules/mod_unique_id.so
#LoadModule userdir_module modules/mod_userdir.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule version_module modules/mod_version.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule php5_module "C:/servidor/php/php5apache2_2.dll"
PHPIniDir "C:/servidor/php/"

<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.  
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon

</IfModule>
</IfModule>

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin [email protected]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName localhost:80

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/servidor/apache/htdocs"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/servidor/apache/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>
  #12 (permalink)  
Antiguo 11/12/2012, 08:32
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Aqui la parte que falta pues entera no pasaba
Código:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.php index.html
</IfModule>

<IfModule mod_php5.c>
	AddType application/x-httpd-php .php
	AddType application/x-httpd-php-source .phps
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</FilesMatch>

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog "logs/error.log"

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    CustomLog "logs/access.log" common

    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "logs/access.log" combined
</IfModule>

<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to 
    # exist in your server's namespace, but do not anymore. The client 
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://localhost/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts. 
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    ScriptAlias /cgi-bin/ "C:/servidor/apache/cgi-bin/"
	Alias /phpmyadmin "C:/servidor/phpMyAdmin/"

</IfModule>
<Directory "C:/servidor/phpMyAdmin/">
	AllowOverride None
	Options None
	Order allow,deny
	Allow from all
</Directory> 

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock logs/cgisock
</IfModule>

#
# "C:/servidor/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/servidor/apache/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

#
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    TypesConfig conf/mime.types

    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    # For type maps (negotiated resources):
    #AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile conf/magic

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://localhost/subscription_info.html
#

#
# EnableMMAP and EnableSendfile: On systems that support it, 
# memory-mapping or the sendfile syscall is used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted 
# filesystems or if support for these functions is otherwise
# broken on your system.
#
#EnableMMAP off
#EnableSendfile off

# Supplemental configuration
#
# The configuration files in the conf/extra/ directory can be 
# included to add extra features or to modify the default configuration of 
# the server, or you may simply copy their contents here and change as 
# necessary.

# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf

# Multi-language error messages
#Include conf/extra/httpd-multilang-errordoc.conf

# Fancy directory listings
#Include conf/extra/httpd-autoindex.conf

# Language settings
#Include conf/extra/httpd-languages.conf

# User home directories
#Include conf/extra/httpd-userdir.conf

# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf

# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf

# Various default settings
#Include conf/extra/httpd-default.conf

# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
  #13 (permalink)  
Antiguo 11/12/2012, 08:33
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Estoy utilizando lo siguiente:
apache_2.2.9-win32-x86-openssl-0.9.8h-r2.msi
php-5.3.5-Win32-VC6-x86
phpMyAdmin-3.5.4-1.zip
mysql-5.5.28-win32.msi
  #14 (permalink)  
Antiguo 11/12/2012, 08:34
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Muchisimas gracias por la etencion,emprear, de veras te lo agradezco
  #15 (permalink)  
Antiguo 11/12/2012, 08:45
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

asi a primera vista, mirá la linea 226

AllowOverride None

debe ser

AllowOverride All


Caso contrario el .htaccess NO te funciona, tal cual te comenté en los primeros posts, probá eso y ejecutá el .htaccess de prueba que te indiqué (el que redirige a FDW)

Por supuesto que asumo que tu raiz es /htdocs

Si funciona, entonces ya todo es cuestión de que tus otras reglas estén bien hechas(que ya es otra historia), si no, avisame que lo veo con más detalle.
Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #16 (permalink)  
Antiguo 11/12/2012, 15:48
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Ya cambie

AllowOverride None por AllowOverride All
y no me funciono,

tambien edite el .htaccess
y puse esto:
Código:
<IfModule php5_module>
	Options +FollowSymLinks
RewriteEngine On
RewriteRule ^iralforo$ http://forosdelweb.com [L]
</IfModule>
pero tampoco me funciona....? he buscado muchismo en la internet pero aun nada, sigo contando contigo...
  #17 (permalink)  
Antiguo 11/12/2012, 17:07
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Hola, nuevamente en el htaccess puse esto:
Código:
<IfModule mod_rewrite.c>
	# Make sure directory listing is disabled
	Options +FollowSymLinks -Indexes
	RewriteEngine on
	
	# Send request via index.php (if it's not an existing file/folder)
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	
	<IfModule mod_php5.c>
		RewriteRule ^(.*)$ index.php/$1 [L]
	</IfModule>

	<IfModule !mod_php5.c>
		RewriteRule ^(.*)$ index.php?/$1 [L]
	</IfModule>
</IfModule>
y funciona, claro con el cambio que me pediste que hiciera:
AllowOverride All
Pero otro programa con otro htaccess no me funciona y su codigo es:

Código:
# ----------------------------------------------------------------------
# Webfont access
# ----------------------------------------------------------------------

# Allow access from all domains for webfonts.
# Alternatively you could only whitelist your
# subdomains like "subdomain.example.com".

<IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>

# ----------------------------------------------------------------------
# Proper MIME type for all files
# ----------------------------------------------------------------------

  # JavaScript
  #   Normalize to standard type (it's sniffed in IE anyways)
  #   tools.ietf.org/html/rfc4329#section-7.2
  AddType application/javascript         js
  
  # Audio
  AddType audio/ogg                      oga ogg
  AddType audio/mp4                      m4a
  
  # Video
  AddType video/ogg                      ogv
  AddType video/mp4                      mp4 m4v
  AddType video/webm                     webm
  
  # SVG
  #   Required for svg webfonts on iPad
  #   twitter.com/FontSquirrel/status/14855840545
  AddType     image/svg+xml              svg svgz
  AddEncoding gzip                       svgz
  
  # Webfonts
  AddType application/vnd.ms-fontobject  eot
  AddType application/x-font-ttf         ttf ttc
  AddType font/opentype                  otf
  AddType application/x-font-woff        woff
  
  # Assorted types
  AddType image/x-icon                        ico
  AddType image/webp                          webp
  AddType text/cache-manifest                 appcache manifest
  AddType text/x-component                    htc
  AddType application/xml                     rss atom xml rdf
  AddType application/x-chrome-extension      crx
  AddType application/x-opera-extension       oex
  AddType application/x-xpinstall             xpi
  AddType application/octet-stream            safariextz
  AddType application/x-web-app-manifest+json webapp
  AddType text/x-vcard                        vcf

# ----------------------------------------------------------------------
# Gzip compression
# ----------------------------------------------------------------------

<IfModule mod_deflate.c>

  # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
  <IfModule mod_setenvif.c>
    <IfModule mod_headers.c>
      SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
      RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
    </IfModule>
  </IfModule>

  # HTML, TXT, CSS, JavaScript, JSON, XML, HTC:
  <IfModule filter_module>
    FilterDeclare   COMPRESS
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/html
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/css
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/plain
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/x-component
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/javascript
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/json
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/xhtml+xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/rss+xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/atom+xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/vnd.ms-fontobject
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $image/svg+xml
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $image/x-icon
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/x-font-ttf
    FilterProvider  COMPRESS  DEFLATE resp=Content-Type $font/opentype
    FilterChain     COMPRESS
    FilterProtocol  COMPRESS  DEFLATE change=yes;byteranges=no
  </IfModule>

  <IfModule !mod_filter.c>
    # Legacy versions of Apache
    AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
    AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml
    AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
  </IfModule>

</IfModule>

# ----------------------------------------------------------------------
# Start rewrite engine
# ----------------------------------------------------------------------

# Turning on the rewrite engine is necessary for the following rules and features.
# FollowSymLinks must be enabled for this to work.

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Indexes
  RewriteEngine On
  
  # If you installed Bonfire in a subfolder, you will need to 
  # change the following line to match the subfolder you need. 
  # http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase
  RewriteBase /
  
  #Removes access to the system folder by users.
  #Additionally this will allow you to create a System.php controller,
  #previously this would not have been possible.
  #'system' can be replaced if you have renamed your system folder.
  RewriteCond %{REQUEST_URI} ^bonfire/codeigniter.*
  RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>

# Rewrite "www.example.com -> example.com"

<IfModule mod_rewrite.c>
  RewriteCond %{HTTPS} !=on
  RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
</IfModule>


	
#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php

<IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

# ----------------------------------------------------------------------
# UTF-8 encoding
# ----------------------------------------------------------------------

# Use UTF-8 encoding for anything served text/plain or text/html
AddDefaultCharset utf-8

# Force UTF-8 for a number of file formats
AddCharset utf-8 .css .js .xml .json .rss .atom

# Block access to "hidden" directories whose names begin with a period. This
# includes directories used by version control systems such as Subversion or Git.
<IfModule mod_rewrite.c>
  RewriteCond %{SCRIPT_FILENAME} -d
  RewriteCond %{SCRIPT_FILENAME} -f
  RewriteRule "(^|/)\." - [F]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 index.php
</IfModule>

que puede ser esto?
  #18 (permalink)  
Antiguo 13/12/2012, 08:40
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

No funciona porque estás equivocando el camino, en lugar de llenar tu .htaccess de ejemplos sin analizarlos, fijate que querés hacer y el por/para que y probá una cosa a la vez

Si querés saber si te funciona la compresión gzip

agregá

Código Apache:
Ver original
  1. AddOutputFilterByType DEFLATE application/xhtml+xml
  2. AddOutputFilterByType DEFLATE text/plain
  3. AddOutputFilterByType DEFLATE text/html
  4. AddOutputFilterByType DEFLATE text/xml
  5. AddOutputFilterByType DEFLATE text/css
  6. AddOutputFilterByType DEFLATE text/javascript
  7. AddOutputFilterByType DEFLATE application/xml
  8. AddOutputFilterByType DEFLATE application/rss+xml
  9. AddOutputFilterByType DEFLATE application/javascript
  10. AddOutputFilterByType DEFLATE application/x-javascript
  11. AddOutputFilterByType DEFLATE image/jpeg

y verifica si lo hace o hay error, para el caso anterior tenés que cargar mod_deflate, y si estás probando, dejá de usar condicionales, mejor que te aparezca el error y revisar los logs de apache

Obviamente, para tanta cosa que estás experimentando, lo obvio es leer el manual de apache y las dependencias de módulos necesarias para el uso de las diferentes directivas
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #19 (permalink)  
Antiguo 13/12/2012, 12:52
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

emprear, muchas gracias por la ayuda que me estas prestando.
Sucede que yo de apache no se mucho por eso postee la duda por aqui.
Eoss dos htaccess que publique no son mios, son de aplicaciones bastantes profecionales:
CodeIgniter y Bonfire la otra que pulique es de EsoTalk otro Foro de Php
Ahora, te comentaba en pots anteriores que esos htacces SI funcionan si instalo en mi PC el wamp, pero yo no puedo instalarlo por directivas X entonces estoy instalando los serivicios por separado y cuando instalo mi apache con los demas (php, mysql) esas aplicaciones no me corren correctamente.
Lo que te quiero explicar con esto no es que yo estoy poniendo el codigo ni mucho menos yo solo me estoy preguntando que le falta a mi configuracion de apache con el mod rewrite que no le falte a el wamp?
Yo revise linea a linea el htconf del wamp y el mio y solo variaban en la linea que me sugeriste cambiar, pero aun nada...
  #20 (permalink)  
Antiguo 13/12/2012, 13:04
Avatar de emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 9 meses
Puntos: 1567
Respuesta: mi porpio wamp

Yo tampoco uso xampp ó wampp, tengo

Apache/2.2.21 (Win32) mod_fcgid/2.3.6 mod_aspdotnet/2.2
instalado standalone, al igual que php/ perl / mysql /etc
y con la siguiente configuración de módulos me funciona mod_rewrite
Código Apache:
Ver original
  1. LoadModule actions_module modules/mod_actions.so
  2. LoadModule alias_module modules/mod_alias.so
  3. LoadModule asis_module modules/mod_asis.so
  4. LoadModule auth_basic_module modules/mod_auth_basic.so
  5. #LoadModule auth_digest_module modules/mod_auth_digest.so
  6. #LoadModule authn_alias_module modules/mod_authn_alias.so
  7. #LoadModule authn_anon_module modules/mod_authn_anon.so
  8. #LoadModule authn_dbd_module modules/mod_authn_dbd.so
  9. #LoadModule authn_dbm_module modules/mod_authn_dbm.so
  10. LoadModule authn_default_module modules/mod_authn_default.so
  11. LoadModule authn_file_module modules/mod_authn_file.so
  12. #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
  13. #LoadModule authz_dbm_module modules/mod_authz_dbm.so
  14. LoadModule authz_default_module modules/mod_authz_default.so
  15. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
  16. LoadModule authz_host_module modules/mod_authz_host.so
  17. #LoadModule authz_owner_module modules/mod_authz_owner.so
  18. LoadModule authz_user_module modules/mod_authz_user.so
  19. LoadModule autoindex_module modules/mod_autoindex.so
  20. # x kio
  21. LoadModule dosevasive22_module modules/mod_dosevasive22.dll
  22. LoadModule cache_module modules/mod_cache.so
  23. #LoadModule cern_meta_module modules/mod_cern_meta.so
  24. LoadModule cgi_module modules/mod_cgi.so
  25. #LoadModule charset_lite_module modules/mod_charset_lite.so
  26. #LoadModule dav_module modules/mod_dav.so
  27. #LoadModule dav_fs_module modules/mod_dav_fs.so
  28. #LoadModule dav_lock_module modules/mod_dav_lock.so
  29. #LoadModule dbd_module modules/mod_dbd.so
  30. LoadModule deflate_module modules/mod_deflate.so
  31. LoadModule dir_module modules/mod_dir.so
  32. LoadModule disk_cache_module modules/mod_disk_cache.so
  33. #LoadModule dumpio_module modules/mod_dumpio.so
  34. LoadModule env_module modules/mod_env.so
  35. LoadModule expires_module modules/mod_expires.so
  36. #LoadModule ext_filter_module modules/mod_ext_filter.so
  37. #LoadModule file_cache_module modules/mod_file_cache.so
  38. #LoadModule filter_module modules/mod_filter.so
  39. LoadModule headers_module modules/mod_headers.so
  40. #LoadModule ident_module modules/mod_ident.so
  41. #LoadModule imagemap_module modules/mod_imagemap.so
  42. LoadModule include_module modules/mod_include.so
  43. LoadModule info_module modules/mod_info.so
  44. LoadModule isapi_module modules/mod_isapi.so
  45. #LoadModule ldap_module modules/mod_ldap.so
  46. #LoadModule logio_module modules/mod_logio.so
  47. LoadModule log_config_module modules/mod_log_config.so
  48. #LoadModule log_forensic_module modules/mod_log_forensic.so
  49. #LoadModule mem_cache_module modules/mod_mem_cache.so
  50. LoadModule mime_module modules/mod_mime.so
  51. #LoadModule mime_magic_module modules/mod_mime_magic.so
  52. LoadModule negotiation_module modules/mod_negotiation.so
  53. LoadModule proxy_module modules/mod_proxy.so
  54. #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
  55. LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
  56. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  57. LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
  58. LoadModule proxy_http_module modules/mod_proxy_http.so
  59. #LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
  60. #LoadModule reqtimeout_module modules/mod_reqtimeout.so
  61. LoadModule rewrite_module modules/mod_rewrite.so
  62. LoadModule setenvif_module modules/mod_setenvif.so
  63. #LoadModule speling_module modules/mod_speling.so
  64. #LoadModule ssl_module modules/mod_ssl.so
  65. LoadModule status_module modules/mod_status.so
  66. #LoadModule substitute_module modules/mod_substitute.so
  67. LoadModule unique_id_module modules/mod_unique_id.so
  68. LoadModule userdir_module modules/mod_userdir.so
  69. #LoadModule usertrack_module modules/mod_usertrack.so
  70. #LoadModule version_module modules/mod_version.so
  71. LoadModule vhost_alias_module modules/mod_vhost_alias.so

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.
  #21 (permalink)  
Antiguo 14/12/2012, 06:10
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Estoy revisando y te comento al final, gracias
  #22 (permalink)  
Antiguo 14/12/2012, 06:33
 
Fecha de Ingreso: febrero-2010
Ubicación: La Habana,Cuba
Mensajes: 89
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: mi porpio wamp

Nada aun sigo con el probelma

Etiquetas: amigables, php, url, wamp
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 21:37.