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] => 5746 [post_author] => 8 [post_date] => 2022-04-28 17:32:33 [post_date_gmt] => 2022-04-28 21:32:33 [post_content] => <!-- wp:paragraph --> <p>Comedian Bob Saget, loved for his role as Danny Tanner on the long-running American sitcom Full House, known as America’s funniest home videos host, and some Disney shows and comedy tours, was trending on social media due to breaking news surfaced that he was sadly found dead in his Florida hotel room on Sunday, January 9, 2022. According to TMZ, staff members at the Ritz-Carlton contacted the Orlando Sheriff’s Department after encountering his body at about 4 p.m. Saget was only 65 years old at the time of his death, which has many people wondering, including his co-stars and in the Hollywood industry as to what is the cause of death of the stand-up comedian.</p> <!-- /wp:paragraph --> <!-- wp:image {"id":5748,"sizeSlug":"large","linkDestination":"none","align":"center"} --> <figure class="wp-block-image aligncenter size-large"><img src="https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/04/bob-saget-1024x576.jpg" alt="bob saget" class="wp-image-5748"/></figure> <!-- /wp:image --> <!-- wp:audio {"id":6042} --> <figure class="wp-block-audio"><audio controls src="https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/09/Bob-Saget.mp3"></audio><figcaption class="wp-element-caption"><em>The audio version of this article.</em></figcaption></figure> <!-- /wp:audio --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>What Was His Death Cause?</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>According to an autopsy report from the Orange County Sheriff’s Office, Bob Saget's death cause was due to blunt head trauma they deemed accidental. The report showcased a fracture at the base of his skull and bleeding around the brain. The doctor noted that the cause of the fracture had to be something hard that was covered in something soft since there was no skin damage where the injury occurred.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>While there is no definitive answer as to what exactly caused the blunt trauma, his family members have spoken out with some final conclusions about the situation. They believe Saget had fallen in his hotel room, injured his head, and didn’t think anything of it. They believe he passed in his sleep and not because of foul play.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>According to Saget’s family, the toxicology report revealed that he had no illicit drugs, alcohol, or no evidence of drug use in his system at the time of his injury. He did have levels of Clonazepam, an anxiety medication, and trazodone, an <a href="https://midhudsonaddictionrecovery.com/treatment/antidepressants/" data-wpil-monitor-id="116">antidepressant</a>, in his system. The official report didn’t keep many from suspecting that illicit drugs and/or alcohol could be involved due to Saget’s littered past with drug and alcohol addiction issues.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>Sexual Assault Allegations Explained</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>In his memoir, Saget reveals that he and other members of the cast made crude jokes and gestures when it came to a Michelle-sized doll that was used for scenes where the Olsen twins were unavailable. Saget refers to his crude behavior as a Jekyll/Hyde experience.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>According to Saget, the show was super-clean-cut, and his comedy off-screen helped to bring a sense of balance to the experience. His onscreen partner, John Stamos, even noted the crude comedic acts that occurred on the set of Fuller House during <em>The Comedy Central Roast of </em><em>Bob Saget</em>.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Rumors did surface of sexual allegations against Bog Saget. Many online sources suspected that Saget had inappropriate relationships with the Olsen twins while filming the television series Fuller House. Saget explained that his relationship with the Olsen twins was not of a sexual nature. This explanation was backed up by the Olsen twins as well.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>Was </strong><strong>Bob Saget</strong><strong> Arrested?</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>Over the years, there have been many rumors about Saget being arrested. The truth is that he was never arrested for drug or alcohol use. However, he did state in his 2014 memoir that he was a very heavy drinker after the ending of his first marriage. The actor admitted to boasting about driving better when he was drunk and repeatedly got behind the wheel intoxicated.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>He admits to being pulled over at one point while intoxicated and on the way to picking up an item for his daughter. Although the cop “showed him compassion” and didn’t arrest him, Saget noted that the experience changed his behavior. He quit drinking cold turkey. He did note in his memoir that his actions were stupid, and he’s glad that he didn’t harm anyone else during that dark time in his life.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>Bob Saget</strong><strong> Drugs and Alcohol Addiction</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>Many fans of the Full House series blindly thought of Bob Saget as the all-around great American dad. His uplifting personality and clean comedic jokes on the series positioned him as clean as one could be. However, in <em>Dirty Daddy: The Chronicles of a Family Man, Turned Filthy Comedian</em> Saget shares his actual life experiences.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>The book reveals how much Saget felt constrained by this national title of the “best dad” due to the Fuller House series. He goes in-depth speaking about his personal life and struggles with alcohol and drug addiction. His 2014 memoir brought to light various instances of improper behavior on the set of Fuller House.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>One memory that Saget writes that he regretted was the whippets that he and fellow cast members John and Dave did on set. In his book, Saget notes that while waiting impatiently for the shooting of other cast members to seize, he grabbed Dave and John and went into a prop room. He opened the refrigerator and found cans of whipped cream.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Saget states that he, Dave, and John all took a can and inhaled some of the nitrous oxide. As he revealed the story, he noted that nitrous oxide can be very dangerous and <a href="https://midhudsonaddictionrecovery.com/treatment/alcoholism/">lead to brain</a> damage. This part of his book shocked many Danny Tanner lovers as their all-American idol dad turned into your run-of-the-mill male trying drugs.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>The </strong><strong>Fuller House</strong><strong> Drug Curse</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>While Saget did face slight drug and alcohol problems throughout his life, he’s not the only one. There are many members of the Fuller House family that underwent their own struggles with addiction and sought out <a href="https://midhudsonaddictionrecovery.com/programs/">drug rehab programs</a> to overcome them. John Stamos has been one of the most recently noted.</p> <!-- /wp:paragraph --> <!-- wp:image {"id":5749,"sizeSlug":"large","linkDestination":"none","align":"center"} --> <figure class="wp-block-image aligncenter size-large"><img src="https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/04/John-Stamos-1024x576.jpg" alt="John Stamos" class="wp-image-5749"/></figure> <!-- /wp:image --> <!-- wp:heading {"level":3} --> <h3 class="wp-block-heading"><strong>John Stamos</strong></h3> <!-- /wp:heading --> <!-- wp:paragraph --> <p>In June of 2015, Stamos was arrested for driving under the influence. He did plead no contest to the charges. Sources note that he was under the influence of GHB, a well-known party drug. After being arrested, Stamos did seek assistance from a rehab facility to treat his drug addiction. He later noted that his addiction started due to the personal loss of his mother.</p> <!-- /wp:paragraph --> <!-- wp:image {"id":5750,"sizeSlug":"large","linkDestination":"none","align":"center"} --> <figure class="wp-block-image aligncenter size-large"><img src="https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/04/Jodie-Sweetin-1024x577.jpg" alt="Jodie Sweetin" class="wp-image-5750"/></figure> <!-- /wp:image --> <!-- wp:heading {"level":3} --> <h3 class="wp-block-heading"><strong>Jodie Sweetin</strong></h3> <!-- /wp:heading --> <!-- wp:paragraph --> <p>Jodie Sweetin, the beloved Stephanie Tanner, has made many headlines after the end of the Fuller House series. In a 2006 interview with Good Morning America, Sweetin openly admitted that she was addicted to <a href="https://midhudsonaddictionrecovery.com/treatment/stimulants/meth/">methamphetamine</a>. The actress stated that she started her drug habit in 1995 as the Full House series went off the air.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>Sweetin explains that much of her identity was based on her job at Full House. The series ended when she was only 13 years old. The emotional trauma of finding a new identity was very overwhelming for the actress. She noted that her drug abuse started with drinking a couple of times a week. After experimenting with pot, she turned to <a href="https://midhudsonaddictionrecovery.com/treatment/stimulants/cocaine/" data-wpil-monitor-id="14">cocaine</a> and Ecstasy in college.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>At the 2004 premiere of the Olsen twins’ <a href="https://midhudsonaddictionrecovery.com/drug-addiction-on-netflix/">movie</a> “New York Minute”, Sweetin admits to snorting crystal meth in the bathroom. Between 2006 and 2007, she even admitted that she spent an estimated $60,000 on drugs to support her habit. The actress initially sought drug rehab and supposedly ousted her drug addiction. However, Sweetin admits that she didn’t undergo a full recovery. Rather, the public fell in love with her new image of being sober, and she cashed in on that habit.</p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>In fact, she was often hired on as a lecturer for colleges to speak about her drug addiction recovery. Sweetin revealed that she would do drugs before going on stage to help battle the feelings of shame that came along with hiding her drug use. Sweetin admitted to doing coke, meth, Ecstasy, and <a href="https://midhudsonaddictionrecovery.com/treatment/alcoholism/">drinking alcohol</a>. She finally sought out a full recovery in December of 2008. Much of her drug struggles and drug rehab story can be found within her book <em>unSweetined</em>.</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading"><strong>Conclusion</strong></h2> <!-- /wp:heading --> <!-- wp:paragraph --> <p>As Bob Saget and other members of the Full House family have proven, drug and <a href="https://midhudsonaddictionrecovery.com/famous-fetal-alcohol-syndrome-adults/">alcohol addiction doesn’t skip over the famous</a> ones. Rather, many people struggle with addiction and overcome it. If you or someone you know is suffering from addiction or facing difficult times due to addiction, please contact <a class="wpil_keyword_link" href="https://midhudsonaddictionrecovery.com/" title="Mid Hudson Addiction Recovery" data-wpil-keyword-link="linked" data-wpil-monitor-id="38">Mid Hudson Addiction Recovery</a> for help today!</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading">FAQ</h2> <!-- /wp:heading --> <!-- wp:acf/schema-faq-acf-block {"name":"acf/schema-faq-acf-block","data":{"schema_faq_repeater_0_schema_faq_question":"What did Bob Saget die of?","_schema_faq_repeater_0_schema_faq_question":"feild_schema_faq_question","schema_faq_repeater_0_schema_faq_answer":"According to an autopsy report from the Orange County Sheriff's Office, Saget died from blunt head trauma they deemed accidental. The report showcased a fracture at the base of his skull and bleeding around the brain. The doctor noted that the cause of the fracture had to be something hard that was covered in something soft since there was no skin damage where the injury occurred.","_schema_faq_repeater_0_schema_faq_answer":"feild_schema_faq_answer","schema_faq_repeater":1,"_schema_faq_repeater":"field_schema_faq_repeater","schema_faq_color":"dark","_schema_faq_color":"field_schema_faq_color","schema_faq_bg_color":"muted","_schema_faq_bg_color":"field_schema_faq_bg_color","schema_faq_border_color":"light","_schema_faq_border_color":"field_schema_faq_border_color"},"mode":"edit"} /--> [post_title] => Bob Saget: The Truth About His Battle With Substance Abuse [post_excerpt] => [post_status] => publish [comment_status] => open [ping_status] => open [post_password] => [post_name] => bob-saget [to_ping] => [pinged] => [post_modified] => 2025-08-07 09:30:47 [post_modified_gmt] => 2025-08-07 13:30:47 [post_content_filtered] => [post_parent] => 0 [guid] => https://midhudsonaddictionrecovery.com/?p=5746 [menu_order] => 0 [post_type] => post [post_mime_type] => [comment_count] => 0 [filter] => raw [status] => publish [id] => 5746 [slug] => bob-saget [custom] => Array ( [_edit_lock] => 1754573449:6 [_edit_last] => 6 [_yoast_wpseo_primary_category] => 83 [_yoast_wpseo_estimated-reading-time-minutes] => 7 [_thumbnail_id] => 5748 [_wp_page_template] => [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 [enclosure] => https://midhudsonaddictionrecovery.com/wp-content/uploads/2022/09/Bob-Saget.mp3 2597661 audio/mpeg [_yoast_wpseo_wordproof_timestamp] => [_yoast_wpseo_content_score] => 60 [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 /bob-saget/
USER fpm200055
HOME /home/fpm200055
WPENGINE_ACCOUNT midhudsonaddic
WPENGINE_PHPSESSIONS on
WPENGINE_DB_SESSIONS off
HTTP_X_WORDPRESS_TYPE DEFAULT
HTTP_X_FORWARDED_HOST midhudsonaddictionrecovery.com
QUERY_STRING
HTTP_CF_VISITOR {\"scheme\":\"https\"}
HTTP_CF_IPCOUNTRY US
HTTP_X_WPE_INSTALL_NAME midhudsonaddic
HTTP_X_WPE_EDGE AN
REQUEST_METHOD GET
HTTP_CF_RAY 9c1b1d3e19c8e0c6-EWR
HTTP_USER_AGENT Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
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=;
SERVER_ADDR 127.0.0.1
HTTP_SEC_FETCH_DEST document
HTTP_RAWHOST midhudsonaddictionrecovery.com
DOCUMENT_ROOT /nas/content/live/midhudsonaddic
PATH_INFO
IS_WPE 1
HTTP_HOST midhudsonaddictionrecovery.com
PHP_VALUE upload_max_filesize=50M; post_max_size=100M;
HTTP_CDN_LOOP cloudflare; loops=1
SYSLOG_IDENT phperr-midhudsonaddic
HTTPS on
SERVER_PORT 80
HTTP_VIA 1.1 pod-404710 (Varnish/7.7)
HTTP_WPE_READONLY on
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
PATH_TRANSLATED /nas/content/live/midhudsonaddic/index.php
CONTENT_TYPE
REDIRECT_STATUS 200
HTTP_X_WPE_LOCAL_SSL 1
REMOTE_ADDR 69.113.2.34
HTTP_REFERER https://www.google.com/
HTTP_X_REAL_IP_REMOTE 162.158.63.126
HTTP_X_WPENGINE_PHP_VERSION 8.2
HTTP_SEC_FETCH_MODE navigate
GATEWAY_INTERFACE CGI/1.1
HTTP_X_WPE_REQUEST_ID 61651913f795664f3613a99d56d93964
HTTP_ACCEPT_ENCODING gzip
SERVER_PROTOCOL HTTP/1.1
CONTENT_LENGTH 0
REQUEST_SCHEME http
REMOTE_PORT
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.9
HTTP_X_FORWARDED_PROTO https
HTTP_CF_CONNECTING_IP 69.113.2.34, 69.113.2.34, 69.113.2.34
HTTP_PRIORITY u=0, i
SCRIPT_FILENAME /nas/content/live/midhudsonaddic/index.php
HTTP_X_IS_BOT 0
HTTP_X_CACHE_GROUP normal
SERVER_NAME midhudsonaddictionrecovery.com
DOCUMENT_URI /index.php
HTTP_X_UA_ORIGINAL Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
HTTP_X_WPE_SSL 1
HTTP_SEC_FETCH_SITE cross-site
SCRIPT_NAME /index.php
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1769043640.35
REQUEST_TIME 1769043640
Key Value
USER fpm200055
HOME /home/fpm200055
WPENGINE_ACCOUNT midhudsonaddic
WPENGINE_PHPSESSIONS on
WPENGINE_DB_SESSIONS off
HTTP_X_WORDPRESS_TYPE DEFAULT
HTTP_X_FORWARDED_HOST midhudsonaddictionrecovery.com
QUERY_STRING
HTTP_CF_VISITOR {"scheme":"https"}
HTTP_CF_IPCOUNTRY US
HTTP_X_WPE_INSTALL_NAME midhudsonaddic
HTTP_X_WPE_EDGE AN
REQUEST_METHOD GET
HTTP_CF_RAY 9c1b1d3e19c8e0c6-EWR
HTTP_USER_AGENT Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
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=;
SERVER_ADDR 127.0.0.1
HTTP_SEC_FETCH_DEST document
HTTP_RAWHOST midhudsonaddictionrecovery.com
DOCUMENT_ROOT /nas/content/live/midhudsonaddic
PATH_INFO
IS_WPE 1
HTTP_HOST midhudsonaddictionrecovery.com
PHP_VALUE upload_max_filesize=50M; post_max_size=100M;
HTTP_CDN_LOOP cloudflare; loops=1
SYSLOG_IDENT phperr-midhudsonaddic
HTTPS on
SERVER_PORT 80
HTTP_VIA 1.1 pod-404710 (Varnish/7.7)
HTTP_WPE_READONLY on
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
PATH_TRANSLATED /nas/content/live/midhudsonaddic/index.php
CONTENT_TYPE
REDIRECT_STATUS 200
SERVER_SOFTWARE nginx
HTTP_X_WPE_LOCAL_SSL 1
REMOTE_ADDR 69.113.2.34
HTTP_REFERER https://www.google.com/
HTTP_X_REAL_IP_REMOTE 162.158.63.126
HTTP_X_WPENGINE_PHP_VERSION 8.2
HTTP_SEC_FETCH_MODE navigate
GATEWAY_INTERFACE CGI/1.1
HTTP_X_WPE_REQUEST_ID 61651913f795664f3613a99d56d93964
HTTP_ACCEPT_ENCODING gzip
SERVER_PROTOCOL HTTP/1.1
CONTENT_LENGTH 0
REQUEST_SCHEME http
REMOTE_PORT
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.9
HTTP_X_FORWARDED_PROTO https
REQUEST_URI /bob-saget/
HTTP_CF_CONNECTING_IP 69.113.2.34, 69.113.2.34, 69.113.2.34
HTTP_PRIORITY u=0, i
SCRIPT_FILENAME /nas/content/live/midhudsonaddic/index.php
HTTP_X_IS_BOT 0
HTTP_X_CACHE_GROUP normal
SERVER_NAME midhudsonaddictionrecovery.com
DOCUMENT_URI /index.php
HTTP_X_UA_ORIGINAL Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.2 Safari/605.1.15
HTTP_X_WPE_SSL 1
HTTP_SEC_FETCH_SITE cross-site
SCRIPT_NAME /index.php
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1769043640.35
REQUEST_TIME 1769043640
0. Whoops\Handler\PrettyPageHandler