Templates don't import properly

Jake B.

Well-known member
For some reason on my local server templates don't import properly (for example when you install an addon), the template is created in the database, but it will not display, and you cannot search for it in the AdminCP template manager. It works perfectly fine on my live server though.

Local Server Information:
Windows 8.1
Apache 2.4.4
PHP 5.4.12
MySQL 5.6.12
 
This generally implies the rebuild process didn't complete properly. If you had to do any refreshing, that would indicate this. Try rebuilding the master data.
 
This generally implies the rebuild process didn't complete properly. If you had to do any refreshing, that would indicate this. Try rebuilding the master data.
Seems that was the issue, didn't even think of that. Thanks for the assistance!

Any idea what causes it not to run properly? It seems to do that everytime I try to do a test install of any of my addons.
 
Last edited:
PHP being killed for any reason can cause it.

You can shorten the rebuild page time via config.php:
Code:
$config['rebuildMaxExecution'] = 5;
 
Top Bottom