This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved one of my websites from a cPanel server to local macOS development. | |
Could you please review the following error, and tell me if there is an easy fix? | |
I have deactivated, and uninstalled the plugin using WP=CLI, and then reinstalled it maually only to receive the same error/ | |
Your help is great appreciated. | |
Michael Van Voorhis | |
704-490-9009 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Installation: | |
# Install the script in one of the folders in your PATH. Make sure it has execute permissions (i.e. chmod +x wp-install-core-sub-dir). | |
#Usage: | |
# $ mkdir mysite | |
# $ cd mysite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add this to the bottom of your .htaccess file | |
# in the root of you WorPress directory | |
# usually example.com/wp/ | |
php_value max_execution_time 60 | |
php_value memory_limit 128M | |
php_value post_max_size 64M | |
php_value upload_max_filesize 64M | |
php_value max_input_vars 10000 | |
# END WordPress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; cPanel-generated php ini directives, do not edit | |
; Manual editing of this file may result in unexpected behavior. | |
; To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor) | |
; For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI) | |
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
######################################################### | |
# Backup to NFS mount script. | |
# https://www.webhostingtalk.com/showthread.php?t=1130207 | |
# It creates 1 compressed .tar file locally you can then | |
# download over SSH or FTP to your PC. For reference, | |
# I have a Ubuntu 11.04 OpenVZ VPS and it created a 470MB | |
# .tar file out of ~600MB. You can specify only certain | |
# directories for backup by changing backup_files, | |
# or leaving it to "/" will backup everything. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* "Friendlier, Safer WordPress Admin Areas" | |
* Presented by Cliff Seal at WordCamp Atlanta 2015 and Asheville 2016 | |
* Slides: http://www.slideshare.net/cliffseal/wp-admin | |
* | |
* Plugin Name: A Better Admin Experience | |
* Plugin URI: http://evermoresites.com | |
* Description: Cleans up and sanitizes the WordPress admin area | |
* Version: 1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |