File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/unlimited-elements-for-elementor/views/troubleshooting-connectivity.php
Back
<h1>Unlimited Elements - API Access Test</h1> <br> <?php /** * check zip file request */ function checkZipFile(){ //request single file $urlAPI = GlobalsUC::URL_API; $arrPost = array( "action"=>"get_addon_zip", "name"=>"team_member_box_overlay", "cat"=>"Team Members", "type"=>"addons", "catalog_date"=>"1563618449", "code"=>"" ); dmp("requesting widget zip from API"); $response = UniteFunctionsUC::getUrlContents($urlAPI, $arrPost); if(empty($response)) UniteFunctionsUC::throwError("Empty server response"); $len = strlen($response); dmp("api response OK, recieve string size: $len"); } /** * check zip file request */ function checkCatalogRequest(){ //request single file $urlAPI = GlobalsUC::URL_API; $arrPost = array( "action"=>"check_catalog", "catalog_date"=>"1563618449", "include_pages"=>false, "domain"=>"localhost", "platform"=>"wp" ); dmp("requesting catalog check"); try{ $response = UniteFunctionsUC::getUrlContents($urlAPI, $arrPost); if(empty($response)) UniteFunctionsUC::throwError("Empty server response"); $len = strlen($response); dmp("api response OK, recieve string size: $len"); }catch(Exception $e){ $message = $e->getMessage()."\n<br>"; $message .= "The request to the catalog url has failed. \n<br>"; $message .= "Please contact your hosting provider and request to open firewall access to this address: \n<br>"; $message .= "http://api.unlimited-elements.com/"; UniteFunctionsUC::throwError($message); } } /** * various */ function checkVariousOptions(){ dmp("checking file get contents"); $urlAPI = GlobalsUC::URL_API; $response = file_get_contents($urlAPI); $len = strlen($response); dmp("file get contents OK, recieve string size: $len"); } /** * check and update catalog */ function checkUpdateCatalog(){ dmp("Trying to update the catalog from the api... Printing Debug..."); $webAPI = new UniteCreatorWebAPI(); $webAPI->checkUpdateCatalog(true); $arrDebug = $webAPI->getDebug(); dmp($arrDebug); //print option content $optionCatalog = UniteCreatorWebAPI::OPTION_CATALOG; dmp("Option catalog raw data: $optionCatalog"); $data = get_option($optionCatalog); dmp($data); } /** * check if catalog data is saved well */ function checkingCatalogData(){ $webAPI = new UniteCreatorWebAPI(); $data = $webAPI->getCatalogData(); dmp("Checking saved widgets catalog data"); if(empty($data)){ dmp("No catalog widgets data found!"); checkUpdateCatalog(); return(false); } if(is_array($data) == false) UniteFunctionsUC::throwError("Catalog data is not array"); $stamp = UniteFunctionsUC::getVal($data, "stamp"); $catalog = UniteFunctionsUC::getVal($data, "catalog"); if(empty($stamp)) UniteFunctionsUC::throwError("No stamp found"); if(empty($catalog)) UniteFunctionsUC::throwError("Empty widgets catalog"); $date = UniteFunctionsUC::timestamp2Date($stamp); dmp("catalog data found OK from date: $date"); $showData = UniteFunctionsUC::getGetVar("showdata","", UniteFunctionsUC::SANITIZE_TEXT_FIELD); $showData = UniteFunctionsUC::strToBool($showData); if($showData == true) dmp($data); } try{ checkVariousOptions(); echo "<br><br>"; checkCatalogRequest(); echo "<br><br>"; checkZipFile(); echo "<br><br>"; checkingCatalogData(); }catch(Exception $e){ echo $e->getMessage(); }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings