RuntimeException
Failed to write cache file "/nas/content/live/midhudsonaddic/wp-content/cache/gantry5/midhudsonaddictionrecovery/twig/51/51087caac9e607a201ffd55d26aefb0a366289dc4cd23480b2e8be8683ad9c93.php". RuntimeException thrown with message "Failed to write cache file "/nas/content/live/midhudsonaddic/wp-content/cache/gantry5/midhudsonaddictionrecovery/twig/51/51087caac9e607a201ffd55d26aefb0a366289dc4cd23480b2e8be8683ad9c93.php"." Stacktrace: #11 RuntimeException in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/twig/twig/src/Cache/FilesystemCache.php:80 #10 Twig\Cache\FilesystemCache:write in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/twig/twig/src/Environment.php:487 #9 Twig\Environment:loadClass in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/twig/twig/src/Environment.php:445 #8 Twig\Environment:loadTemplate in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/twig/twig/src/Environment.php:423 #7 Twig\Environment:load in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/timber/timber/lib/Loader.php:78 #6 Timber\Loader:render in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/timber/timber/lib/Timber.php:334 #5 Timber\Timber:compile in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/timber/timber/lib/Timber.php:383 #4 Timber\Timber:fetch in /nas/content/live/midhudsonaddic/wp-content/plugins/gantry5/src/vendor/timber/timber/lib/Timber.php:410 #3 Timber\Timber:render in /nas/content/live/midhudsonaddic/wp-content/themes/uranium/single.php:31 #2 include in /nas/content/live/midhudsonaddic/wp-includes/template-loader.php:125 #1 require_once in /nas/content/live/midhudsonaddic/wp-blog-header.php:19 #0 require in /nas/content/live/midhudsonaddic/index.php:17
Stack frames (12)
11
RuntimeException
/vendor/twig/twig/src/Cache/FilesystemCache.php80
10
Twig\Cache\FilesystemCache write
/vendor/twig/twig/src/Environment.php487
9
Twig\Environment loadClass
/vendor/twig/twig/src/Environment.php445
8
Twig\Environment loadTemplate
/vendor/twig/twig/src/Environment.php423
7
Twig\Environment load
/vendor/timber/timber/lib/Loader.php78
6
Timber\Loader render
/vendor/timber/timber/lib/Timber.php334
5
Timber\Timber compile
/vendor/timber/timber/lib/Timber.php383
4
Timber\Timber fetch
/vendor/timber/timber/lib/Timber.php410
3
Timber\Timber render
/nas/content/live/midhudsonaddic/wp-content/themes/uranium/single.php31
2
include
/nas/content/live/midhudsonaddic/wp-includes/template-loader.php125
1
require_once
/nas/content/live/midhudsonaddic/wp-blog-header.php19
0
require
/nas/content/live/midhudsonaddic/index.php17
            throw new \RuntimeException(sprintf('Unable to write in the cache directory (%s).', $dir));
        }
 
        $tmpFile = tempnam($dir, basename($key));
        if (false !== @file_put_contents($tmpFile, $content) && @rename($tmpFile, $key)) {
            @chmod($key, 0666 & ~umask());
 
            if (self::FORCE_BYTECODE_INVALIDATION == ($this->options & self::FORCE_BYTECODE_INVALIDATION)) {
                // Compile cached file into bytecode cache
                if (\function_exists('opcache_invalidate') && filter_var(ini_get('opcache.enable'), FILTER_VALIDATE_BOOLEAN)) {
                    @opcache_invalidate($key, true);
                } elseif (\function_exists('apc_compile_file')) {
                    apc_compile_file($key);
                }
            }
 
            return;
        }
 
        throw new \RuntimeException(sprintf('Failed to write cache file "%s".', $key));
    }
 
    public function getTimestamp($key)
    {
        if (!file_exists($key)) {
            return 0;
        }
 
        return (int) @filemtime($key);
    }
}
 
