Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
338 views
in Q2A Core by
edited

Hi,

 

I had previously set up Q2A to work fine, and now am attempting to create a new install with external authentication but when I follow the instructions and I get to the part where I am to add the user ID to

function qa_get_mysql_user_column_type

 

I get a blank screen when I launch the index.php from the browser.

 

My user colulmn type is int(10)

 

How exactly is this suppose to be placed in the function? how should it look?

 

 

Thank you.

 

*edit

Never mind.

 

Answered my own question

 

    function qa_get_mysql_user_column_type () {
return 'INT';
}

by
You should put your answer in the answer box, that way that question will not be unanswered anymore!

1 Answer

0 votes
by
*edit Never mind.   Answered my own question       function qa_get_mysql_user_column_type () { return 'INT'; }
...