This file contains hidden or 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 | |
/** | |
* Plugin Name: WLM Performance Debug | |
* Description: Debug WishList Member performance issues, especially the "Protect Existing Now" corruption bug | |
* Version: 1.0.4 | |
* | |
* Installation: | |
* 1. Save this file as: /wp-content/plugins/wlm-performance-debug/wlm-performance-debug.php | |
* 2. Activate the plugin from WordPress admin | |
* 3. Save any post to see debug output |
This file contains hidden or 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
/** | |
* Function will convert all the QUESIONS_ANSWERS variable into appropriate data | |
* | |
* @since 7.1.3 | |
* | |
* @param array $mlw_quiz_array | |
* @param string $qmn_question_answer_template | |
* @param string $answer | |
* @param int $qsm_question_cnt | |
* @param int $total_question_cnt |
This file contains hidden or 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
max_execution_time=1200 | |
max_input_time=1200 | |
memory_limit=1024M | |
post_max_size=256M | |
upload_max_filesize=256M |
This file contains hidden or 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
# *** INSTRUCTIONS ******** | |
# $ cd repo.git/hooks | |
# $ vi post-receive | |
# paste this and fix formatting since things always get funky pasting into VI | |
# ESC | |
# :wq | |
# $ chmod +x post-receive | |
# *************************** | |
#!/bin/sh |