Mudanças entre as edições de "Dreamhost"
De MochilaWiki
Ir para navegaçãoIr para pesquisarm |
|||
Linha 15: | Linha 15: | ||
* http://wiki.dreamhost.com/Making_stats_accessible_with_htaccess | * http://wiki.dreamhost.com/Making_stats_accessible_with_htaccess | ||
* http://climbtothestars.org/archives/2006/12/22/hairy-htaccess-dreamhost-wordpress-problem-solved/ | * http://climbtothestars.org/archives/2006/12/22/hairy-htaccess-dreamhost-wordpress-problem-solved/ | ||
+ | |||
+ | == php.ini == | ||
+ | <source lang="bash"> | ||
+ | mkdir -p ~/.php/5.4 | ||
+ | echo "max_execution_time = 500" >> ~/.php/5.4/phprc | ||
+ | </source> | ||
[[Categoria:Servidor]] | [[Categoria:Servidor]] |
Edição das 23h05min de 19 de julho de 2015
no wordpress rola um erro com o htaccess, se removido, de alguma forma ele é recriado, e o padrão bloqueia o site no navegador.. para corrigir fiz um ajuste numa linha.. a comentada é como estava por padrão
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . /index.php [L]
RewriteRule . /index.php
</IfModule>
- http://wiki.dreamhost.com/Making_stats_accessible_with_htaccess
- http://climbtothestars.org/archives/2006/12/22/hairy-htaccess-dreamhost-wordpress-problem-solved/
php.ini
mkdir -p ~/.php/5.4
echo "max_execution_time = 500" >> ~/.php/5.4/phprc