You've been posting a lot of issues regarding your site and CDN. You
didn't answer my question about sharing code or a url, so I tried the
one in your signature

Looking at the HTML for http://www.vvidiacom.com/web , I see a lot of
templating code that was not executed:

Here are some examples:

    <form name="loginForm" action="${h.url_for('/login/
submit',came_from=request.url,__logins='0')}"  method="post" >

    <img src="${proxy_prefix}/appearance/logo.gif"/>

    <py:if test="h.is_loggedin() == 1" py:with="user_email =
h.get_useremail(); logged_in_user =
request.environ['repoze.who.identity']['user'];">
        Welcome ${user_email} | <a href="${h.url_for(controller='/
users', action='edit', id=logged_in_user.user_id)}">My Account</a> |
<a href="${h.url_for(controller='/login', action='logout_handler')}"
id="logout">Logout</a>
     </py:if>

The third block suggests you're writing in the Genshi templating
language.

I'd suggest you inspect how your templating is set up -- and routinely
check the HTML being generated.  Your templates are very obviously not
being parsed and either being served as static files or the rendering
facility just doesn't know what to do.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pylons-discuss+unsubscr...@googlegroups.com.
To post to this group, send email to pylons-discuss@googlegroups.com.
Visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to