Hello, I've upgraded my online site from 1.4.1.6 to 1.4.9.
Now I have problem with navigation: from menu, if I click a link to custom page (zenpage) I Got "file not found".
Example URL:
http://my.examplesite.ext/zenphoto/page/gallery But if I visit my local site everything is ok, navigation works fine.
The mod rewrite is checked
The .htacces file seems good..
# htaccess file version 1.4.5;
# Rewrite rules are now handled by PHP code
# See the file "zenphoto-rewrite.txt" for the actual rules
#
# These rules redirect everything not directly accessing a file to the Zenphoto index.php script
#
<IfModule mod_autoindex.c>
IndexIgnore *
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /zenphoto
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [L]
RewriteRule ^.*/?$ index.php [L,QSA]
</IfModule>
Thank you
Comments
The theme is Zenpage.
On server, Zenphoto is installed in the "zenphoto" folder.
In local, Zenphoto is installed under http://localhost/ZENPHOTO1.4.9/zenphoto/ but on the server I have do setup and update htaccess has not "ZENPHOTO1.4.9"
During setup I click on "Make setup create the file" (htaccess) button and then the page reloads, but still showing the "Make setup create the file" button and no htaccess file was created.
You should review your server error log, possibly permisions issues.
But now I saw this alert "Setup did not detect a working mod_rewrite facility."
In the Apache httpd.conf file the rewrite_module is loaded, but I will test if is really enabled.
Thank you
thank you