Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

  • 422 December 2011
  • Donal December 2011
  • Tim December 2011
  • Todd December 2011

How to debug?

This discussion is related to the Vanilla Proxyconnect addon.

I am using proxy 1.9.8 and vanilla Version 2.0.18.1 my cms uses smarty, My Authenticate URL is created by smarty and seems to be outputting the correct info and format All the link urls work ok ie: when i click login i am directed to my main site login page etc. My problem is that users are not created or logged in. When I use the "test" feature in the dashboard I receive a blank page, with no apparent errors reported.
So at this point I'm unsure how to check exactly what is or is not happening. code used to output auth:

    {assign var="user_login" value=$CI->session->userdata('user_login')}
    {assign var="user_email" value=$CI->session->userdata('user_email')}
    {assign var="user_id" value=$CI->session->userdata('user_id')}
    {assign var="layout" value="UniqueID=$user_id,Name=$user_login,Email=$user_email"}
    {if $node->title() == 'v'}
    {if $session_user_id}
    {$layout|replace:",":"\n"}
    {/if}
    {else}
       {include file="frontend/header.tpl"}
    
    ......etc

"node" being the template and "v" being the title of the page called in smarty for the ath url

this outputs source code:

UniqueID=1
Name=donal
Email=me@mydomain.com

any hints on how to proceed would be appreciated

Best Answers

Answers

Sign In or Register to comment.