Skip to content

Instantly share code, notes, and snippets.

View AiratHalitov's full-sized avatar
🔥
Subscribe!

Airat Halitov AiratHalitov

🔥
Subscribe!
View GitHub Profile
<?php
// This script will convert
// all confirmed buddy press friends to mutual followers
// if their friendship is not confirmed then the
// requestor of the friendship becomes a follower
// of the requestee
$_SERVER['HTTP_HOST'] = 'your-site.come';
ob_start();
@nicomollet
nicomollet / wp_auto_install.sh
Last active June 8, 2022 19:10
WP-CLI auto install script
#!/bin/bash
# Default options
LOCALE="fr_FR"
DB_HOST='localhost'
VIRUSTOTAL_KEY='YOUR_KEY'
printf "Name of the project? cf My Project: "
read PROJECT_NAME
@jrfnl
jrfnl / wp-config-debug.php
Last active May 23, 2024 07:06
Code to add to wp-config.php to enhance information available for debugging.
<?php
/**
* == About this Gist ==
*
* Code to add to wp-config.php to enhance information available for debugging.
*
* You would typically add this code below the database, language and salt settings
*
* Oh.. and *do* make sure you change the path to the log file to a proper file path on your server (make sure it exists).
*