Changeset 2291766
- Timestamp:
- 04/25/2020 09:24:04 PM (6 years ago)
- Location:
- edump/trunk
- Files:
-
- 2 edited
-
edump.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
edump/trunk/edump.php
r2144742 r2291766 5 5 Description: Debugging Plugin with edump for WordPress. 6 6 Author: edumpadmin 7 Version: 1.0. 67 Version: 1.0.7 8 8 Author URI: https://www.edump.net/inquiry/ 9 9 License: GPL2 … … 15 15 // Currentversion 16 16 // ----------------------------------------------------------------- 17 $PLUGIN_VERSION = "1.0. 6";17 $PLUGIN_VERSION = "1.0.7"; 18 18 19 19 // ----------------------------------------------------------------- … … 195 195 196 196 /*** Paste this code to be able to access the edump debugger's features *****************************************/ 197 \$YourMessageID = "___user_id___"; \$ShowDetails = "false"; \$AutoClear = "false"; \$SSL = " true";197 \$YourMessageID = "___user_id___"; \$ShowDetails = "false"; \$AutoClear = "false"; \$SSL = "false"; 198 198 \$h="www.edump.net";\$t="/sv/dist/php/include.php?id=".\$YourMessageID."&sd=".\$ShowDetails."&ac=".\$AutoClear."&ssl=". 199 \$SSL;\$f=fsockopen(\$h, 80, \$ern, \$ert, 30);if(!\$f){echo "\$ert(\$ern)";}else{\$o="GET ".\$t." HTTP/1. 2\\r\\n";\$o.="Host: ".199 \$SSL;\$f=fsockopen(\$h, 80, \$ern, \$ert, 30);if(!\$f){echo "\$ert(\$ern)";}else{\$o="GET ".\$t." HTTP/1.0\\r\\n";\$o.="Host: ". 200 200 \$h."\\r\\n";\$o.="Connection: Close\\r\\n\\r\\n"; \$r = '';fwrite(\$f, \$o);while(!feof(\$f)){\$r.= fgets(\$f,1024);} 201 201 fclose(\$f);}\$li = explode("###INCLUDE CODE###", \$r);eval(\$li[1]);unset(\$h,\$t,\$ern,\$ert,\$f,\$o,\$r,\$li); -
edump/trunk/readme.txt
r2144742 r2291766 3 3 Tags: debug, theme, plugin 4 4 Requires at least: 4.2.4 5 Tested up to: 5. 2.26 Stable tag: 1.0. 65 Tested up to: 5.4.0 6 Stable tag: 1.0.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 * 2019-08-24 62 62 * Updating http rquest method and Handling WordPress5 and above. 63 64 1.0.7 65 * 2020-04-26 66 * Updating for WP5.4
Note: See TracChangeset
for help on using the changeset viewer.