Allowed memory size of (numero1) bytes exausted when tried to allocate (numero2) bytes on (archivo)
Y "numero1" es mas pequeño que "numero2", es porque Icy Phoenix esta configurado para un uso de memoria de Php mas pequeño, adaptado a la mayoría de servidores. Para solucionarlo:
ABRIR "board_root"/.htaccess
ENCONTRAR
#php_value memory_limit 32M
REMPLAZAR CON
php_value memory_limit 32M
Importante: El numero 32 puede ser cualquier otro, mientras sea multiplo de 8.
Si necesitas "deshabilitar register_globals" (sin modificar php.ini):
ABRIR "board_root"/.htaccess
ENCONTRAR
#php_flag register_globals 0
#php_flag register_globals off
#php_flag register_globals off
REMPLAZAR CON
php_flag register_globals 0
php_flag register_globals off
php_flag register_globals off
Para cambiar la pagina de error
ABRIR "board_root"/.htaccess
ENCONTRAR
#ErrorDocument 400 http://127.0.0.1/errors.php?code=400
#ErrorDocument 401 http://127.0.0.1/errors.php?code=401
#ErrorDocument 403 http://127.0.0.1/errors.php?code=403
#ErrorDocument 404 http://127.0.0.1/errors.php?code=404
#ErrorDocument 500 http://127.0.0.1/errors.php?code=500
#ErrorDocument 401 http://127.0.0.1/errors.php?code=401
#ErrorDocument 403 http://127.0.0.1/errors.php?code=403
#ErrorDocument 404 http://127.0.0.1/errors.php?code=404
#ErrorDocument 500 http://127.0.0.1/errors.php?code=500
REMPLAZAR CON
ErrorDocument 400 http://127.0.0.1/errors.php?code=400
ErrorDocument 401 http://127.0.0.1/errors.php?code=401
ErrorDocument 403 http://127.0.0.1/errors.php?code=403
ErrorDocument 404 http://127.0.0.1/errors.php?code=404
ErrorDocument 500 http://127.0.0.1/errors.php?code=500
ErrorDocument 401 http://127.0.0.1/errors.php?code=401
ErrorDocument 403 http://127.0.0.1/errors.php?code=403
ErrorDocument 404 http://127.0.0.1/errors.php?code=404
ErrorDocument 500 http://127.0.0.1/errors.php?code=500
Nota: Hay que poner la URL de tu sitio en vez de "http://127.0.0.1"
Para deshabilitar el rewrite MOD (No importa lo que haya en el ACP):
ABRIR
ENCONTRAR
RewriteEngine On
REMPLAZAR CON
RewriteEngine Off
Para asegurarte que no hay errores en la URL:
ABRIR "board_root"/.htaccess
ENCONTRAR
#Make sure the whole site goes to www.mysite.com instead of mysite.com. This is good for the search engines
#Edit and uncomment the below lines for your own site.
#Make sure to replace icyphoenix.com with your site address.
#RewriteCond %{HTTP_HOST} ^icyphoenix.com
#RewriteRule (.*) http://www.icyphoenix.com/$1 [R=301,L]
#Edit and uncomment the below lines for your own site.
#Make sure to replace icyphoenix.com with your site address.
#RewriteCond %{HTTP_HOST} ^icyphoenix.com
#RewriteRule (.*) http://www.icyphoenix.com/$1 [R=301,L]
REMPLAZAR CON
#Make sure the whole site goes to www.mysite.com instead of mysite.com. This is good for the search engines
#Edit and uncomment the below lines for your own site.
#Make sure to replace icyphoenix.com with your site address.
RewriteCond %{HTTP_HOST} ^icyphoenix.com
RewriteRule (.*) http://www.icyphoenix.com/$1 [R=301,L]
#Edit and uncomment the below lines for your own site.
#Make sure to replace icyphoenix.com with your site address.
RewriteCond %{HTTP_HOST} ^icyphoenix.com
RewriteRule (.*) http://www.icyphoenix.com/$1 [R=301,L]
Note: En la primera linea a reemplazar hay que poner la direccion sin "www." en caso de tener un domino y en la segunda linea con esa parte. si es un subdominio, hazlo al reves.
Fuente:
Yo mismo en la pagina de icy phoenix. Esto es una traduccion.





















































