magefix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Simple(?) Site URL ChangeIf you’re using a temporary URL during the development, then you’ll have two type of unique entries in your database:
1. development URL ( dev.example.com )
2. absolute path ( /home/user/public_html/temp/ )When you’ll complete the development step, you’ll need to replace all the database entries to match the final configuration.
This way some changes might be needed:
dev.example.com > http://www.example.com
/home/user/public_html/temp/ > /home/user/public_html/So I’m afraid switching from one URL to another is not that simple as you might expect.
Meanwhile you can research more about the process.Forum: Fixing WordPress
In reply to: Critical Error – no access to dashboardHi there! You should re-install core files manually via FTP. That should solve the problem. An important file might be missing, generating a fatal error.
Forum: Fixing WordPress
In reply to: All pages dissapearedThis looks to me like a crashed wp_posts table. Try to perform a database repair using phpMyAdmin or any other database tool.
More details here: https://wptavern.com/how-to-repair-a-crashed-wordpress-posts-tableForum: Fixing WordPress
In reply to: Google rejects my ads because of Malicious or Unwanted Software@cssngroup If you still have troubles running Google Ads, try these:
1. Ask Google Ads support to provide a list with malicious links detected. This way you can research for specific malware removal tutorials.
Direct link: https://support.google.com/adwords/contact/approvals
2. Make sure you perform a thorough cleanup, making sure your site files and database are clean ( very important ).
3. Disable cache locally or any other external cache tools. Make sure you deliver latest content to your visitors – including Google bots.
4. Ask for a re-index via Google search console.
5. Ask for a re-evaluation, following the first link provided.Forum: Fixing WordPress
In reply to: Error con Google Ads@benjamis2012 1. Ask Google Ads support to provide a list with malicious links detected. This way you can research for specific malware removal tutorials.
Direct link: https://support.google.com/adwords/contact/approvals2. Make sure you perform a thorough cleanup, making sure your site files and database are clean ( very important ).
3. Disable cache locally or any other external cache tools. Make sure you deliver latest content to your visitors – including Google bots.
4. Ask for a re-index via Google search console.
5. Ask for a re-evaluation, following this link:
https://support.google.com/adwords/contact/approvals@jdembowski I will stop posting here, I get your point. However, I guess it wouldn’ve been easier for other users to get a solution since when you type “injection post_content _posts table” on Google, you reach this page.
@webartisan asked me to list some plugins I’m using for the injected sites. So I did. I apologise if it’s against the good practice forum rules.
Hi @jdembowski
I don’t require support. I just replied to @webartisan about the recent injections I have experienced and shared some server stats, maybe we can figure out a common element which might’ve triggered the contamination.Forum: Plugins
In reply to: [MarketPress - WordPress eCommerce] CONTINUE CHECKOUT BUTTON DISAPPEARSHi Mark,
In this case, while browsing the checkout form, after filling ZIP code, the following code snipped changed from:
<p class=”mp_cart_direct_checkout”><input type=”submit” name=”mp_shipping_submit” id=”mp_shipping_submit” value=”Continue Checkout »”></p>
to:
<p class=”mp_cart_direct_checkout”><input type=”submit” name=”mp_shipping_submit” id=”mp_shipping_submit” value=”Continue Checkout »” style=”display: none;”></p>To correct it, I’ve commented the following code from marketpress/marketpress-includes/js/store.js:
function mp_refresh_shipping() { $("#mp_shipping_submit").hide(); $("#mp-shipping-select-holder").html('<img src="'+MP_Ajax.imgUrl+'" alt="Loading..." />'); var serializedForm = $('form#mp_shipping_form').serialize(); $.post(MP_Ajax.ajaxUrl, serializedForm, function(data) { $("#mp-shipping-select-holder").html(data); $("#mp_shipping_submit").show(); }); }@biohardware you should :
Before anything else, backup wp-config.php . Make sure its content is clean.
1. pack all your php files, via SSH
find . -name ‘*.php’ -o | tar -cvzf php.tar.gz -T –
2. delete all your php files, via SSH
find . -name ‘*.php’ -type f -delete
3. move all your public_html folder to a private area, such as public_html_old
4. rebuild WordPress from scratch
a) copy ONLY wp-config.php and fresh WordPress files: https://ww.wp.xz.cn/download/
b) get a clean theme version: https://ww.wp.xz.cn/themes/radiate/
c) download all the needed plugins, one by one: https://ww.wp.xz.cn/plugins/After all this, you should be good to go.
@katanga1987 thank you, it works! 🙂
database upgrade prompted after editing “acf_version” row from wp_options table.Hi there,
I don’t think your site is infected with malware. Google search results look just fine, there are no blacklists mentioning saklikumanda.com.
Try to verify your website with Google search console: https://www.google.com/webmasters/tools/home
– Adrian
PS: If there’s an extra site on this hosting account – like Adam suggested – you might deal with a cross-site contamination. Discuss with your hosting support – ask them if there are any WordPress instances installed – other than one used for lana-turner.com.
Hosting more than two WordPress site within the same shared hosting account is not secure. But hopefully, maybe it’s not your case.
To get rid of that red warning, only after you’ve cleared out the malware, you can:
– verify your website with https://www.google.com/webmasters/tools/home
– Check the “Security issues” section
– Ask for a re-evaluation. It takes aprox. 24 hours for them to complete it.Johanna,
I don’t recommend this method ( restoring a previous backup ). And – like Adam said – you never know when the infection really occured. So you might still end up with a compromised site.
Before anything else, perform a backup for your current data. It’s very important to prevent any data loss from now on.
So backup your:
– database associated with your site
– your site filesSave these with your local machine ( PC , laptop ).
Hi Johanna,
Folders like wp-includes, wp-admin or wp-content could host potential malicious files. So it’s not only about wp-content.
Malicious files could easily become undetected by any tool. So don’t rely on automated scanners. There are backdoors ( upload scripts ) which look like the legitimate files.
You can download wp-content directory and separately make a new directory called wp-content.
Then you can copy uploads folder – make sure you delete all the PHP files which might be inside. Look for ICO files, some might include malicious code. Add .htaccess file inside uploads folder to prevent PHP execution.
Later you can create plugins & themes. And you can populate these folders with fresh data, downloaded from :
https://ww.wp.xz.cn/plugins/ and
https://ww.wp.xz.cn/themes/meditation/Adrian
Hi Johanna,
Parts of your site – like https://www.lana-turner.com/wp-content/ – display the red screen warning ( Deceptive site ahead ). These warnings are active for a reason, your site might have hosted phishing / deceptive pages.
Malware-related issues should be addressed immediately – don’t rely on your hosting support only.
Performing a site rebuild doesn’t leave any precious data behind – only guarantees your site will be malware free.
Later on, you need to check the users with administrator rights, FTP users from your hosting account – to make sure there are no open doors for the attackers.
Adrian