/**
* Include required files - load these first for proper initialization
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly
}
// Define theme paths
define('BUDDY_CHILD_DIR', get_stylesheet_directory());
define('BUDDY_CHILD_INC_DIR', BUDDY_CHILD_DIR . '/inc');
define('BUDDY_CHILD_ASSETS_DIR', BUDDY_CHILD_DIR . '/assets');
define('BUDDY_CHILD_IMAGES_DIR', BUDDY_CHILD_ASSETS_DIR . '/images');
// Initialize error logging
if (!defined('WP_DEBUG')) {
define('WP_DEBUG', true);
}
if (!defined('WP_DEBUG_LOG')) {
define('WP_DEBUG_LOG', true);
}
if (!defined('WP_DEBUG_DISPLAY')) {
define('WP_DEBUG_DISPLAY', false);
}
// Force debug logging regardless of wp-config settings
@ini_set('log_errors', 1);
@ini_set('error_log', BUDDY_CHILD_DIR . '/debug.log');
error_reporting(E_ALL);
// Ensure we can write to our log file
$log_file = BUDDY_CHILD_DIR . '/debug.log';
if (!file_exists($log_file)) {
@touch($log_file);
@chmod($log_file, 0666);
}
// Log startup message to confirm logging is working
error_log('Debug logging initialized - ' . date('Y-m-d H:i:s'));
/**
* Check if Pods plugin is active and working
*/
function is_pods_working() {
if (!function_exists('pods')) {
error_log('Pods plugin is not active');
return false;
}
if (!class_exists('Pods')) {
error_log('Pods class not found');
return false;
}
return true;
}
// Load required files immediately
$required_files = array(
'place-functions.php' => array('get_place_details', 'get_place_schema', 'get_nearby_places'),
'tour-functions.php' => array('get_tour_details'),
'carousel-schema.php' => array('get_carousel_schema')
);
foreach ($required_files as $file => $required_functions) {
$file_path = BUDDY_CHILD_INC_DIR . '/' . $file;
try {
if (!file_exists($file_path)) {
throw new Exception(sprintf('Required file not found: %s', $file_path));
}
// Include the file
require_once $file_path;
// Verify required functions exist
foreach ($required_functions as $function) {
if (!function_exists($function)) {
throw new Exception(sprintf('Required function %s not found after loading %s', $function, $file));
}
}
error_log(sprintf('Successfully loaded %s and verified required functions', $file));
} catch (Exception $e) {
error_log(sprintf('Error loading required file: %s - %s', $file, $e->getMessage()));
// For place-functions.php, define fallback functions if loading fails
if ($file === 'place-functions.php') {
if (!function_exists('get_place_details')) {
function get_place_details($post_id) {
error_log('Using fallback get_place_details function - File loading failed');
return array(
'title' => get_the_title($post_id),
'content' => get_the_content($post_id),
'excerpt' => get_the_excerpt($post_id)
);
}
}
if (!function_exists('get_place_schema')) {
function get_place_schema($place_details) {
error_log('Using fallback get_place_schema function - File loading failed');
return '';
}
}
if (!function_exists('get_nearby_places')) {
function get_nearby_places($post_id, $limit = 3) {
error_log('Using fallback get_nearby_places function - File loading failed');
return array();
}
}
}
}
}
/**
* Buddy Child Theme Functions
*
* @package Buddy Child
*/
// Add test function to check if logging works
function test_error_logging() {
try {
// Test error logging
error_log('Testing error logging from functions.php');
// Test exception handling
throw new Exception('Test exception from functions.php');
} catch (Exception $e) {
error_log('Caught test exception: ' . $e->getMessage());
}
// Test Pods availability
if (!function_exists('pods')) {
error_log('WARNING: Pods plugin is not active');
} else {
error_log('Pods plugin is active');
}
}
add_action('init', 'test_error_logging', 1);
// Check if Pods is active
if (!function_exists('pods')) {
error_log('Pods plugin is not active - this may cause functionality issues');
}
/**
* Optimize theme performance and SEO
*/
function optimize_theme_performance() {
// Remove unnecessary scripts
remove_action('wp_head', 'print_emoji_detection_script', 7);
remove_action('wp_print_styles', 'print_emoji_styles');
remove_action('wp_head', 'wp_oembed_add_discovery_links');
remove_action('wp_head', 'wp_oembed_add_host_js');
remove_action('wp_head', 'rest_output_link_wp_head');
remove_action('wp_head', 'wp_generator');
remove_action('wp_head', 'wlwmanifest_link');
remove_action('wp_head', 'rsd_link');
// Disable XML-RPC
add_filter('xmlrpc_enabled', '__return_false');
// Remove jQuery Migrate in frontend
if (!is_admin()) {
add_filter('wp_default_scripts', function($scripts) {
if (!empty($scripts->registered['jquery'])) {
$scripts->registered['jquery']->deps = array_diff(
$scripts->registered['jquery']->deps,
['jquery-migrate']
);
}
});
}
// Optimize WP Query
add_filter('found_posts_query', '__return_empty_string', 10, 2);
add_filter('found_rows_query', '__return_empty_string');
// Add resource hints
add_filter('wp_resource_hints', function($hints, $relation_type) {
if ('dns-prefetch' === $relation_type) {
$hints[] = '//www.google-analytics.com';
$hints[] = '//www.googletagmanager.com';
$hints[] = '//pagead2.googlesyndication.com';
}
if ('preconnect' === $relation_type) {
$hints[] = 'https://www.google-analytics.com';
$hints[] = 'https://www.googletagmanager.com';
}
return $hints;
}, 10, 2);
}
add_action('init', 'optimize_theme_performance');
/**
* Enqueue optimized styles and scripts
*/
function ghostpool_enqueue_child_styles() {
$theme_version = wp_get_theme()->get('Version');
// Dequeue unnecessary parent styles/scripts
wp_dequeue_style('wp-block-library');
wp_dequeue_style('wp-block-library-theme');
// Enqueue parent style with version
wp_enqueue_style('gp-parent-style',
get_template_directory_uri() . '/style.css',
array(),
$theme_version
);
// Enqueue child style with version and parent dependency
wp_enqueue_style('buddy-child-style',
get_stylesheet_directory_uri() . '/style.css',
array('gp-parent-style'),
$theme_version
);
// Add defer to scripts
add_filter('script_loader_tag', function($tag, $handle) {
if (!is_admin() && !in_array($handle, ['jquery'])) {
return str_replace(' src', ' defer src', $tag);
}
return $tag;
}, 10, 2);
}
add_action('wp_enqueue_scripts', 'ghostpool_enqueue_child_styles', 20);
/**
* Add SEO improvements
*/
function add_seo_improvements() {
// Add meta description if not provided by SEO plugin
if (!defined('WPSEO_VERSION') && !defined('RANK_MATH_VERSION')) {
add_action('wp_head', function() {
if (is_singular()) {
$excerpt = wp_strip_all_tags(get_the_excerpt());
if (!empty($excerpt)) {
printf(
'' . "\n",
esc_attr(wp_trim_words($excerpt, 30))
);
}
}
});
}
// Add Open Graph meta tags if not provided by SEO plugin
if (!defined('WPSEO_VERSION') && !defined('RANK_MATH_VERSION')) {
add_action('wp_head', function() {
if (is_singular()) {
$excerpt = wp_strip_all_tags(get_the_excerpt());
printf('' . "\n", esc_attr(get_the_title()));
printf('' . "\n");
printf('' . "\n", esc_url(get_permalink()));
if (has_post_thumbnail()) {
printf(
'' . "\n",
esc_url(get_the_post_thumbnail_url(null, 'large'))
);
}
if (!empty($excerpt)) {
printf(
'' . "\n",
esc_attr(wp_trim_words($excerpt, 30))
);
}
}
});
}
}
add_action('init', 'add_seo_improvements');
/**
* Add image optimization
*/
function optimize_images() {
// Add lazy loading to images
add_filter('the_content', function($content) {
return preg_replace_callback('/]+)>/i', function($matches) {
if (strpos($matches[1], 'loading=') === false) {
return '
';
}
return $matches[0];
}, $content);
});
// Add WebP support
add_filter('wp_get_attachment_image_src', function($image, $attachment_id, $size, $icon) {
if (!is_array($image)) {
return $image;
}
$upload_dir = wp_upload_dir();
$webp_path = str_replace(
['.jpg', '.jpeg', '.png'],
'.webp',
str_replace($upload_dir['baseurl'], $upload_dir['basedir'], $image[0])
);
if (file_exists($webp_path)) {
$image[0] = str_replace(
['.jpg', '.jpeg', '.png'],
'.webp',
$image[0]
);
}
return $image;
}, 10, 4);
}
add_action('init', 'optimize_images');
/**
* Add security improvements
*/
function add_security_improvements() {
// Remove WordPress version
remove_action('wp_head', 'wp_generator');
// Disable XML-RPC
add_filter('xmlrpc_enabled', '__return_false');
// Remove Windows Live Writer manifest
remove_action('wp_head', 'wlwmanifest_link');
// Remove Really Simple Discovery link
remove_action('wp_head', 'rsd_link');
// Add security headers
add_action('send_headers', function() {
if (!is_admin()) {
header('X-Content-Type-Options: nosniff');
header('X-Frame-Options: SAMEORIGIN');
header('X-XSS-Protection: 1; mode=block');
header('Referrer-Policy: strict-origin-when-cross-origin');
}
});
}
add_action('init', 'add_security_improvements');
/**
* Load translation files
*/
if (!function_exists('ghostpool_child_theme_language')) {
function ghostpool_child_theme_language() {
load_child_theme_textdomain('buddy', get_stylesheet_directory() . '/languages');
}
}
add_action('after_setup_theme', 'ghostpool_child_theme_language');
/**
* AdSense Integration
*/
function deploy_adsense_script() {
add_action('wp_head', function() {
if (defined('BUDDY_ADSENSE_ID') && BUDDY_ADSENSE_ID) {
printf(
'' . "\n",
esc_attr(BUDDY_ADSENSE_ID)
);
}
}, 1);
}
add_action('init', 'deploy_adsense_script');
/**
* GetYourGuide Integration
*/
function add_getyourguide_script() {
if (defined('BUDDY_GYG_PARTNER_ID') && BUDDY_GYG_PARTNER_ID) {
printf(
'' . "\n",
esc_attr(BUDDY_GYG_PARTNER_ID)
);
}
}
add_action('wp_head', 'add_getyourguide_script');
/**
* Affiliate Tracking
*/
function custom_enqueue_script() {
if (defined('BUDDY_AFFILIATE_ID') && BUDDY_AFFILIATE_ID) {
printf(
'' . "\n",
esc_attr(BUDDY_AFFILIATE_ID)
);
}
}
add_action('wp_footer', 'custom_enqueue_script');
/**
* Custom Post Type Display Functions
*/
// Removed duplicate get_place_details() function - using the one from place-functions.php
// Removed duplicate get_tour_details() function - will move to a separate file
/**
* Custom Taxonomies Display
*/
function get_destination_hierarchy() {
static $hierarchy_cache;
if (isset($hierarchy_cache)) {
return $hierarchy_cache;
}
$terms = get_terms(array(
'taxonomy' => 'destination',
'hide_empty' => false,
'parent' => 0
));
if (is_wp_error($terms)) {
error_log('Error getting destination terms: ' . $terms->get_error_message());
return array();
}
$hierarchy = array();
foreach ($terms as $term) {
$hierarchy[$term->term_id] = array(
'name' => $term->name,
'slug' => $term->slug,
'description' => $term->description,
'children' => get_destination_children($term->term_id)
);
}
$hierarchy_cache = $hierarchy;
return $hierarchy;
}
function get_destination_children($parent_id) {
static $children_cache = array();
if (isset($children_cache[$parent_id])) {
return $children_cache[$parent_id];
}
$children = get_terms(array(
'taxonomy' => 'destination',
'hide_empty' => false,
'parent' => $parent_id
));
if (is_wp_error($children)) {
error_log('Error getting destination children: ' . $children->get_error_message());
return array();
}
$child_terms = array();
foreach ($children as $child) {
$child_terms[$child->term_id] = array(
'name' => $child->name,
'slug' => $child->slug,
'description' => $child->description
);
}
$children_cache[$parent_id] = $child_terms;
return $child_terms;
}
/**
* Schema.org Markup
*/
function add_place_schema() {
if (!is_singular('places')) {
return;
}
try {
$place_details = get_place_details(get_the_ID());
if (empty($place_details)) {
return;
}
$schema = array(
'@context' => 'https://schema.org',
'@type' => 'Place',
'name' => get_the_title(),
'description' => wp_strip_all_tags(get_the_excerpt()),
'url' => get_permalink()
);
// Add address if available
if (!empty($place_details['address'])) {
$schema['address'] = array(
'@type' => 'PostalAddress',
'streetAddress' => $place_details['address']
);
if (!empty($place_details['city'])) {
$schema['address']['addressLocality'] = $place_details['city'];
}
if (!empty($place_details['state'])) {
$schema['address']['addressRegion'] = $place_details['state'];
}
if (!empty($place_details['postal_code'])) {
$schema['address']['postalCode'] = $place_details['postal_code'];
}
if (!empty($place_details['country'])) {
$schema['address']['addressCountry'] = $place_details['country'];
}
}
// Add geo coordinates if available
if (!empty($place_details['latitude']) && !empty($place_details['longitude'])) {
$schema['geo'] = array(
'@type' => 'GeoCoordinates',
'latitude' => floatval($place_details['latitude']),
'longitude' => floatval($place_details['longitude'])
);
}
// Add contact info if available
if (!empty($place_details['phone'])) {
$schema['telephone'] = esc_attr($place_details['phone']);
}
// Add featured image if available
if (has_post_thumbnail()) {
$schema['image'] = array(
'@type' => 'ImageObject',
'url' => get_the_post_thumbnail_url(null, 'full'),
'width' => 1200,
'height' => 630
);
}
printf(
'',
wp_json_encode($schema, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT)
);
} catch (Exception $e) {
error_log('Error generating place schema: ' . $e->getMessage());
}
}
add_action('wp_head', 'add_place_schema');
/**
* Custom RSS Feed
*/
function add_featured_image_to_rss($content) {
global $post;
if (has_post_thumbnail($post->ID)) {
$image_url = get_the_post_thumbnail_url($post->ID, 'large');
$content = '
[24-Feb-2025 11:59:44 UTC] Debug logging initialized - 2025-02-24 11:59:44 [24-Feb-2025 11:59:44 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:45 UTC] Debug logging initialized - 2025-02-24 11:59:45 [24-Feb-2025 11:59:45 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:45 UTC] Debug logging initialized - 2025-02-24 11:59:45 [24-Feb-2025 11:59:45 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:45 UTC] Debug logging initialized - 2025-02-24 11:59:45 [24-Feb-2025 11:59:45 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:48 UTC] Debug logging initialized - 2025-02-24 11:59:48 [24-Feb-2025 11:59:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:52 UTC] Debug logging initialized - 2025-02-24 11:59:52 [24-Feb-2025 11:59:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 11:59:55 UTC] Debug logging initialized - 2025-02-24 11:59:55 [24-Feb-2025 11:59:55 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:05 UTC] Debug logging initialized - 2025-02-24 12:00:05 [24-Feb-2025 12:00:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:07 UTC] Debug logging initialized - 2025-02-24 12:00:07 [24-Feb-2025 12:00:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:12 UTC] Debug logging initialized - 2025-02-24 12:00:12 [24-Feb-2025 12:00:12 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:12 UTC] Debug logging initialized - 2025-02-24 12:00:12 [24-Feb-2025 12:00:12 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:13 UTC] Debug logging initialized - 2025-02-24 12:00:13 [24-Feb-2025 12:00:13 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:14 UTC] Debug logging initialized - 2025-02-24 12:00:14 [24-Feb-2025 12:00:14 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:15 UTC] Debug logging initialized - 2025-02-24 12:00:15 [24-Feb-2025 12:00:15 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:17 UTC] Debug logging initialized - 2025-02-24 12:00:17 [24-Feb-2025 12:00:17 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:20 UTC] Debug logging initialized - 2025-02-24 12:00:20 [24-Feb-2025 12:00:20 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:21 UTC] Debug logging initialized - 2025-02-24 12:00:21 [24-Feb-2025 12:00:21 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:22 UTC] Debug logging initialized - 2025-02-24 12:00:22 [24-Feb-2025 12:00:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:32 UTC] Debug logging initialized - 2025-02-24 12:00:32 [24-Feb-2025 12:00:32 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:40 UTC] Debug logging initialized - 2025-02-24 12:00:40 [24-Feb-2025 12:00:40 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:40 UTC] Debug logging initialized - 2025-02-24 12:00:40 [24-Feb-2025 12:00:40 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:41 UTC] Debug logging initialized - 2025-02-24 12:00:41 [24-Feb-2025 12:00:41 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:46 UTC] Debug logging initialized - 2025-02-24 12:00:46 [24-Feb-2025 12:00:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:46 UTC] Debug logging initialized - 2025-02-24 12:00:46 [24-Feb-2025 12:00:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:47 UTC] Debug logging initialized - 2025-02-24 12:00:47 [24-Feb-2025 12:00:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:55 UTC] Debug logging initialized - 2025-02-24 12:00:55 [24-Feb-2025 12:00:55 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:00:58 UTC] Debug logging initialized - 2025-02-24 12:00:58 [24-Feb-2025 12:00:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:00 UTC] Debug logging initialized - 2025-02-24 12:01:00 [24-Feb-2025 12:01:00 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:08 UTC] Debug logging initialized - 2025-02-24 12:01:08 [24-Feb-2025 12:01:08 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:09 UTC] Debug logging initialized - 2025-02-24 12:01:09 [24-Feb-2025 12:01:09 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:23 UTC] Debug logging initialized - 2025-02-24 12:01:23 [24-Feb-2025 12:01:23 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:26 UTC] Debug logging initialized - 2025-02-24 12:01:26 [24-Feb-2025 12:01:26 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:29 UTC] Debug logging initialized - 2025-02-24 12:01:29 [24-Feb-2025 12:01:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:35 UTC] Debug logging initialized - 2025-02-24 12:01:35 [24-Feb-2025 12:01:35 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:38 UTC] Debug logging initialized - 2025-02-24 12:01:38 [24-Feb-2025 12:01:38 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:44 UTC] Debug logging initialized - 2025-02-24 12:01:44 [24-Feb-2025 12:01:44 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:47 UTC] Debug logging initialized - 2025-02-24 12:01:47 [24-Feb-2025 12:01:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:54 UTC] Debug logging initialized - 2025-02-24 12:01:54 [24-Feb-2025 12:01:54 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:01:58 UTC] Debug logging initialized - 2025-02-24 12:01:58 [24-Feb-2025 12:01:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:00 UTC] Debug logging initialized - 2025-02-24 12:02:00 [24-Feb-2025 12:02:00 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:02 UTC] Debug logging initialized - 2025-02-24 12:02:02 [24-Feb-2025 12:02:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:05 UTC] Debug logging initialized - 2025-02-24 12:02:05 [24-Feb-2025 12:02:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:09 UTC] Debug logging initialized - 2025-02-24 12:02:09 [24-Feb-2025 12:02:09 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:15 UTC] Debug logging initialized - 2025-02-24 12:02:15 [24-Feb-2025 12:02:15 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:16 UTC] Debug logging initialized - 2025-02-24 12:02:16 [24-Feb-2025 12:02:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:19 UTC] Debug logging initialized - 2025-02-24 12:02:19 [24-Feb-2025 12:02:19 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:24 UTC] Debug logging initialized - 2025-02-24 12:02:24 [24-Feb-2025 12:02:24 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:37 UTC] Debug logging initialized - 2025-02-24 12:02:37 [24-Feb-2025 12:02:37 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:37 UTC] Debug logging initialized - 2025-02-24 12:02:37 [24-Feb-2025 12:02:37 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:02:57 UTC] Debug logging initialized - 2025-02-24 12:02:57 [24-Feb-2025 12:02:57 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:06 UTC] Debug logging initialized - 2025-02-24 12:03:06 [24-Feb-2025 12:03:06 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:25 UTC] Debug logging initialized - 2025-02-24 12:03:25 [24-Feb-2025 12:03:25 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:25 UTC] Debug logging initialized - 2025-02-24 12:03:25 [24-Feb-2025 12:03:25 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:27 UTC] Debug logging initialized - 2025-02-24 12:03:27 [24-Feb-2025 12:03:27 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:30 UTC] Debug logging initialized - 2025-02-24 12:03:30 [24-Feb-2025 12:03:30 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:31 UTC] Debug logging initialized - 2025-02-24 12:03:31 [24-Feb-2025 12:03:31 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:34 UTC] Debug logging initialized - 2025-02-24 12:03:34 [24-Feb-2025 12:03:34 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:34 UTC] Debug logging initialized - 2025-02-24 12:03:34 [24-Feb-2025 12:03:34 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:145) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:47 UTC] Debug logging initialized - 2025-02-24 12:03:47 [24-Feb-2025 12:03:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:48 UTC] Debug logging initialized - 2025-02-24 12:03:48 [24-Feb-2025 12:03:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:03:51 UTC] Debug logging initialized - 2025-02-24 12:03:51 [24-Feb-2025 12:03:51 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:00 UTC] Debug logging initialized - 2025-02-24 12:04:00 [24-Feb-2025 12:04:00 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:05 UTC] Debug logging initialized - 2025-02-24 12:04:05 [24-Feb-2025 12:04:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:26 UTC] Debug logging initialized - 2025-02-24 12:04:26 [24-Feb-2025 12:04:26 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:37 UTC] Debug logging initialized - 2025-02-24 12:04:37 [24-Feb-2025 12:04:37 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:41 UTC] Debug logging initialized - 2025-02-24 12:04:41 [24-Feb-2025 12:04:41 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:46 UTC] Debug logging initialized - 2025-02-24 12:04:46 [24-Feb-2025 12:04:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:51 UTC] Debug logging initialized - 2025-02-24 12:04:51 [24-Feb-2025 12:04:51 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:52 UTC] Debug logging initialized - 2025-02-24 12:04:52 [24-Feb-2025 12:04:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:04:58 UTC] Debug logging initialized - 2025-02-24 12:04:58 [24-Feb-2025 12:04:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:01 UTC] Debug logging initialized - 2025-02-24 12:05:01 [24-Feb-2025 12:05:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:01 UTC] Debug logging initialized - 2025-02-24 12:05:01 [24-Feb-2025 12:05:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:02 UTC] Debug logging initialized - 2025-02-24 12:05:02 [24-Feb-2025 12:05:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:02 UTC] Debug logging initialized - 2025-02-24 12:05:02 [24-Feb-2025 12:05:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:02 UTC] Debug logging initialized - 2025-02-24 12:05:02 [24-Feb-2025 12:05:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:04 UTC] Debug logging initialized - 2025-02-24 12:05:04 [24-Feb-2025 12:05:04 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:04 UTC] Debug logging initialized - 2025-02-24 12:05:04 [24-Feb-2025 12:05:04 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:05 UTC] Debug logging initialized - 2025-02-24 12:05:05 [24-Feb-2025 12:05:05 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:05 UTC] Debug logging initialized - 2025-02-24 12:05:05 [24-Feb-2025 12:05:05 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:06 UTC] Debug logging initialized - 2025-02-24 12:05:06 [24-Feb-2025 12:05:06 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:06 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:06 UTC] Debug logging initialized - 2025-02-24 12:05:06 [24-Feb-2025 12:05:06 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:06 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:07 UTC] Debug logging initialized - 2025-02-24 12:05:07 [24-Feb-2025 12:05:07 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:07 UTC] Debug logging initialized - 2025-02-24 12:05:07 [24-Feb-2025 12:05:07 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:07 UTC] Debug logging initialized - 2025-02-24 12:05:07 [24-Feb-2025 12:05:07 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:07 UTC] Debug logging initialized - 2025-02-24 12:05:07 [24-Feb-2025 12:05:07 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:08 UTC] Debug logging initialized - 2025-02-24 12:05:08 [24-Feb-2025 12:05:08 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:08 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:08 UTC] Debug logging initialized - 2025-02-24 12:05:08 [24-Feb-2025 12:05:08 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:08 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:08 UTC] Debug logging initialized - 2025-02-24 12:05:08 [24-Feb-2025 12:05:08 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:08 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:09 UTC] Debug logging initialized - 2025-02-24 12:05:09 [24-Feb-2025 12:05:09 UTC] Pods plugin is not active - this may cause functionality issues [24-Feb-2025 12:05:09 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:10 UTC] Debug logging initialized - 2025-02-24 12:05:10 [24-Feb-2025 12:05:10 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:12 UTC] Debug logging initialized - 2025-02-24 12:05:12 [24-Feb-2025 12:05:12 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:14 UTC] Debug logging initialized - 2025-02-24 12:05:14 [24-Feb-2025 12:05:14 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:27 UTC] Debug logging initialized - 2025-02-24 12:05:27 [24-Feb-2025 12:05:27 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:29 UTC] Debug logging initialized - 2025-02-24 12:05:29 [24-Feb-2025 12:05:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:31 UTC] Debug logging initialized - 2025-02-24 12:05:31 [24-Feb-2025 12:05:31 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:39 UTC] Debug logging initialized - 2025-02-24 12:05:39 [24-Feb-2025 12:05:39 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:48 UTC] Debug logging initialized - 2025-02-24 12:05:48 [24-Feb-2025 12:05:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:52 UTC] Debug logging initialized - 2025-02-24 12:05:52 [24-Feb-2025 12:05:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:05:52 UTC] Debug logging initialized - 2025-02-24 12:05:52 [24-Feb-2025 12:05:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:01 UTC] Debug logging initialized - 2025-02-24 12:06:01 [24-Feb-2025 12:06:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:07 UTC] Debug logging initialized - 2025-02-24 12:06:07 [24-Feb-2025 12:06:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:13 UTC] Debug logging initialized - 2025-02-24 12:06:13 [24-Feb-2025 12:06:13 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:16 UTC] Debug logging initialized - 2025-02-24 12:06:16 [24-Feb-2025 12:06:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:16 UTC] Debug logging initialized - 2025-02-24 12:06:16 [24-Feb-2025 12:06:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:18 UTC] Debug logging initialized - 2025-02-24 12:06:18 [24-Feb-2025 12:06:18 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:18 UTC] Debug logging initialized - 2025-02-24 12:06:18 [24-Feb-2025 12:06:18 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:19 UTC] Debug logging initialized - 2025-02-24 12:06:19 [24-Feb-2025 12:06:19 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:29 UTC] Debug logging initialized - 2025-02-24 12:06:29 [24-Feb-2025 12:06:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:32 UTC] Debug logging initialized - 2025-02-24 12:06:32 [24-Feb-2025 12:06:32 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:39 UTC] Debug logging initialized - 2025-02-24 12:06:39 [24-Feb-2025 12:06:39 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:48 UTC] Debug logging initialized - 2025-02-24 12:06:48 [24-Feb-2025 12:06:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:48 UTC] Debug logging initialized - 2025-02-24 12:06:48 [24-Feb-2025 12:06:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:06:52 UTC] Debug logging initialized - 2025-02-24 12:06:52 [24-Feb-2025 12:06:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:00 UTC] Debug logging initialized - 2025-02-24 12:07:00 [24-Feb-2025 12:07:00 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:15 UTC] Debug logging initialized - 2025-02-24 12:07:15 [24-Feb-2025 12:07:15 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:16 UTC] Debug logging initialized - 2025-02-24 12:07:16 [24-Feb-2025 12:07:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:20 UTC] Debug logging initialized - 2025-02-24 12:07:20 [24-Feb-2025 12:07:20 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:22 UTC] Debug logging initialized - 2025-02-24 12:07:22 [24-Feb-2025 12:07:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:24 UTC] Debug logging initialized - 2025-02-24 12:07:24 [24-Feb-2025 12:07:24 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:29 UTC] Debug logging initialized - 2025-02-24 12:07:29 [24-Feb-2025 12:07:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:29 UTC] Debug logging initialized - 2025-02-24 12:07:29 [24-Feb-2025 12:07:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:35 UTC] Debug logging initialized - 2025-02-24 12:07:35 [24-Feb-2025 12:07:35 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:47 UTC] Debug logging initialized - 2025-02-24 12:07:47 [24-Feb-2025 12:07:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:47 UTC] Debug logging initialized - 2025-02-24 12:07:47 [24-Feb-2025 12:07:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:07:59 UTC] Debug logging initialized - 2025-02-24 12:07:59 [24-Feb-2025 12:07:59 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:01 UTC] Debug logging initialized - 2025-02-24 12:08:01 [24-Feb-2025 12:08:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:04 UTC] Debug logging initialized - 2025-02-24 12:08:04 [24-Feb-2025 12:08:04 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:16 UTC] Debug logging initialized - 2025-02-24 12:08:16 [24-Feb-2025 12:08:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:18 UTC] Debug logging initialized - 2025-02-24 12:08:18 [24-Feb-2025 12:08:18 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:26 UTC] Debug logging initialized - 2025-02-24 12:08:26 [24-Feb-2025 12:08:26 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:26 UTC] Debug logging initialized - 2025-02-24 12:08:26 [24-Feb-2025 12:08:26 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:27 UTC] Debug logging initialized - 2025-02-24 12:08:27 [24-Feb-2025 12:08:27 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:30 UTC] Debug logging initialized - 2025-02-24 12:08:30 [24-Feb-2025 12:08:30 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:40 UTC] Debug logging initialized - 2025-02-24 12:08:40 [24-Feb-2025 12:08:40 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:50 UTC] Debug logging initialized - 2025-02-24 12:08:50 [24-Feb-2025 12:08:50 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:50 UTC] Debug logging initialized - 2025-02-24 12:08:50 [24-Feb-2025 12:08:50 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:53 UTC] Debug logging initialized - 2025-02-24 12:08:53 [24-Feb-2025 12:08:53 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:56 UTC] Debug logging initialized - 2025-02-24 12:08:56 [24-Feb-2025 12:08:56 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:08:56 UTC] Debug logging initialized - 2025-02-24 12:08:56 [24-Feb-2025 12:08:56 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:06 UTC] Debug logging initialized - 2025-02-24 12:09:06 [24-Feb-2025 12:09:06 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:06 UTC] Debug logging initialized - 2025-02-24 12:09:06 [24-Feb-2025 12:09:06 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:07 UTC] Debug logging initialized - 2025-02-24 12:09:07 [24-Feb-2025 12:09:07 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:10 UTC] Debug logging initialized - 2025-02-24 12:09:10 [24-Feb-2025 12:09:10 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:12 UTC] Debug logging initialized - 2025-02-24 12:09:12 [24-Feb-2025 12:09:12 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:12 UTC] Debug logging initialized - 2025-02-24 12:09:12 [24-Feb-2025 12:09:12 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:18 UTC] Debug logging initialized - 2025-02-24 12:09:18 [24-Feb-2025 12:09:18 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:18 UTC] Debug logging initialized - 2025-02-24 12:09:18 [24-Feb-2025 12:09:18 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:22 UTC] Debug logging initialized - 2025-02-24 12:09:22 [24-Feb-2025 12:09:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:28 UTC] Debug logging initialized - 2025-02-24 12:09:28 [24-Feb-2025 12:09:28 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:29 UTC] Debug logging initialized - 2025-02-24 12:09:29 [24-Feb-2025 12:09:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:31 UTC] Debug logging initialized - 2025-02-24 12:09:31 [24-Feb-2025 12:09:31 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:31 UTC] Debug logging initialized - 2025-02-24 12:09:31 [24-Feb-2025 12:09:31 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:33 UTC] Debug logging initialized - 2025-02-24 12:09:33 [24-Feb-2025 12:09:33 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:35 UTC] Debug logging initialized - 2025-02-24 12:09:35 [24-Feb-2025 12:09:35 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:38 UTC] Debug logging initialized - 2025-02-24 12:09:38 [24-Feb-2025 12:09:38 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:39 UTC] Debug logging initialized - 2025-02-24 12:09:39 [24-Feb-2025 12:09:39 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:46 UTC] Debug logging initialized - 2025-02-24 12:09:46 [24-Feb-2025 12:09:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:46 UTC] Debug logging initialized - 2025-02-24 12:09:46 [24-Feb-2025 12:09:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:48 UTC] Debug logging initialized - 2025-02-24 12:09:48 [24-Feb-2025 12:09:48 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:52 UTC] Debug logging initialized - 2025-02-24 12:09:52 [24-Feb-2025 12:09:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:57 UTC] Debug logging initialized - 2025-02-24 12:09:57 [24-Feb-2025 12:09:57 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:57 UTC] Debug logging initialized - 2025-02-24 12:09:57 [24-Feb-2025 12:09:57 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:58 UTC] Debug logging initialized - 2025-02-24 12:09:58 [24-Feb-2025 12:09:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:58 UTC] Debug logging initialized - 2025-02-24 12:09:58 [24-Feb-2025 12:09:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:09:59 UTC] Debug logging initialized - 2025-02-24 12:09:59 [24-Feb-2025 12:09:59 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:00 UTC] Debug logging initialized - 2025-02-24 12:10:00 [24-Feb-2025 12:10:00 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:01 UTC] Debug logging initialized - 2025-02-24 12:10:01 [24-Feb-2025 12:10:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:02 UTC] Debug logging initialized - 2025-02-24 12:10:02 [24-Feb-2025 12:10:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:02 UTC] Debug logging initialized - 2025-02-24 12:10:02 [24-Feb-2025 12:10:02 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:03 UTC] Debug logging initialized - 2025-02-24 12:10:03 [24-Feb-2025 12:10:03 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:04 UTC] Debug logging initialized - 2025-02-24 12:10:04 [24-Feb-2025 12:10:04 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:16 UTC] Debug logging initialized - 2025-02-24 12:10:16 [24-Feb-2025 12:10:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:16 UTC] Debug logging initialized - 2025-02-24 12:10:16 [24-Feb-2025 12:10:16 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:17 UTC] Debug logging initialized - 2025-02-24 12:10:17 [24-Feb-2025 12:10:17 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:17 UTC] Debug logging initialized - 2025-02-24 12:10:17 [24-Feb-2025 12:10:17 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:19 UTC] Debug logging initialized - 2025-02-24 12:10:19 [24-Feb-2025 12:10:19 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:19 UTC] Debug logging initialized - 2025-02-24 12:10:19 [24-Feb-2025 12:10:19 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:20 UTC] Debug logging initialized - 2025-02-24 12:10:20 [24-Feb-2025 12:10:20 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:20 UTC] Debug logging initialized - 2025-02-24 12:10:20 [24-Feb-2025 12:10:20 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:21 UTC] Debug logging initialized - 2025-02-24 12:10:21 [24-Feb-2025 12:10:21 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:22 UTC] Debug logging initialized - 2025-02-24 12:10:22 [24-Feb-2025 12:10:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:22 UTC] Debug logging initialized - 2025-02-24 12:10:22 [24-Feb-2025 12:10:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:23 UTC] Debug logging initialized - 2025-02-24 12:10:23 [24-Feb-2025 12:10:23 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:23 UTC] Debug logging initialized - 2025-02-24 12:10:23 [24-Feb-2025 12:10:23 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:24 UTC] Debug logging initialized - 2025-02-24 12:10:24 [24-Feb-2025 12:10:24 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:24 UTC] Debug logging initialized - 2025-02-24 12:10:24 [24-Feb-2025 12:10:24 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:25 UTC] Debug logging initialized - 2025-02-24 12:10:25 [24-Feb-2025 12:10:25 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:25 UTC] Debug logging initialized - 2025-02-24 12:10:25 [24-Feb-2025 12:10:25 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:27 UTC] Debug logging initialized - 2025-02-24 12:10:27 [24-Feb-2025 12:10:27 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:28 UTC] Debug logging initialized - 2025-02-24 12:10:28 [24-Feb-2025 12:10:28 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:28 UTC] Debug logging initialized - 2025-02-24 12:10:28 [24-Feb-2025 12:10:28 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:29 UTC] Debug logging initialized - 2025-02-24 12:10:29 [24-Feb-2025 12:10:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:33 UTC] Debug logging initialized - 2025-02-24 12:10:33 [24-Feb-2025 12:10:33 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:38 UTC] Debug logging initialized - 2025-02-24 12:10:38 [24-Feb-2025 12:10:38 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:40 UTC] Debug logging initialized - 2025-02-24 12:10:40 [24-Feb-2025 12:10:40 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:42 UTC] Debug logging initialized - 2025-02-24 12:10:42 [24-Feb-2025 12:10:42 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:44 UTC] Debug logging initialized - 2025-02-24 12:10:44 [24-Feb-2025 12:10:44 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:47 UTC] Debug logging initialized - 2025-02-24 12:10:47 [24-Feb-2025 12:10:47 UTC] Debug logging initialized - 2025-02-24 12:10:47 [24-Feb-2025 12:10:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:47 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:49 UTC] Debug logging initialized - 2025-02-24 12:10:49 [24-Feb-2025 12:10:49 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:49 UTC] Debug logging initialized - 2025-02-24 12:10:49 [24-Feb-2025 12:10:49 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:49 UTC] Debug logging initialized - 2025-02-24 12:10:49 [24-Feb-2025 12:10:49 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:50 UTC] Debug logging initialized - 2025-02-24 12:10:50 [24-Feb-2025 12:10:50 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:52 UTC] Debug logging initialized - 2025-02-24 12:10:52 [24-Feb-2025 12:10:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:53 UTC] Debug logging initialized - 2025-02-24 12:10:53 [24-Feb-2025 12:10:53 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:56 UTC] Debug logging initialized - 2025-02-24 12:10:56 [24-Feb-2025 12:10:56 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:10:57 UTC] Debug logging initialized - 2025-02-24 12:10:57 [24-Feb-2025 12:10:57 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:01 UTC] Debug logging initialized - 2025-02-24 12:11:01 [24-Feb-2025 12:11:01 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:03 UTC] Debug logging initialized - 2025-02-24 12:11:03 [24-Feb-2025 12:11:03 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:22 UTC] Debug logging initialized - 2025-02-24 12:11:22 [24-Feb-2025 12:11:22 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:23 UTC] Debug logging initialized - 2025-02-24 12:11:23 [24-Feb-2025 12:11:23 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:27 UTC] Debug logging initialized - 2025-02-24 12:11:27 [24-Feb-2025 12:11:27 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:29 UTC] Debug logging initialized - 2025-02-24 12:11:29 [24-Feb-2025 12:11:29 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:34 UTC] Debug logging initialized - 2025-02-24 12:11:34 [24-Feb-2025 12:11:34 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:46 UTC] Debug logging initialized - 2025-02-24 12:11:46 [24-Feb-2025 12:11:46 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:52 UTC] Debug logging initialized - 2025-02-24 12:11:52 [24-Feb-2025 12:11:52 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:11:58 UTC] Debug logging initialized - 2025-02-24 12:11:58 [24-Feb-2025 12:11:58 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18 [24-Feb-2025 12:12:05 UTC] Debug logging initialized - 2025-02-24 12:12:05 [24-Feb-2025 12:12:05 UTC] PHP Fatal error: Cannot redeclare get_place_details() (previously declared in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/functions.php:326) in /home/u218696733/domains/realjourneytravels.com/public_html/wp-content/themes/buddy-child/inc/place-functions.php on line 18
PHP Version: 8.2.27 WordPress Version: 6.7.2 Memory Limit: 3072M Max Execution Time: 480 Document Root: /home/u218696733/domains/realjourneytravels.com/public_html