class_alias('Twig\Cache\FilesystemCache', 'Twig_Cache_Filesystem');
 
 
            if (!$this->isAutoReload() || $this->isTemplateFresh($name, $this->cache->getTimestamp($key))) {
                $this->cache->load($key);
            }
 
            $source = null;
            if (!class_exists($cls, false)) {
                $loader = $this->getLoader();
                if (!$loader instanceof SourceContextLoaderInterface) {
                    $source = new Source($loader->getSource($name), $name);
                } else {
                    $source = $loader->getSourceContext($name);
                }
 
                $content = $this->compileSource($source);
 
                if ($this->bcWriteCacheFile) {
                    $this->writeCacheFile($key, $content);
                } else {
                    $this->cache->write($key, $content);
                    $this->cache->load($key);
                }
 
                if (!class_exists($mainCls, false)) {
                    /* Last line of defense if either $this->bcWriteCacheFile was used,
                     * $this->cache is implemented as a no-op or we have a race condition
                     * where the cache was cleared between the above calls to write to and load from
                     * the cache.
                     */
                    eval('?>'.$content);
                }
            }
 
            if (!class_exists($cls, false)) {
                throw new RuntimeError(sprintf('Failed to load Twig template "%s", index "%s": cache might be corrupted.', $name, $index), -1, $source);
            }
        }
 
        if (!$this->runtimeInitialized) {
            $this->initRuntime();
    /**
     * Loads a template internal representation.
     *
     * This method is for internal use only and should never be called
     * directly.
     *
     * @param string $name  The template name
     * @param int    $index The index if it is an embedded template
     *
     * @return \Twig_TemplateInterface A template instance representing the given template name
     *
     * @throws LoaderError  When the template cannot be found
     * @throws RuntimeError When a previously generated cache is corrupted
     * @throws SyntaxError  When an error occurred during compilation
     *
     * @internal
     */
    public function loadTemplate($name, $index = null)
    {
        return $this->loadClass($this->getTemplateClass($name), $name, $index);
    }
 
    /**
     * @internal
     */
    public function loadClass($cls, $name, $index = null)
    {
        $mainCls = $cls;
        if (null !== $index) {
            $cls .= '___'.$index;
        }
 
        if (isset($this->loadedTemplates[$cls])) {
            return $this->loadedTemplates[$cls];
        }
 
        if (!class_exists($cls, false)) {
            if ($this->bcGetCacheFilename) {
                $key = $this->getCacheFilename($name);
            } else {
     *
     * @param string|TemplateWrapper|\Twig\Template $name The template name
     *
     * @throws LoaderError  When the template cannot be found
     * @throws RuntimeError When a previously generated cache is corrupted
     * @throws SyntaxError  When an error occurred during compilation
     *
     * @return TemplateWrapper
     */
    public function load($name)
    {
        if ($name instanceof TemplateWrapper) {
            return $name;
        }
 
        if ($name instanceof Template) {
            return new TemplateWrapper($this, $name);
        }
 
        return new TemplateWrapper($this, $this->loadTemplate($name));
    }
 
    /**
     * Loads a template internal representation.
     *
     * This method is for internal use only and should never be called
     * directly.
     *
     * @param string $name  The template name
     * @param int    $index The index if it is an embedded template
     *
     * @return \Twig_TemplateInterface A template instance representing the given template name
     *
     * @throws LoaderError  When the template cannot be found
     * @throws RuntimeError When a previously generated cache is corrupted
     * @throws SyntaxError  When an error occurred during compilation
     *
     * @internal
     */
    public function loadTemplate($name, $index = null)
        }
 
        $key = null;
        $output = false;
        if ( false !== $expires ) {
            ksort($data);
            $key = md5($file.json_encode($data));
            $output = $this->get_cache($key, self::CACHEGROUP, $cache_mode);
        }
 
        if ( false === $output || null === $output ) {
            $twig = $this->get_twig();
            if ( strlen($file) ) {
                $loader = $this->get_loader();
                $result = $loader->getCacheKey($file);
                do_action('timber_loader_render_file', $result);
            }
            $data = apply_filters('timber_loader_render_data', $data);
            $data = apply_filters('timber/loader/render_data', $data, $file);
            $template = $twig->load($file);
            $output = $template->render($data);
        }
 
        if ( false !== $output && false !== $expires && null !== $key ) {
            $this->delete_cache();
            $this->set_cache($key, $output, self::CACHEGROUP, $expires, $cache_mode);
        }
        $output = apply_filters('timber_output', $output);
        return apply_filters('timber/output', $output, $data, $file);
    }
 
    protected function delete_cache() {
        Cleaner::delete_transients();
    }
 
    /**
     * Get first existing template.
     *
     * @param array|string $templates  Name(s) of the Twig template(s) to choose from.
     * @return string|bool             Name of chosen template, otherwise false.
        if ( $via_render ) {
            $file = apply_filters('timber_render_file', $file);
        } else {
            $file = apply_filters('timber_compile_file', $file);
        }
 
        $output = false;
 
        if ($file !== false) {
            if ( is_null($data) ) {
                $data = array();
            }
 
            if ( $via_render ) {
                $data = apply_filters('timber_render_data', $data);
            } else {
                $data = apply_filters('timber_compile_data', $data);
            }
 
            $output = $loader->render($file, $data, $expires, $cache_mode);
        } else {
            if ( is_array($filenames) ) {
                $filenames = implode(", ", $filenames);
            }
            Helper::error_log( 'Error loading your template files: '.$filenames.'. Make sure one of these files exists.' );
        }
 
        do_action('timber_compile_done');
        return $output;
    }
 
    /**
     * Compile a string.
     *
     * @api
     * @example
     * ```php
     * $data = array(
     *     'username' => 'Jane Doe',
     * );
        $twig = $dummy_loader->get_twig();
        $template = $twig->createTemplate($string);
        return $template->render($data);
    }
 
    /**
     * Fetch function.
     *
     * @api
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
     *                                 array, the first value is used for non-logged in visitors, the second for users.
     *                                 Default false.
     * @param string       $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
     * @return bool|string The returned output.
     */
    public static function fetch( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
        $output = self::compile($filenames, $data, $expires, $cache_mode, true);
        $output = apply_filters('timber_compile_result', $output);
        return $output;
    }
 
    /**
     * Render function.
     *
     * Passes data to a Twig file and echoes the output.
     *
     * @api
     * @example
     * ```php
     * $context = Timber::context();
     *
     * Timber::render( 'index.twig', $context );
     * ```
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
     * Passes data to a Twig file and echoes the output.
     *
     * @api
     * @example
     * ```php
     * $context = Timber::context();
     *
     * Timber::render( 'index.twig', $context );
     * ```
     * @param array|string $filenames  Name of the Twig file to render. If this is an array of files, Timber will
     *                                 render the first file that exists.
     * @param array        $data       Optional. An array of data to use in Twig template.
     * @param bool|int     $expires    Optional. In seconds. Use false to disable cache altogether. When passed an
     *                                 array, the first value is used for non-logged in visitors, the second for users.
     *                                 Default false.
     * @param string       $cache_mode Optional. Any of the cache mode constants defined in TimberLoader.
     * @return bool|string The echoed output.
     */
    public static function render( $filenames, $data = array(), $expires = false, $cache_mode = Loader::CACHE_USE_DEFAULT ) {
        $output = self::fetch($filenames, $data, $expires, $cache_mode);
        echo $output;
        return $output;
    }
 
    /**
     * Render a string with Twig variables.
     *
     * @api
     * @example
     * ```php
     * $data = array(
     *     'username' => 'Jane Doe',
     * );
     *
     * Timber::render_string( 'Hi {{ username }}, I’m a string with a custom Twig variable', $data );
     * ```
     * @param string $string A string with Twig variables.
     * @param array  $data   An array of data to use in Twig template.
     * @return bool|string
     */
use Timber\Timber;

/*
 * The Template for displaying all single posts
 */

$gantry = Gantry\Framework\Gantry::instance();
$theme  = $gantry['theme'];

// We need to render contents of <head> before plugin content gets added.
$context              = Timber::get_context();
$context['page_head'] = $theme->render('partials/page_head.html.twig', $context);

$post = Timber::query_post();

$context['post'] = $post;
$context['wp_title'] .= ' - ' . $post->title();

Timber::render(['single-' . $post->ID . '.html.twig', 'single-' . $post->post_type . '.html.twig', 'single.html.twig'], $context);
 
 
    /**
     * Filters the path of the current template before including it.
     *
     * @since 3.0.0
     *
     * @param string $template The path of the template to include.
     */
    $template = apply_filters( 'template_include', $template );
    if ( $template ) {
        /**
         * Fires immediately before including the template.
         *
         * @since 6.9.0
         *
         * @param string $template The path of the template about to be included.
         */
        do_action( 'wp_before_include_template', $template );
 
        include $template;
    } elseif ( current_user_can( 'switch_themes' ) ) {
        $theme = wp_get_theme();
        if ( $theme->errors() ) {
            wp_die( $theme->errors() );
        }
    }
    return;
}
 
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */
 
/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );
 
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
 

