Search returns "The connection was Reset"

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
Jhuff
Posts: 10
Joined: Thu Oct 02, 2014 5:05 pm

Search returns "The connection was Reset"

Post by Jhuff »

I'm having a bit of trouble with my install of phpmyfaq. I just installed it using XAMPP which is using PHP 5.5.15

Everything seems to be working except the search function, and only for words that are included in FAQs.

If I create a FAQ called test, and search for it. I get "The Connection was reset" in Firefox. "The Page Can't Be Displayed" in IE, and "No Data Received: Error code: ERR_EMPTY_RESPONSE" in Chrome.

But if I set the FAQ called Test, to Visible=No the search works just fine. Granted it doesn't find the article since it's hidden. I've tested by deleting and remaking FAQs but I get this error every time.

Any ideas what I'm doing wrong? If there's any info I can get such as logs, let me know which ones!

Thanks!
Thorsten
Posts: 15739
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Search returns "The connection was Reset"

Post by Thorsten »

Hi,

do you run it on WIndows?

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Jhuff
Posts: 10
Joined: Thu Oct 02, 2014 5:05 pm

Re: Search returns "The connection was Reset"

Post by Jhuff »

Hey Thorsten,

Yep, I'm running XAMPP on Windows Server 2012.

Thanks!
Jhuff
Posts: 10
Joined: Thu Oct 02, 2014 5:05 pm

Re: Search returns "The connection was Reset"

Post by Jhuff »

Hey sorry for the double post. But I've figured out the issue.

I had to make a change to an Apache config file. It was located at Apache/Conf/Extra

And is called HTTPD-MPM.conf

Find this section:

<IfModule mpm_winnt_module>
ThreadsPerChild 150
MaxConnectionsPerChild 0
</IfModule>


Add this line in there:
ThreadStackSize 8388608

So It should look like

<IfModule mpm_winnt_module>
ThreadStackSize 8388608
ThreadsPerChild 150
MaxConnectionsPerChild 0
</IfModule>

Thanks Thorsen for posting the fix in another thread: viewtopic.php?f=7&t=16359&p=43694&hilit ... ize#p43694

Thank!
Thorsten
Posts: 15739
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Search returns "The connection was Reset"

Post by Thorsten »

Hi,

yes, wanted to post that fix. :)

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply