Search Abuse /?subcats=

/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=

I had this issue before but this time I do not have a distinct pattern to go off of to block the intrusion. I am being blasted with multiple searches from multiple IP's which is bring my server to its knees. All morning I have been blocking entire ranges of IP's running searches and I just cannot contain them with the over 200 entries I already have.

Does anyone have any ideas?

Well. to stop the bleeding, I added the following to htaccess and disabled the search block in layouts. It isn't ideal but at least I don't have to close the store.

# Search abuse temp block
RewriteCond %{QUERY_STRING} \bsubcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=\b [NC]
RewriteRule ^ - [F]

you have to realise that /?subcats= pages are generated by cs probably in a very, very high quantity and you proably dont have anykind of intrusion , but thoose request are generated by search engines trying to read your page. I had similiar issue with this and also a database broken , the solution is to create a robots.txt file which will block queries to such pages. check also google webmaster tool. you have probably tousend of pages indexed by google.

i wrote several times and posted to bugtracker about this but...

checkout some post

http://forum.cs-cart.com/tracker/issue-6472-robotstxt-default-set-of-rules-or-a-generator/

http://forum.cs-cart.com/tracker/issue-5432-web-attack/

No, it's definitely an attack of some sort most likely through proxies. The ip's are from mainly data centers/web hosting and they are from everywhere around the world.

Edit: Also, I have had all the unnecessary parameters in robots.txt (including subcats) from the beginning.

Just for grins, here is a pic of what I was fighting most of the day.

[attachment=13117:search_abuse_snapshot.png]

search_abuse_snapshot.png

Do they request the same URL or a different one everytime? You could also add a limit for like 60 searchqueries per minute and if that numer is achieved the IP will be blocked.

Different search words are used.

I don't think blocking them based on how many times they search will work because they come from multiple IP's at the same time.

Well, if that is the case maybe add a captcha like feature. Users are allowed to do 1 search by approaching the url directly. After that you will toggle it off (this is for google btw). After that, assuming the user has to click the search box, you send a ajax request to set the server which will set the session allowance for search back to true. This way they wont be able to spam it as much.

Yes, I think that is the only solution to the issue. I just need to figure out how to implement it.

Hey,

If you want to we can implement it however, if you prefer doing it yourself do something like the following:

1. Use a hook (maybe 'before_dispatch') and set the basic session values:

// If the session subarray is not set, define it
if (!isset(Tygh::$app['session']['search_restrictions'])) {
    Tygh::$app['session']['search_restrictions'] = array(
        'allow' => true,
        'initial' => true,
    );
}

Now edit the search controller and add something like this

Make sure that on the second run the initial feature is updated
if (isset(Tygh::$app['session']['search_restrictions']['initial'])) {
    $allow_search = true;
    Tygh::$app['session']['search_restrictions']['initial'] = false;
} 

if (isset(Tygh::$app[‘session’][‘search_restrictions’][‘allow’])) {
$allow_search = true;
}

if (!$allow_search) {
// Block the ip and log it at the admin panel, also, exit the script;
die(‘Your IP has been blocked, please contact us at …’);
}

Now the only thing left to do is to create a javascript file to submit the click on the search box, after that, you will have to create a dispatch to retrieve the request and update the session. (sorry but had a few time constraints).

I'm going to try to implement the recaptcha without blocking first.

I just came across this error log after blocking the search function on my site when all this was occurring. Just an example of how hard I was being hit from multiple ip's.

[Wed Mar 21 13:04:07.669608 2018] [core:alert] [pid 5975:tid 140664203323136] [client 66.249.66.81:46700] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:07.669385 2018] [core:alert] [pid 5975:tid 140664203323136] [client 66.249.66.81:46700] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.742911 2018] [core:alert] [pid 5891:tid 140664234792704] [client 188.79.28.37:60446] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.742716 2018] [core:alert] [pid 5891:tid 140664234792704] [client 188.79.28.37:60446] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.322787 2018] [core:alert] [pid 5889:tid 140664234792704] [client 95.7.104.152:33878] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.322580 2018] [core:alert] [pid 5889:tid 140664234792704] [client 95.7.104.152:33878] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.067818 2018] [core:alert] [pid 5890:tid 140664213812992] [client 88.19.71.253:49931] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:06.067610 2018] [core:alert] [pid 5890:tid 140664213812992] [client 88.19.71.253:49931] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:05.150677 2018] [core:alert] [pid 5976:tid 140664203323136] [client 41.37.166.81:17281] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:05.150473 2018] [core:alert] [pid 5976:tid 140664203323136] [client 41.37.166.81:17281] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:04.775752 2018] [core:alert] [pid 5975:tid 140664192833280] [client 31.128.233.2:62506] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:04.775553 2018] [core:alert] [pid 5975:tid 140664192833280] [client 31.128.233.2:62506] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.811879 2018] [core:alert] [pid 5889:tid 140664245282560] [client 89.135.148.220:53733] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.811582 2018] [core:alert] [pid 5889:tid 140664245282560] [client 89.135.148.220:53733] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.648830 2018] [core:alert] [pid 5890:tid 140664224302848] [client 83.216.80.45:56708] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.598568 2018] [core:alert] [pid 5890:tid 140664224302848] [client 83.216.80.45:56708] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.074615 2018] [core:alert] [pid 5891:tid 140664203323136] [client 187.15.64.49:56830] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:03.074415 2018] [core:alert] [pid 5891:tid 140664203323136] [client 187.15.64.49:56830] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:02.520916 2018] [core:alert] [pid 5976:tid 140664224302848] [client 109.240.61.221:2831] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:02.520720 2018] [core:alert] [pid 5976:tid 140664224302848] [client 109.240.61.221:2831] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:02.373871 2018] [core:alert] [pid 5975:tid 140664182343424] [client 46.219.208.47:34752] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:02.373663 2018] [core:alert] [pid 5975:tid 140664182343424] [client 46.219.208.47:34752] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:01.837413 2018] [core:alert] [pid 5890:tid 140664245282560] [client 193.160.224.14:49992] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:04:01.837199 2018] [core:alert] [pid 5890:tid 140664245282560] [client 193.160.224.14:49992] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:31.664328 2018] [core:alert] [pid 5976:tid 140664234792704] [client 207.46.13.123:17473] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:31.664123 2018] [core:alert] [pid 5976:tid 140664234792704] [client 207.46.13.123:17473] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:30.495161 2018] [core:alert] [pid 5975:tid 140664234792704] [client 73.32.88.116:51801] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:30.494972 2018] [core:alert] [pid 5975:tid 140664234792704] [client 73.32.88.116:51801] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:30.352903 2018] [core:alert] [pid 5889:tid 140664287241984] [client 73.32.88.116:51800] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:30.352704 2018] [core:alert] [pid 5889:tid 140664287241984] [client 73.32.88.116:51800] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:30.176263 2018] [core:alert] [pid 5890:tid 140664255772416] [client 73.32.88.116:51799] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: https://www.useritters.net/tonet.php?dispatch=settings.manage§ion_id=General
[Wed Mar 21 13:03:30.176075 2018] [core:alert] [pid 5890:tid 140664255772416] [client 73.32.88.116:51799] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: https://www.useritters.net/tonet.php?dispatch=settings.manage§ion_id=General
[Wed Mar 21 13:03:26.326514 2018] [core:alert] [pid 5976:tid 140664245282560] [client 207.46.13.122:4809] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 13:03:26.326303 2018] [core:alert] [pid 5976:tid 140664245282560] [client 207.46.13.122:4809] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:53:36.783862 2018] [core:alert] [pid 5976:tid 140664445171456] [client 207.46.13.120:16600] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:53:36.783660 2018] [core:alert] [pid 5976:tid 140664445171456] [client 207.46.13.120:16600] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:53:11.359179 2018] [core:alert] [pid 5975:tid 140664150873856] [client 37.236.143.15:42368] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:53:11.358974 2018] [core:alert] [pid 5975:tid 140664150873856] [client 37.236.143.15:42368] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:52:00.497775 2018] [core:alert] [pid 5889:tid 140664171853568] [client 181.234.214.33:57922] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:52:00.497558 2018] [core:alert] [pid 5889:tid 140664171853568] [client 181.234.214.33:57922] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:52:00.063934 2018] [core:alert] [pid 5976:tid 140664182343424] [client 62.194.8.201:49928] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:52:00.063629 2018] [core:alert] [pid 5976:tid 140664182343424] [client 62.194.8.201:49928] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:56.874973 2018] [core:alert] [pid 5891:tid 140664213812992] [client 24.78.24.57:64400] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:56.874674 2018] [core:alert] [pid 5891:tid 140664213812992] [client 24.78.24.57:64400] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:56.106059 2018] [core:alert] [pid 5975:tid 140664192833280] [client 31.207.25.75:11029] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:56.105855 2018] [core:alert] [pid 5975:tid 140664192833280] [client 31.207.25.75:11029] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:54.754230 2018] [core:alert] [pid 5890:tid 140664213812992] [client 81.97.234.26:61721] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:54.754037 2018] [core:alert] [pid 5890:tid 140664213812992] [client 81.97.234.26:61721] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:54.458386 2018] [core:alert] [pid 5976:tid 140664224302848] [client 81.242.30.30:51944] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:54.458202 2018] [core:alert] [pid 5976:tid 140664224302848] [client 81.242.30.30:51944] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:53.804488 2018] [core:alert] [pid 5889:tid 140664245282560] [client 39.44.209.141:57085] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:53.804290 2018] [core:alert] [pid 5889:tid 140664245282560] [client 39.44.209.141:57085] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:53.419303 2018] [core:alert] [pid 5890:tid 140664224302848] [client 46.200.176.58:23396] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:53.419103 2018] [core:alert] [pid 5890:tid 140664224302848] [client 46.200.176.58:23396] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:52.537946 2018] [core:alert] [pid 5889:tid 140664224302848] [client 176.110.20.155:54157] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:52.537747 2018] [core:alert] [pid 5889:tid 140664224302848] [client 176.110.20.155:54157] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:52.390242 2018] [core:alert] [pid 5975:tid 140664182343424] [client 77.123.78.178:50979] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:52.390050 2018] [core:alert] [pid 5975:tid 140664182343424] [client 77.123.78.178:50979] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:51.886880 2018] [core:alert] [pid 5890:tid 140664245282560] [client 176.38.22.59:53473] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:51.886678 2018] [core:alert] [pid 5890:tid 140664245282560] [client 176.38.22.59:53473] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:51.475697 2018] [core:alert] [pid 5891:tid 140664245282560] [client 144.124.122.227:56870] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:51.475500 2018] [core:alert] [pid 5891:tid 140664245282560] [client 144.124.122.227:56870] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:36.368559 2018] [core:alert] [pid 5975:tid 140664234792704] [client 207.46.13.123:19342] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:51:36.368371 2018] [core:alert] [pid 5975:tid 140664234792704] [client 207.46.13.123:19342] /home/user/public_html/.htaccess: RewriteCond: cannot compile regular expression '^*/?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q='
[Wed Mar 21 12:48:39.295825 2018] [core:alert] [pid 5891:tid 140664339691264] [client 207.46.13.120:18574] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:48:39.295606 2018] [core:alert] [pid 5891:tid 140664339691264] [client 207.46.13.120:18574] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:45.643138 2018] [core:alert] [pid 5975:tid 140664213812992] [client 171.25.230.2:28412] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:45.642939 2018] [core:alert] [pid 5975:tid 140664213812992] [client 171.25.230.2:28412] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:29.942613 2018] [core:alert] [pid 5976:tid 140664445171456] [client 207.46.13.121:15047] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:29.942425 2018] [core:alert] [pid 5976:tid 140664445171456] [client 207.46.13.121:15047] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:29.718051 2018] [core:alert] [pid 5975:tid 140664434681600] [client 207.46.13.123:14733] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:29.717848 2018] [core:alert] [pid 5975:tid 140664434681600] [client 207.46.13.123:14733] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:14.325055 2018] [core:alert] [pid 5891:tid 140664129894144] [client 1.171.76.53:56947] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:14.324854 2018] [core:alert] [pid 5891:tid 140664129894144] [client 1.171.76.53:56947] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:12.384745 2018] [core:alert] [pid 5976:tid 140664129894144] [client 181.214.248.245:44634] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:12.384544 2018] [core:alert] [pid 5976:tid 140664129894144] [client 181.214.248.245:44634] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:11.080945 2018] [core:alert] [pid 5975:tid 140664424191744] [client 121.191.10.207:52055] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:11.080742 2018] [core:alert] [pid 5975:tid 140664424191744] [client 121.191.10.207:52055] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:07.780069 2018] [core:alert] [pid 5890:tid 140664150873856] [client 83.47.1.160:64524] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:07.779778 2018] [core:alert] [pid 5890:tid 140664150873856] [client 83.47.1.160:64524] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:07.679287 2018] [core:alert] [pid 5889:tid 140664161363712] [client 144.132.24.6:54359] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:07.678999 2018] [core:alert] [pid 5889:tid 140664161363712] [client 144.132.24.6:54359] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.627567 2018] [core:alert] [pid 5889:tid 140664150873856] [client 109.88.147.247:8005] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.627375 2018] [core:alert] [pid 5889:tid 140664150873856] [client 109.88.147.247:8005] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.611531 2018] [core:alert] [pid 5975:tid 140664224302848] [client 90.209.141.101:11910] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.611341 2018] [core:alert] [pid 5975:tid 140664224302848] [client 90.209.141.101:11910] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.381170 2018] [core:alert] [pid 5891:tid 140664140384000] [client 5.234.167.16:15054] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.380977 2018] [core:alert] [pid 5891:tid 140664140384000] [client 5.234.167.16:15054] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.331116 2018] [core:alert] [pid 5976:tid 140664424191744] [client 125.160.80.101:58790] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:05.330923 2018] [core:alert] [pid 5976:tid 140664424191744] [client 125.160.80.101:58790] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:04.397300 2018] [core:alert] [pid 5890:tid 140664161363712] [client 72.141.220.143:63080] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:04.397103 2018] [core:alert] [pid 5890:tid 140664161363712] [client 72.141.220.143:63080] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:04.329100 2018] [core:alert] [pid 5891:tid 140664161363712] [client 93.38.51.77:65470] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:47:04.328900 2018] [core:alert] [pid 5891:tid 140664161363712] [client 93.38.51.77:65470] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:55.647783 2018] [core:alert] [pid 5975:tid 140664150873856] [client 207.46.13.121:4934] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:55.647578 2018] [core:alert] [pid 5975:tid 140664150873856] [client 207.46.13.121:4934] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:27.396443 2018] [core:alert] [pid 5976:tid 140664150873856] [client 207.46.13.120:13676] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:27.396233 2018] [core:alert] [pid 5976:tid 140664150873856] [client 207.46.13.120:13676] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:24.305038 2018] [core:alert] [pid 5975:tid 140664129894144] [client 216.244.66.245:36536] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:46:24.304850 2018] [core:alert] [pid 5975:tid 140664129894144] [client 216.244.66.245:36536] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:44.317228 2018] [core:alert] [pid 5891:tid 140664182343424] [client 207.46.13.121:19468] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:44.316931 2018] [core:alert] [pid 5891:tid 140664182343424] [client 207.46.13.121:19468] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:29.356262 2018] [core:alert] [pid 5975:tid 140664171853568] [client 174.112.148.49:57017] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:29.356061 2018] [core:alert] [pid 5975:tid 140664171853568] [client 174.112.148.49:57017] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:29.147263 2018] [core:alert] [pid 5976:tid 140664182343424] [client 207.46.13.121:13764] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:45:29.147065 2018] [core:alert] [pid 5976:tid 140664182343424] [client 207.46.13.121:13764] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:55.589444 2018] [core:alert] [pid 5975:tid 140664192833280] [client 207.46.13.122:14287] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:55.589251 2018] [core:alert] [pid 5975:tid 140664192833280] [client 207.46.13.122:14287] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:49.667422 2018] [core:alert] [pid 5889:tid 140664287241984] [client 1.164.42.234:44110] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:49.667223 2018] [core:alert] [pid 5889:tid 140664287241984] [client 1.164.42.234:44110] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:47.222062 2018] [core:alert] [pid 5975:tid 140664182343424] [client 200.52.149.117:63494] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:47.221874 2018] [core:alert] [pid 5975:tid 140664182343424] [client 200.52.149.117:63494] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:44.099978 2018] [core:alert] [pid 5976:tid 140664234792704] [client 49.48.249.96:51027] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:44.099670 2018] [core:alert] [pid 5976:tid 140664234792704] [client 49.48.249.96:51027] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:42.428115 2018] [core:alert] [pid 5891:tid 140664245282560] [client 176.36.106.219:50543] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:42.427938 2018] [core:alert] [pid 5891:tid 140664245282560] [client 176.36.106.219:50543] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:42.398458 2018] [core:alert] [pid 5975:tid 140664234792704] [client 37.236.142.20:28067] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:42.398261 2018] [core:alert] [pid 5975:tid 140664234792704] [client 37.236.142.20:28067] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:41.420041 2018] [core:alert] [pid 5976:tid 140664255772416] [client 38.116.192.236:1156] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:41.419861 2018] [core:alert] [pid 5976:tid 140664255772416] [client 38.116.192.236:1156] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:41.386438 2018] [core:alert] [pid 5889:tid 140664255772416] [client 31.170.133.51:53974] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:41.386238 2018] [core:alert] [pid 5889:tid 140664255772416] [client 31.170.133.51:53974] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:41.347439 2018] [core:alert] [pid 5891:tid 140664255772416] [client 186.15.156.128:50469] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.bing.com/search?q=cta+tools+2010&src=IE-SearchBox&FORM=IENTTR&conversationid=
[Wed Mar 21 12:44:41.347233 2018] [core:alert] [pid 5891:tid 140664255772416] [client 186.15.156.128:50469] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.bing.com/search?q=cta+tools+2010&src=IE-SearchBox&FORM=IENTTR&conversationid=
[Wed Mar 21 12:44:40.686607 2018] [core:alert] [pid 5975:tid 140664245282560] [client 84.53.198.78:3658] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:40.686303 2018] [core:alert] [pid 5975:tid 140664245282560] [client 84.53.198.78:3658] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:39.500610 2018] [core:alert] [pid 5890:tid 140664266262272] [client 93.143.128.148:60409] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:39.500419 2018] [core:alert] [pid 5890:tid 140664266262272] [client 93.143.128.148:60409] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:35.257808 2018] [core:alert] [pid 5891:tid 140664287241984] [client 207.46.13.122:7893] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:35.257591 2018] [core:alert] [pid 5891:tid 140664287241984] [client 207.46.13.122:7893] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:33.787689 2018] [core:alert] [pid 5976:tid 140664245282560] [client 207.46.13.123:19968] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:44:33.787494 2018] [core:alert] [pid 5976:tid 140664245282560] [client 207.46.13.123:19968] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:52.722438 2018] [core:alert] [pid 5976:tid 140664434681600] [client 207.46.13.121:3193] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:52.722237 2018] [core:alert] [pid 5976:tid 140664434681600] [client 207.46.13.121:3193] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:43.339080 2018] [core:alert] [pid 5975:tid 140664266262272] [client 186.47.22.42:42463] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:43.338889 2018] [core:alert] [pid 5975:tid 140664266262272] [client 186.47.22.42:42463] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:36.354285 2018] [core:alert] [pid 5890:tid 140664297731840] [client 207.46.13.122:9404] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:36.354067 2018] [core:alert] [pid 5890:tid 140664297731840] [client 207.46.13.122:9404] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:35.549990 2018] [core:alert] [pid 5891:tid 140664297731840] [client 207.46.13.122:8936] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:35.549805 2018] [core:alert] [pid 5891:tid 140664297731840] [client 207.46.13.122:8936] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:35.058925 2018] [core:alert] [pid 5976:tid 140664276752128] [client 207.46.13.122:8091] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:43:35.058731 2018] [core:alert] [pid 5976:tid 140664276752128] [client 207.46.13.122:8091] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:55.796267 2018] [core:alert] [pid 5889:tid 140664297731840] [client 207.46.13.120:2822] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:55.795944 2018] [core:alert] [pid 5889:tid 140664297731840] [client 207.46.13.120:2822] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:34.161037 2018] [core:alert] [pid 5976:tid 140664266262272] [client 179.61.188.38:37385] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:34.160838 2018] [core:alert] [pid 5976:tid 140664266262272] [client 179.61.188.38:37385] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:30.994764 2018] [core:alert] [pid 5975:tid 140664308221696] [client 79.204.122.212:61879] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:30.994543 2018] [core:alert] [pid 5975:tid 140664308221696] [client 79.204.122.212:61879] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:22.454274 2018] [core:alert] [pid 5890:tid 140664329201408] [client 207.46.13.121:12381] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:22.454082 2018] [core:alert] [pid 5890:tid 140664329201408] [client 207.46.13.121:12381] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:20.063789 2018] [core:alert] [pid 5976:tid 140664297731840] [client 207.46.13.122:2314] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:20.063578 2018] [core:alert] [pid 5976:tid 140664297731840] [client 207.46.13.122:2314] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.766292 2018] [core:alert] [pid 5889:tid 140664329201408] [client 178.34.158.164:50471] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.766097 2018] [core:alert] [pid 5889:tid 140664329201408] [client 178.34.158.164:50471] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.594204 2018] [core:alert] [pid 5975:tid 140664297731840] [client 93.254.237.171:56423] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.593999 2018] [core:alert] [pid 5975:tid 140664297731840] [client 93.254.237.171:56423] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.081597 2018] [core:alert] [pid 5890:tid 140664339691264] [client 61.6.81.10:60668] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:17.081388 2018] [core:alert] [pid 5890:tid 140664339691264] [client 61.6.81.10:60668] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:16.848542 2018] [core:alert] [pid 5891:tid 140664329201408] [client 95.67.230.225:53869] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:16.848341 2018] [core:alert] [pid 5891:tid 140664329201408] [client 95.67.230.225:53869] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:12.834755 2018] [core:alert] [pid 5976:tid 140664308221696] [client 186.236.225.17:32117] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:12.834553 2018] [core:alert] [pid 5976:tid 140664308221696] [client 186.236.225.17:32117] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.766028 2018] [core:alert] [pid 5975:tid 140664318711552] [client 187.153.132.42:62979] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.765832 2018] [core:alert] [pid 5975:tid 140664318711552] [client 187.153.132.42:62979] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.618521 2018] [core:alert] [pid 5890:tid 140664424191744] [client 207.216.41.160:50618] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.618337 2018] [core:alert] [pid 5890:tid 140664424191744] [client 207.216.41.160:50618] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.543162 2018] [core:alert] [pid 5889:tid 140664424191744] [client 176.107.62.44:58167] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.542952 2018] [core:alert] [pid 5889:tid 140664424191744] [client 176.107.62.44:58167] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.176588 2018] [core:alert] [pid 5891:tid 140664424191744] [client 188.114.142.56:59830] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:11.176385 2018] [core:alert] [pid 5891:tid 140664424191744] [client 188.114.142.56:59830] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:00.473071 2018] [core:alert] [pid 5976:tid 140664318711552] [client 207.46.13.120:4855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:42:00.472873 2018] [core:alert] [pid 5976:tid 140664318711552] [client 207.46.13.120:4855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:36.782179 2018] [core:alert] [pid 5889:tid 140664445171456] [client 207.46.13.121:19436] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:36.781972 2018] [core:alert] [pid 5889:tid 140664445171456] [client 207.46.13.121:19436] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:35.109820 2018] [core:alert] [pid 5890:tid 140664445171456] [client 207.46.13.120:16098] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:35.109615 2018] [core:alert] [pid 5890:tid 140664445171456] [client 207.46.13.120:16098] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:32.839684 2018] [core:alert] [pid 5976:tid 140664329201408] [client 207.46.13.123:17609] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:41:32.839479 2018] [core:alert] [pid 5976:tid 140664329201408] [client 207.46.13.123:17609] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:53.639458 2018] [core:alert] [pid 5976:tid 140664213812992] [client 13.57.205.254:58265] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.useritters.net
[Wed Mar 21 12:40:53.639261 2018] [core:alert] [pid 5976:tid 140664213812992] [client 13.57.205.254:58265] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.useritters.net
[Wed Mar 21 12:40:46.524544 2018] [core:alert] [pid 5975:tid 140664434681600] [client 66.249.66.80:34475] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:46.524334 2018] [core:alert] [pid 5975:tid 140664434681600] [client 66.249.66.80:34475] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:34.255938 2018] [core:alert] [pid 5889:tid 140664140384000] [client 207.46.13.122:8171] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:34.255740 2018] [core:alert] [pid 5889:tid 140664140384000] [client 207.46.13.122:8171] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:27.079748 2018] [core:alert] [pid 5889:tid 140664182343424] [client 188.170.196.233:50420] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:27.079546 2018] [core:alert] [pid 5889:tid 140664182343424] [client 188.170.196.233:50420] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:13.066301 2018] [core:alert] [pid 5976:tid 140664445171456] [client 91.200.57.37:54597] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:13.066106 2018] [core:alert] [pid 5976:tid 140664445171456] [client 91.200.57.37:54597] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:00.050533 2018] [core:alert] [pid 5976:tid 140664129894144] [client 150.129.133.226:61475] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:40:00.050319 2018] [core:alert] [pid 5976:tid 140664129894144] [client 150.129.133.226:61475] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:49.829724 2018] [core:alert] [pid 5889:tid 140664150873856] [client 201.240.51.8:60365] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:49.829508 2018] [core:alert] [pid 5889:tid 140664150873856] [client 201.240.51.8:60365] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:49.453135 2018] [core:alert] [pid 5975:tid 140664224302848] [client 207.46.13.121:2343] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:49.452931 2018] [core:alert] [pid 5975:tid 140664224302848] [client 207.46.13.121:2343] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:45.579427 2018] [core:alert] [pid 5976:tid 140664140384000] [client 95.14.36.70:55132] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:45.579076 2018] [core:alert] [pid 5976:tid 140664140384000] [client 95.14.36.70:55132] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:45.529962 2018] [core:alert] [pid 5891:tid 140664140384000] [client 121.219.32.193:54008] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:45.529764 2018] [core:alert] [pid 5891:tid 140664140384000] [client 121.219.32.193:54008] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:44.857859 2018] [core:alert] [pid 5976:tid 140664424191744] [client 192.41.131.255:16100] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:44.857657 2018] [core:alert] [pid 5976:tid 140664424191744] [client 192.41.131.255:16100] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:44.721571 2018] [core:alert] [pid 5889:tid 140664192833280] [client 65.205.26.162:39454] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: https://www.bing.com/
[Wed Mar 21 12:39:44.721374 2018] [core:alert] [pid 5889:tid 140664192833280] [client 65.205.26.162:39454] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: https://www.bing.com/
[Wed Mar 21 12:39:43.983222 2018] [core:alert] [pid 5891:tid 140664161363712] [client 178.92.197.140:54831] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:43.983011 2018] [core:alert] [pid 5891:tid 140664161363712] [client 178.92.197.140:54831] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:43.752505 2018] [core:alert] [pid 5890:tid 140664161363712] [client 13.56.59.126:57947] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.useritters.net
[Wed Mar 21 12:39:43.752316 2018] [core:alert] [pid 5890:tid 140664161363712] [client 13.56.59.126:57947] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$', referer: http://www.useritters.net
[Wed Mar 21 12:39:42.988181 2018] [core:alert] [pid 5976:tid 140664150873856] [client 95.220.71.162:64823] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.987981 2018] [core:alert] [pid 5976:tid 140664150873856] [client 95.220.71.162:64823] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.765739 2018] [core:alert] [pid 5889:tid 140664203323136] [client 178.5.226.147:59107] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.765531 2018] [core:alert] [pid 5889:tid 140664203323136] [client 178.5.226.147:59107] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.617589 2018] [core:alert] [pid 5975:tid 140664150873856] [client 5.68.229.6:54497] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.617391 2018] [core:alert] [pid 5975:tid 140664150873856] [client 5.68.229.6:54497] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.490341 2018] [core:alert] [pid 5890:tid 140664171853568] [client 61.220.206.31:51505] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.490142 2018] [core:alert] [pid 5890:tid 140664171853568] [client 61.220.206.31:51505] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.095747 2018] [core:alert] [pid 5975:tid 140664129894144] [client 87.140.192.248:40240] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:42.095532 2018] [core:alert] [pid 5975:tid 140664129894144] [client 87.140.192.248:40240] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:41.757364 2018] [core:alert] [pid 5891:tid 140664150873856] [client 193.53.83.24:60903] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:41.757166 2018] [core:alert] [pid 5891:tid 140664150873856] [client 193.53.83.24:60903] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:39.214995 2018] [core:alert] [pid 5889:tid 140664119404288] [client 207.46.13.120:15782] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:39.214797 2018] [core:alert] [pid 5889:tid 140664119404288] [client 207.46.13.120:15782] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:37.063474 2018] [core:alert] [pid 5890:tid 140664182343424] [client 66.249.66.82:38263] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:37.063260 2018] [core:alert] [pid 5890:tid 140664182343424] [client 66.249.66.82:38263] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:29.026513 2018] [core:alert] [pid 5976:tid 140664161363712] [client 207.46.13.120:11166] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:29.026319 2018] [core:alert] [pid 5976:tid 140664161363712] [client 207.46.13.120:11166] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:20.806914 2018] [core:alert] [pid 5890:tid 140664192833280] [client 207.46.13.123:13903] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:20.806713 2018] [core:alert] [pid 5890:tid 140664192833280] [client 207.46.13.123:13903] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:13.670042 2018] [core:alert] [pid 5891:tid 140664182343424] [client 207.46.13.120:7299] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:13.669850 2018] [core:alert] [pid 5891:tid 140664182343424] [client 207.46.13.120:7299] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:11.589513 2018] [core:alert] [pid 5976:tid 140664171853568] [client 207.46.13.123:10738] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:39:11.589313 2018] [core:alert] [pid 5976:tid 140664171853568] [client 207.46.13.123:10738] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:42.424923 2018] [core:alert] [pid 5890:tid 140664203323136] [client 207.46.13.122:14672] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:42.424723 2018] [core:alert] [pid 5890:tid 140664203323136] [client 207.46.13.122:14672] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:40.966418 2018] [core:alert] [pid 5891:tid 140664192833280] [client 207.46.13.123:24280] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:40.966230 2018] [core:alert] [pid 5891:tid 140664192833280] [client 207.46.13.123:24280] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:33.794576 2018] [core:alert] [pid 5976:tid 140664182343424] [client 179.105.151.117:49589] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:33.794340 2018] [core:alert] [pid 5976:tid 140664182343424] [client 179.105.151.117:49589] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:32.286887 2018] [core:alert] [pid 5975:tid 140664171853568] [client 207.46.13.122:9473] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:32.286696 2018] [core:alert] [pid 5975:tid 140664171853568] [client 207.46.13.122:9473] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:27.814118 2018] [core:alert] [pid 5890:tid 140664213812992] [client 207.46.13.120:14297] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:38:27.813910 2018] [core:alert] [pid 5890:tid 140664213812992] [client 207.46.13.120:14297] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:41.837980 2018] [core:alert] [pid 5890:tid 140664224302848] [client 207.46.13.122:11818] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:41.837792 2018] [core:alert] [pid 5890:tid 140664224302848] [client 207.46.13.122:11818] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:36.575934 2018] [core:alert] [pid 5976:tid 140664192833280] [client 207.46.13.122:9398] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:36.575624 2018] [core:alert] [pid 5976:tid 140664192833280] [client 207.46.13.122:9398] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:35.152721 2018] [core:alert] [pid 5975:tid 140664182343424] [client 79.142.196.242:33468] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:35.152507 2018] [core:alert] [pid 5975:tid 140664182343424] [client 79.142.196.242:33468] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:31.763572 2018] [core:alert] [pid 5891:tid 140664234792704] [client 176.116.28.234:33803] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:31.763299 2018] [core:alert] [pid 5891:tid 140664234792704] [client 176.116.28.234:33803] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:31.068971 2018] [core:alert] [pid 5976:tid 140664224302848] [client 207.46.13.123:16920] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:31.068767 2018] [core:alert] [pid 5976:tid 140664224302848] [client 207.46.13.123:16920] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:26.184061 2018] [core:alert] [pid 5975:tid 140664203323136] [client 199.203.63.188:62855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:26.183871 2018] [core:alert] [pid 5975:tid 140664203323136] [client 199.203.63.188:62855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:25.418188 2018] [core:alert] [pid 5889:tid 140664245282560] [client 94.123.173.230:24022] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:25.417980 2018] [core:alert] [pid 5889:tid 140664245282560] [client 94.123.173.230:24022] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:22.761441 2018] [core:alert] [pid 5891:tid 140664245282560] [client 49.144.226.68:2937] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:22.761243 2018] [core:alert] [pid 5891:tid 140664245282560] [client 49.144.226.68:2937] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:21.994053 2018] [core:alert] [pid 5890:tid 140664255772416] [client 46.63.59.149:26763] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:21.993854 2018] [core:alert] [pid 5890:tid 140664255772416] [client 46.63.59.149:26763] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:18.180318 2018] [core:alert] [pid 5975:tid 140664234792704] [client 1.186.188.48:9481] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:18.180114 2018] [core:alert] [pid 5975:tid 140664234792704] [client 1.186.188.48:9481] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:17.896880 2018] [core:alert] [pid 5889:tid 140664255772416] [client 78.95.104.57:2811] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:17.896670 2018] [core:alert] [pid 5889:tid 140664255772416] [client 78.95.104.57:2811] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:17.390749 2018] [core:alert] [pid 5976:tid 140664234792704] [client 207.46.13.120:10679] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:17.390537 2018] [core:alert] [pid 5976:tid 140664234792704] [client 207.46.13.120:10679] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:15.872458 2018] [core:alert] [pid 5890:tid 140664276752128] [client 69.156.144.7:58769] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:15.872261 2018] [core:alert] [pid 5890:tid 140664276752128] [client 69.156.144.7:58769] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:15.712966 2018] [core:alert] [pid 5891:tid 140664255772416] [client 188.167.194.210:53390] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:15.712768 2018] [core:alert] [pid 5891:tid 140664255772416] [client 188.167.194.210:53390] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:09.892833 2018] [core:alert] [pid 5976:tid 140664255772416] [client 207.46.13.123:8864] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:09.892611 2018] [core:alert] [pid 5976:tid 140664255772416] [client 207.46.13.123:8864] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:02.113388 2018] [core:alert] [pid 5890:tid 140664266262272] [client 207.46.13.120:5612] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:37:02.113182 2018] [core:alert] [pid 5890:tid 140664266262272] [client 207.46.13.120:5612] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:36:57.079978 2018] [core:alert] [pid 5975:tid 140664255772416] [client 207.46.13.120:3010] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:36:57.079774 2018] [core:alert] [pid 5975:tid 140664255772416] [client 207.46.13.120:3010] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:49.331782 2018] [core:alert] [pid 5889:tid 140664308221696] [client 207.46.13.123:1632] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:49.331583 2018] [core:alert] [pid 5889:tid 140664308221696] [client 207.46.13.123:1632] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:46.433119 2018] [core:alert] [pid 5976:tid 140664287241984] [client 207.46.13.120:26739] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:46.432926 2018] [core:alert] [pid 5976:tid 140664287241984] [client 207.46.13.120:26739] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:41.105193 2018] [core:alert] [pid 5975:tid 140664287241984] [client 207.46.13.122:11466] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:41.104875 2018] [core:alert] [pid 5975:tid 140664287241984] [client 207.46.13.122:11466] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:19.302481 2018] [core:alert] [pid 5889:tid 140664297731840] [client 94.54.253.56:15855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:19.302283 2018] [core:alert] [pid 5889:tid 140664297731840] [client 94.54.253.56:15855] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:18.034469 2018] [core:alert] [pid 5890:tid 140664318711552] [client 41.37.37.161:45819] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:18.034269 2018] [core:alert] [pid 5890:tid 140664318711552] [client 41.37.37.161:45819] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:01.704808 2018] [core:alert] [pid 5889:tid 140664339691264] [client 176.59.199.193:57518] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:01.704612 2018] [core:alert] [pid 5889:tid 140664339691264] [client 176.59.199.193:57518] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:01.520908 2018] [core:alert] [pid 5890:tid 140664329201408] [client 197.207.47.95:58550] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:35:01.520705 2018] [core:alert] [pid 5890:tid 140664329201408] [client 197.207.47.95:58550] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:34:53.586962 2018] [core:alert] [pid 5976:tid 140664308221696] [client 201.149.78.210:49410] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$'
[Wed Mar 21 12:34:53.586765 2018] [core:alert] [pid 5976:tid 140664308221696] [client 201.149.78.210:49410] /home/user/public_html/.htaccess: RewriteRule: cannot compile regular expression '^?subcats=Y&pcode_from_q=Y&pshort=Y&pfull=Y&pname=Y&pkeywords=Y&search_performed=Y&q=$' 

I just came across this error log after blocking the search function on my site when all this was occurring. Just an example of how hard I was being hit from multiple ip's.

Hey,

I'm sorry to hear that, we are still at your service if you desire to implement the search spam prevention.

Kind regards,