![]() |
|
site is totally screwed after importing wordpress blog - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: site is totally screwed after importing wordpress blog (/thread-7956.html) Pages:
1
2
|
site is totally screwed after importing wordpress blog - erika_conn - 19-12-2010 No matter which one I activate, it always comes up blank site is totally screwed after importing wordpress blog - acrylian - 19-12-2010 I did visit your site and what you have is a modrewrite/htaccess issue. Either your htaccess file is screwed up, your server misconfigured for this or you did not set the backend option for modrewrite. Try yourself. This none modrewrite link works: For sure this has nothing to do with the Wordpress import as you initially suspected. site is totally screwed after importing wordpress blog - erika_conn - 19-12-2010 htaccess file version 1.2.8.0;When Zenphoto requires changes to the rewrite rules:First make a copy of this file as 'oldhtaccess' in the zp-core folder so setup can test for unmodified filesUpdate the above and the define in setup.phpRewriteEngine On RewriteBase / RewriteRule ^admin/?$ zp-core/admin.php [R,L] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteRule index.php$ index.php [L,QSA] Rewrite rule addition for searchRewriteRule ^page/search/fields([0-9]+)/(.)/([0-9]+)/?$ index.php?p=search&searchfields=$1&words=$2&page=$3 [L,QSA] Rewrite additions for zenpage
RewriteRule ^pages/(.)/?$ index.php?p=pages&title=$1 [L,QSA] RewriteRule ^(.)/image/(thumb|[0-9]{1,4})/([^/\]+)$ zp-core/i.php?a=$1&i=$3&s=$2 [L,QSA] Catch-all - everything else gets handled in PHP for compatibility.RewriteRule ^(.*)/?$ index.php?album=$1 [L,QSA] BTW, I tried both and they both come up blank. site is totally screwed after importing wordpress blog - acrylian - 19-12-2010 I can access even modrewrite image page links if I call them directly but not with next/prev. Please disable the static_html_cache plugin, might be that you see the issue of a bug recently reported and already corrected in the nightly, that only did affect a few servers. site is totally screwed after importing wordpress blog - erika_conn - 19-12-2010 Yes, indeed, that was it. |