Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/04/2011, 04:41
rafaslasla
 
Fecha de Ingreso: abril-2011
Mensajes: 7
Antigüedad: 13 años
Puntos: 0
Respuesta: instalación apache y librerías en 1&1

ok, el php.ini creo que ya lo he hecho, en un block de notas he puesto simplemente la configuración que dice ahí:
safe_mode = off
short_open_tag = on
output_buffering = on
register_argc_argv = On
session.gc_maxlifetime = 1440
register_globals = off
magic_quotes_gpc = on
allow_url_fopen = o
Estaría bien declarado así?

y después con el Apache... tengo creado un archivo .thaccess en el que tengo escrito lo siguiente para lo del mod rewrite:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^signup$ /signup.php
RewriteRule ^account$ /account.php
RewriteRule ^logout$ /logout.php
RewriteRule ^login$ /login.php
RewriteRule ^view/(.*)/(.*) /view.php?cat=$1&pid=$2
RewriteRule ^category/(.*)/(.*) /category.php?cat=$1&name=$2
RewriteRule ^top$ /top.php
RewriteRule ^flop$ /flop.php
RewriteRule ^random$ /random.php
RewriteRule ^password$ /password.php
RewriteRule ^confirmemail/(.*) /confirmemail.php?code=$1
RewriteRule ^resetpassword/(.*) /resetpassword.php?code=$1
RewriteRule ^editaccount$ /editaccount.php
RewriteRule ^changeemail$ /changeemail.php
RewriteRule ^changepass$ /changepass.php
RewriteRule ^resendconfirmation/(.*) /resendconfirmation.php?userid=$1
RewriteRule ^favorites$ /favorites.php
RewriteRule ^members/(.*)/(.*) /memberprofile.php?pid=$1&name=$2
RewriteRule ^advanced_search$ /advanced_search.php
RewriteRule ^moderate$ /moderate.php
RewriteRule ^termsofuse$ /termsofuse.php
RewriteRule ^privacypolicy$ /privacypolicy.php
RewriteRule ^aboutus$ /aboutus.php
RewriteRule ^advertising$ /advertising.php
RewriteRule ^contactus$ /contactus.php
RewriteRule ^mailbox$ /mailbox.php
RewriteRule ^log_out$ /log_out.php
RewriteRule ^man$ /man.php
RewriteRule ^woman$ /woman.php
</IfModule>

<IfModule mod_security.c>
# Turn off mod_security filtering.
SecFilterEngine Off

# The below probably isn't needed,
# but better safe than sorry.
SecFilterScanPOST Off
</IfModule>

Está todo correcto? Por favor necesitaría ayuda