Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
934 views
in Q2A Core by
I want to change the main filw from index.php to qa.php or any whatvername.php because th eindex is reserved for an intro presnetation etc..etc..

so i changed all the occurences of index.php in all the files (i hope so) but i get an ajax error when i click on the votes arrows..Unexpected response..etc..

what did i miss?

thank and awesome work!!

1 Answer

+1 vote
by
I don't recommend doing this since there are a huge amount of things dependent on the fact that index.php works as the root of Q2A.

Still, you can try changing this line in qa-page.php:

'qa_root' => $qa_root_url_relative,

... to ...

'qa_root' => $qa_root_url_relative.'qa.php',

That will change the endpoint of the AJAX requests, including voting.
...