Yükleniyor...

Prank Ojol Wordpress Fix !!exclusive!! May 2026

Steps to Fix a Prank or Hack on WordPress

  1. Identify the Issue:

    • Check if your site is showing unusual behavior, such as redirecting to unwanted pages, displaying ads, or if you've received reports of inappropriate content being shown.
  2. Backup Your Site:

    • Before making any changes, ensure you have a full backup of your site. You can use plugins like UpdraftPlus or Duplicator for this purpose.
  3. Scan for Malware:

    • Use a security plugin (e.g., Wordfence, MalCare) to scan your site for malware. These plugins can often identify and automatically remove threats.
  4. Change Passwords:

    • Change all passwords related to your site, including your WordPress admin password, database password, and FTP/SFTP password.
  5. Update Everything:

    • Ensure that WordPress, themes, and plugins are all updated to their latest versions. Outdated software is a common vulnerability.
  6. Review Plugins and Themes:

    • Disable and then re-enable each plugin one by one to identify if any are causing the issue. Consider removing any that are not essential or have known security issues. Do the same with themes.
  7. Check for Suspicious Code:

    • Look for any suspicious code in your theme’s functions.php file or in the files of your plugins. Check your site’s wp-config.php and htaccess files for any unusual additions.
  8. Clean Your Database:

    • Sometimes, malware can inject malicious data into your database. Use a plugin or manually review your database to clean any suspicious entries.
  9. Harden Your Site’s Security:

    • Implement security measures such as two-factor authentication, limiting login attempts, and using a web application firewall (WAF).
  10. Monitor Your Site:

    • Regularly monitor your site for unusual activity. Consider setting up alerts for any changes to your site’s files or database.

3. Clean the Core Files (Manual Method)

Step-by-Step Fix for WordPress

Follow these instructions carefully. You’ll need cPanel or FTP access (FileZilla, etc.) and your hosting login.

Step 3: Clean wp-config.php

This file is a prime target for injection.

  1. Open wp-config.php in a code editor (via File Manager).
  2. Look for any suspicious code at the top or bottom – often base64 encoded or containing eval(), system(), or phrases like “prank ojol”.
  3. Remove everything outside the <?php ... ?> tags. Keep only the standard database settings:
<?php
define( 'DB_NAME', 'your_db_name' );
define( 'DB_USER', 'your_db_user' );
define( 'DB_PASSWORD', 'your_db_pass' );
define( 'DB_HOST', 'localhost' );
// ... rest of normal config
  1. Save the file.