Environment & details:

empty
Key Value
TCM_PostShown WP_Post Object ( [ID] => 5983 [post_author] => 10 [post_date] => 2022-07-26 08:41:28 [post_date_gmt] => 2022-07-26 12:41:28 [post_content] => <!-- wp:paragraph --> <p>Levofloxacin is a quinolone antibiotic, and it is prescribed to kill bacteria and prevent it from continuing to grow. It treats a variety of medical conditions, including skin infections, infections of the prostate, infections of the kidneys and pneumonia.</p> <!-- /wp:paragraph --> <!-- wp:image {"id":5984,"sizeSlug":"large","linkDestination":"none"} --> <figure class="wp-block-image size-large"><img src="https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/07/Levofloxacin-and-Alcohol-1024x683.jpg" alt="Levofloxacin and Alcohol" class="wp-image-5984"/></figure> <!-- /wp:image --> <!-- wp:heading --> <h2>Is it Safe to Drink While Taking Levofloxacin?</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>In most cases, physicians will tell their patients not to mix levofloxacin and alcohol. The levofloxacin will not necessarily cause any harm, but if you drink alcohol while you are taking levofloxacin, the interaction could cause the bacterial infection to take longer to be resolved.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>At the same time, it is possible that levofloxacin and alcohol can cause very serious consequences for you. In the beginning, this combination will not cause life-threatening symptoms, but it can cause life-threatening complications to develop in the future. If you take levofloxacin and alcohol before you operate heavy machinery, this combination could lead to agitation, confusion and disorientation that could be very dangerous at that moment. <strong>If you do inadvertently combine levofloxacin and alcohol, you are advised to refrain from operating heavy machinery or driving.</strong></p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Alcohol reacts negatively when the body is fighting an infection. Recently, studies have shown that, when the body is metabolizing alcohol, this <strong>causes the immune system to weaken</strong>. Therefore, if you are experiencing an infection, your body’s immune system will not be able to effectively fight the infection if you are consuming large amounts of alcohol.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>According to the CDC, a woman is known to be binge <a href="https://midhudsonaddictionrecovery.com/treatment/alcoholism/">drinking when she consumes at least four alcoholic</a> drinks in one sitting. When a man consumes at least five alcoholic drinks in one sitting, this is called “binge drinking.” Heavy drinking is something else entirely. For example, when a woman consumes at least eight drinks and a man consumes at least 15 drinks in one week, this is known as “heavy drinking.”</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Scientists have also stated that heavy drinking and binge drinking are what lead to an impaired immune system. When people have impaired immune systems, they are more likely to experience infections.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Moderate consumption of alcohol reduces a person’s risk of contracting an infection. Moderate consumption means that women are drinking one alcoholic beverage per day, and men are drinking two alcoholic beverages per day.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2>The Reaction between Heavy Alcohol Consumption and Levofloxacin.</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>If you or a loved one are drinking an excessive amount of alcohol on a regular basis, the liver can become overwhelmed. In this case, issues that antibiotics cause will present themselves immediately. The liver is the organ that metabolizes medications, but if it is too busy metabolizing alcohol, it will not be able to metabolize the medication as effectively. Your liver may even be in danger of being damaged, but this will depend on how much alcohol you are drinking and the type of antibiotic you are taking.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>The side effects that alcohol causes and the side effects that levofloxacin causes may be very similar. For example, both substances <strong>may cause drowsiness, dizziness or upset stomach</strong>. When taken at the same time, these symptoms may be exacerbated.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>If you drink alcohol moderately, it will not necessarily prevent the levofloxacin from healing your infection, but it will cause the antibiotic to take a longer amount of time to resolve the infection, and it will definitely reduce your energy levels.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2>Negative Interactions between Levofloxacin and Alcohol.</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>You will not necessarily experience any negative side effects from combining levofloxacin and alcohol, but alcohol may increase the side effects that levofloxacin causes. Because of the possibility of serious side effects, your physician will advise you not to mix levofloxacin and alcohol.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2>What Are the Side Effects of Levofloxacin?</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>You do not need to consume alcohol to experience the side effects of levofloxacin because some people experience these side effects without drinking alcohol. For example, some people have trouble sleeping. When they add alcohol to the mix, they <strong>may also experience diarrhea, headaches, nausea and dizziness</strong>. As the body breaks down the alcohol you consume with levofloxacin, it releases acetaldehyde, and <em>acetaldehyde is the reason that you experience nausea at this time</em>. You must inform your physician if you experience any of the symptoms listed above.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Some side effects are extremely severe. These include liver issues that cause yellow skin, dark urine, loss of appetite, stomach pains and continuous vomiting. If you experience bruising or changes in your urine production, this may mean that you are developing kidney problems. You would also be in danger of experiencing many other serious side effects, such as shortness of breath, severe chest pain, irregular heartbeats and fainting. These symptoms require that you obtain immediate medical attention.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Levofloxacin is a member of the fluoroquinolone antibiotics class, so it has the potential to cause mental health side effects as well. According to the Food and Drug Administration, mixing levofloxacin and alcohol will increase these side effects.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Fluoroquinolone antibiotics have also been known to cause some people to experience seizures. Generally, this tends to occur if the person has experienced seizures in the past. If you have had seizures in the past and are going through alcohol withdrawal or are consuming levofloxacin and alcohol, the risk of experiencing seizures increases. Therefore, if you have a history of seizures, you must never mix levofloxacin and alcohol.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2>Interactions between Levofloxacin and Food.</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>It is also not a good idea to take levofloxacin with multivitamins and minerals if you are taking them orally. If you take a tablet that contains iron, calcium, aluminum, magnesium or other minerals, they may prevent levofloxacin from being absorbed into the bloodstream, and this will reduce its effectiveness. To prevent this from happening, it is best to take levofloxacin two to four hours before you take your multivitamin. You may also take your multivitamin four to six hours after you take levofloxacin.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2>Is It Safe to Consume Levofloxacin and Alcohol?</h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>In some of the circumstances that have been listed in this article, it has been determined that consuming levofloxacin and alcohol is not dangerous. This, however, is not the case for everyone. You or your loved one may be among the population of people for whom it would be dangerous to combine levofloxacin and alcohol, but you are having difficulties stopping your alcohol use. At <a class="wpil_keyword_link" href="https://midhudsonaddictionrecovery.com/" title="Mid Hudson Addiction Recovery" data-wpil-keyword-link="linked" data-wpil-monitor-id="39">Mid Hudson Addiction Recovery</a>, we can help you overcome your addiction to alcohol.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>The first place that you or your loved one will enter is the “detoxification center.” As withdrawal from alcohol can be deadly, our medical staff will administer medications that will help you tolerate the withdrawal process as comfortably as possible. After the detoxification process is over, you or your loved one will remain at the facility in an inpatient rehab treatment program. You will receive intensive treatment for a period or 30 days, 60 days or 90 days.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>At Mid Hudson Addiction Recovery, we do not leave you to fend for yourself after you complete your program. We also help you maintain your long-term sobriety with continued counseling and <a href="https://midhudsonaddictionrecovery.com/therapy/group/">support groups</a>. For example, we offer <a href="https://midhudsonaddictionrecovery.com/therapy/cognitive-behavioral/">cognitive behavioral therapy</a> in individual counseling, and we even offer virtual therapy.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>The problems that you or your loved one are having with your alcohol use disorder may be exacerbated by a mental health disorder. For example, 20.3 million adults have been diagnosed with substance use disorders, and 37.9% of this population have also been diagnosed with a mental health disorder. In contrast, of the 42.1 million adults diagnosed with a mental health disorder, 18.2% were also diagnosed with substance use disorders. For this reason, Mid Hudson Addiction Recovery has a program for <a href="https://midhudsonaddictionrecovery.com/treatment/co-occurring-disorders/">co-occurring disorders</a>.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>If you or your loved one are experiencing infections that are not healing because of your use of alcohol, contact us at Mid Hudson Addiction Recovery. Our staff will make sure that you recover from your addiction and become healthy again. Contact us today.</p> <!-- /wp:paragraph --> [post_title] => Levofloxacin and Alcohol [post_excerpt] => [post_status] => publish [comment_status] => closed [ping_status] => open [post_password] => [post_name] => levofloxacin-and-alcohol [to_ping] => [pinged] => [post_modified] => 2025-08-07 09:27:49 [post_modified_gmt] => 2025-08-07 13:27:49 [post_content_filtered] => [post_parent] => 0 [guid] => https://midhudsonaddictionrecovery.com/?p=5983 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw [status] => publish [id] => 5983 [slug] => levofloxacin-and-alcohol [custom] => Array ( [_edit_lock] => 1754573270:6 [_thumbnail_id] => 5984 [_edit_last] => 6 [_yoast_wpseo_primary_category] => 80 [_yoast_wpseo_content_score] => 30 [_yoast_wpseo_estimated-reading-time-minutes] => 6 [schema_disabled] => 0 [_schema_disabled] => feild_schema_disabled [schema_sameAs_repeater] => [_schema_sameAs_repeater] => field_schema_sameAs_repeater [schema_custom_json_repeater] => [_schema_custom_json_repeater] => field_schema_custom_json_repeater [schema_custom_json_override] => 0 [_schema_custom_json_override] => feild_schema_custom_json_override [wpil_sync_report3] => 1 ) )
TCM_SnippetsWrittenIds Array ( [5] => Array ( [active] => 1 [trackMode] => 0 [trackPage] => 0 [id] => 5 [name] => GA4 + Fathom [code] => <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-T181RYY20Q"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-T181RYY20Q'); </script> <!-- Fathom - beautiful, simple website analytics --> <script src="https://cdn.usefathom.com/script.js" data-site="HZBZHIAP" defer></script> <!-- / Fathom --> [order] => 1000 [position] => 0 [includeEverywhereActive] => 1 [includeCategoriesActive] => 0 [includeTagsActive] => 0 [exceptCategoriesActive] => 0 [exceptTagsActive] => 0 [deviceType] => Array ( [0] => all ) [includePostsOfType_page_Active] => 0 [includePostsOfType_page] => Array ( [0] => -1 ) [exceptPostsOfType_page_Active] => 0 [includePostsOfType_post_Active] => 0 [includePostsOfType_post] => Array ( [0] => -1 ) [exceptPostsOfType_post_Active] => 0 [codesCount] => 3 [includeCategories] => Array ( ) [includeTags] => Array ( ) [exceptCategories] => Array ( ) [exceptTags] => Array ( ) [exceptPostsOfType_page] => Array ( ) [exceptPostsOfType_post] => Array ( ) [CTC_10002_ProductsIds] => Array ( ) [CTC_10002_CategoriesIds] => Array ( ) [CTC_10002_TagsIds] => Array ( ) [CTC_10001_ProductsIds] => Array ( ) [CTC_10001_CategoriesIds] => Array ( ) [CTC_10001_TagsIds] => Array ( ) [CTC_10003_ProductsIds] => Array ( ) [CTC_10003_CategoriesIds] => Array ( ) [CTC_10003_TagsIds] => Array ( ) ) [3] => Array ( [active] => 1 [trackMode] => 0 [trackPage] => 0 [id] => 3 [name] => GTM [code] => <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-PCTSSD6');</script> <!-- End Google Tag Manager --> [order] => 1000 [position] => 0 [includeEverywhereActive] => 1 [includeCategoriesActive] => 0 [includeTagsActive] => 0 [exceptCategoriesActive] => 0 [exceptTagsActive] => 0 [deviceType] => Array ( [0] => all ) [includePostsOfType_page_Active] => 0 [includePostsOfType_page] => Array ( [0] => -1 ) [exceptPostsOfType_page_Active] => 0 [includePostsOfType_post_Active] => 0 [includePostsOfType_post] => Array ( [0] => -1 ) [exceptPostsOfType_post_Active] => 0 [codesCount] => 1 [includeCategories] => Array ( ) [includeTags] => Array ( ) [exceptCategories] => Array ( ) [exceptTags] => Array ( ) [exceptPostsOfType_page] => Array ( ) [exceptPostsOfType_post] => Array ( ) [CTC_10002_ProductsIds] => Array ( ) [CTC_10002_CategoriesIds] => Array ( ) [CTC_10002_TagsIds] => Array ( ) [CTC_10001_ProductsIds] => Array ( ) [CTC_10001_CategoriesIds] => Array ( ) [CTC_10001_TagsIds] => Array ( ) [CTC_10003_ProductsIds] => Array ( ) [CTC_10003_CategoriesIds] => Array ( ) [CTC_10003_TagsIds] => Array ( ) ) )
TCM_SnippetsWrittenMd5 Array ( [4bd52374af17647c6b5ff69663b1ddb0] => 5 [1d83876615444ee1c2354fd8b20c1d06] => 3 )
TCM_Cache_Query_2_ Array ( [0] => Array ( [id] => post [text] => Post (post) [name] => Post (post) ) [1] => Array ( [id] => page [text] => Page (page) [name] => Page (page) ) )
empty
empty
empty
Key Value
SERVER_SOFTWARE nginx
REQUEST_URI /levofloxacin-and-alcohol/
USER fpm200055
HOME /home/fpm200055
WPENGINE_ACCOUNT midhudsonaddic
WPENGINE_PHPSESSIONS on
WPENGINE_DB_SESSIONS off
HTTP_X_WPE_LOCAL_SSL 1
HTTP_X_FORWARDED_PROTO https
HTTP_CF_RAY 9c8701ebfc26cf79-CMH
HTTP_CF_CONNECTING_IP 216.73.216.44, 216.73.216.44, 216.73.216.44
SERVER_NAME midhudsonaddictionrecovery.com
SERVER_PROTOCOL HTTP/1.1
REQUEST_SCHEME http
IS_WPE 1
GATEWAY_INTERFACE CGI/1.1
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
PATH_INFO
REQUEST_METHOD GET
REDIRECT_STATUS 200
REMOTE_PORT
HTTP_REFERER https://midhudsonaddictionrecovery.com/levofloxacin-and-alcohol
HTTP_CF_IPCOUNTRY US
HTTP_X_WORDPRESS_TYPE DEFAULT
HTTP_HOST midhudsonaddictionrecovery.com
REMOTE_ADDR 216.73.216.44
HTTP_CDN_LOOP cloudflare; loops=1
HTTP_X_WPE_SSL 1
SYSLOG_IDENT phperr-midhudsonaddic
PATH_TRANSLATED /nas/content/live/midhudsonaddic/index.php
SCRIPT_NAME /index.php
HTTP_X_REAL_IP_REMOTE 104.23.197.96
HTTP_ACCEPT */*
HTTP_X_WPE_REQUEST_ID 974cfdd322c6f7dc4cfaf3f308d44f5a
DOCUMENT_URI /index.php
HTTPS on
HTTP_VIA 1.1 pod-404710 (Varnish/7.7)
HTTP_ACCEPT_ENCODING gzip
HTTP_X_WPE_EDGE AN
HTTP_X_IS_BOT 1
HTTP_CF_VISITOR {\"scheme\":\"https\"}
PHP_VALUE post_max_size=100M; upload_max_filesize=50M;
PHP_ADMIN_VALUE sendmail_path=/bin/sendmail-wrapper.sh 03c9f7ada29a306649df8e0504516929c294daa5 /usr/sbin/sendmail -t -i; syslog.ident=phperr-midhudsonaddic; newrelic.appname=midhudsonaddic; newrelic.browser_monitoring.auto_instrument=off; newrelic.enabled=off; newrelic.license=;
DOCUMENT_ROOT /nas/content/live/midhudsonaddic
HTTP_X_WPENGINE_PHP_VERSION 8.2
HTTP_X_WPE_INSTALL_NAME midhudsonaddic
SCRIPT_FILENAME /nas/content/live/midhudsonaddic/index.php
CONTENT_LENGTH 0
CONTENT_TYPE
QUERY_STRING
SERVER_PORT 80
SERVER_ADDR 127.0.0.1
HTTP_X_UA_ORIGINAL Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_X_FORWARDED_HOST midhudsonaddictionrecovery.com
HTTP_RAWHOST midhudsonaddictionrecovery.com
HTTP_WPE_READONLY on
HTTP_X_CACHE_GROUP normal
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1770174967.7
REQUEST_TIME 1770174967
Key Value
USER fpm200055
HOME /home/fpm200055
WPENGINE_ACCOUNT midhudsonaddic
WPENGINE_PHPSESSIONS on
WPENGINE_DB_SESSIONS off
HTTP_X_WPE_LOCAL_SSL 1
HTTP_X_FORWARDED_PROTO https
HTTP_CF_RAY 9c8701ebfc26cf79-CMH
HTTP_CF_CONNECTING_IP 216.73.216.44, 216.73.216.44, 216.73.216.44
SERVER_NAME midhudsonaddictionrecovery.com
SERVER_PROTOCOL HTTP/1.1
REQUEST_SCHEME http
IS_WPE 1
GATEWAY_INTERFACE CGI/1.1
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
PATH_INFO
REQUEST_METHOD GET
REDIRECT_STATUS 200
REMOTE_PORT
SERVER_SOFTWARE nginx
HTTP_REFERER https://midhudsonaddictionrecovery.com/levofloxacin-and-alcohol
HTTP_CF_IPCOUNTRY US
HTTP_X_WORDPRESS_TYPE DEFAULT
HTTP_HOST midhudsonaddictionrecovery.com
REMOTE_ADDR 216.73.216.44
HTTP_CDN_LOOP cloudflare; loops=1
HTTP_X_WPE_SSL 1
SYSLOG_IDENT phperr-midhudsonaddic
PATH_TRANSLATED /nas/content/live/midhudsonaddic/index.php
SCRIPT_NAME /index.php
HTTP_X_REAL_IP_REMOTE 104.23.197.96
HTTP_ACCEPT */*
HTTP_X_WPE_REQUEST_ID 974cfdd322c6f7dc4cfaf3f308d44f5a
DOCUMENT_URI /index.php
REQUEST_URI /levofloxacin-and-alcohol/
HTTPS on
HTTP_VIA 1.1 pod-404710 (Varnish/7.7)
HTTP_ACCEPT_ENCODING gzip
HTTP_X_WPE_EDGE AN
HTTP_X_IS_BOT 1
HTTP_CF_VISITOR {"scheme":"https"}
PHP_VALUE post_max_size=100M; upload_max_filesize=50M;
PHP_ADMIN_VALUE sendmail_path=/bin/sendmail-wrapper.sh 03c9f7ada29a306649df8e0504516929c294daa5 /usr/sbin/sendmail -t -i; syslog.ident=phperr-midhudsonaddic; newrelic.appname=midhudsonaddic; newrelic.browser_monitoring.auto_instrument=off; newrelic.enabled=off; newrelic.license=;
DOCUMENT_ROOT /nas/content/live/midhudsonaddic
HTTP_X_WPENGINE_PHP_VERSION 8.2
HTTP_X_WPE_INSTALL_NAME midhudsonaddic
SCRIPT_FILENAME /nas/content/live/midhudsonaddic/index.php
CONTENT_LENGTH 0
CONTENT_TYPE
QUERY_STRING
SERVER_PORT 80
SERVER_ADDR 127.0.0.1
HTTP_X_UA_ORIGINAL Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_X_FORWARDED_HOST midhudsonaddictionrecovery.com
HTTP_RAWHOST midhudsonaddictionrecovery.com
HTTP_WPE_READONLY on
HTTP_X_CACHE_GROUP normal
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1770174967.7
REQUEST_TIME 1770174967
0. Whoops\Handler\PrettyPageHandler