forked from sendtogeo/Seo-Panel
-
Notifications
You must be signed in to change notification settings - Fork 42
Coding helper
Seo Panel edited this page Jul 31, 2020
·
7 revisions
-
Normal add/edit/delete,change status seo panel base code controller file =>
controllers/social_media.ctrl.php
-
Normal add/edit/delete,change status seo panel base code index file =>
social_media.php
-
Normal add/edit/delete,change status seo panel plugin code controller file =>
plugins/CaptchaBypass/cb_manager.ctrl.php
-
Debug crawling
$debugFile = SP_TMPPATH . "/test.html";
$handle = fopen($debugFile,"w");
fwrite($handle, $smContentInfo['page']);
fclose($handle);
exit;
$handle = fopen($debugFile, "r");
$smContentInfo['page'] = fread($handle, filesize($debugFile));
fclose($handle);