Fixed  The server did not respond in time. Please try again.

DroidHost

Well-known member
when ever I try to Create new template I have this err :
The server did not respond in time. Please try again.

V:102
Localhost ... my Computer
 
I use Xampp and have never had those issues.
Do you have a lot of styles installed?
no new XenForo installation ... !
I have it in the wamp so I have to test it in other app to confirm the problem !!
I increase the execution time but .... nothing :(
 
I Found the problem ::
The template was :
PHP:
<xen: if is="{$myname} == 1"><a herf="www.google.com">Google</a></if>
And there were alot of xen template syntax err ...
After Make them right :
PHP:
<xen:if is="{$myname} == 1"><a herf="www.google.com">Google</a></xen:if>

the msg should give a correct hint ? right ?
 
Hm, i can confirm this!

Instead of getting a error message,
error2.webp

it's running 2 minutes(my timeout time) and then i'm getting the timeout
error.webp

It's because of <xen :if
 
Which template is that syntax error in?

I've created a few new templates on my localhost in 1.0.2 and haven't encountered the problem.

Your href is also incorrect, it's currently herf.
 
Which template is that syntax error in?

I've created a few new templates on my localhost in 1.0.2 and haven't encountered the problem.

Your href is also incorrect, it's currently herf.
dont look at the HTML err, sorry about that ....

look to the xen template syntax
 
Relatively minor issue, but I'll move this to bugs. Not sure if we can easily prevent it though.
 
Looks like this was a bug in the parser generator. Rebuilding with the latest version seems to have sorted it. :)

It only happened when there was an error before doParse() was every called on the parser.
 
Top Bottom