I am migrating an EE site (v2.10.1) to a new MediaTemple DV server.
Everything is fine on the old server, but on the new one the product section is giving me this error:
No templates defined for the Custom System Messages extension settings, or the defined templates can not be found.
The htaccess file is:
# Redirect URL to www
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^hilclare.com
RewriteRule (.*) http://www.hilclare.com/$1 [R=301,L]
# Redirect file paths
RewriteRule ^brochures.*$ http://www.hilclare.com/downloads/ [R=301,L]
RewriteRule ^blog.*$ http://www.hilclare.com/news/ [R=301,L]
RewriteRule ^products/clean-area-lighting.*$ http://www.hilclare.com/products/clean-room-lighting/ [R=301,L]
# Redirect old ee directories to ne cleaner urls
RedirectMatch 301 /products/list/category/(.*) /products/$1
RedirectMatch 301 /products/entries/category/(.*) /products/$1
# Rwwrite product list pages to cleaner urls
RewriteRule ^/detail/(.+)$ /$1 [L,QSA]
# BEGIN GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</ifmodule>
# END GZIP
# Removes index.php from ExpressionEngine URLs
<IfModule mod_rewrite.c>
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
# redirects the rss feed to root folder
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule .* - [L]
# Specify search friendly URLs
RewriteRule http://www.hilclare.com/commercial-lighting/$ http://www.hilclare.com/products/list/category/commercial-lighting/ [L]
Also, if it’s relevant, the index template of the products section is:
{if "{segment_2}" == ""}
{embed=products/all}
{if:elseif "{segment_3}" == ""}
{if segment_2_category_id}
{embed=products/parentcat}
{/if}
{if:elseif "{segment_4}" == ""}
{if segment_3_category_id}
{embed=products/subcat}
{/if}
{if no_results}
{redirect="404"}
{/if}
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.