Error
Call to a member function url() on null Error thrown with message "Call to a member function url() on null" Stacktrace: #7 Error in /var/www/mots.us/httpdocs/site/templates/homecategory.php:156 #6 require in /var/www/mots.us/httpdocs/kirby/vendor/getkirby/toolkit/lib/tpl.php:22 #5 Tpl:load in /var/www/mots.us/httpdocs/kirby/kirby/component/template.php:103 #4 Kirby\Component\Template:render in /var/www/mots.us/httpdocs/kirby/kirby.php:658 #3 Kirby:template in /var/www/mots.us/httpdocs/kirby/kirby.php:646 #2 Kirby:render in /var/www/mots.us/httpdocs/kirby/kirby/component/response.php:29 #1 Kirby\Component\Response:make in /var/www/mots.us/httpdocs/kirby/kirby.php:728 #0 Kirby:launch in /var/www/mots.us/httpdocs/index.php:16
Stack frames (8):
7 Error
/­var/­www/­mots.us/­httpdocs/­site/­templates/­homecategory.php156
6 require
…/­vendor/­getkirby/­toolkit/­lib/­tpl.php22
5 Tpl load
…/­kirby/­component/­template.php103
4 Kirby\Component\Template render
…/­kirby.php658
3 Kirby template
…/­kirby.php646
2 Kirby render
…/­kirby/­component/­response.php29
1 Kirby\Component\Response make
…/­kirby.php728
0 Kirby launch
/­var/­www/­mots.us/­httpdocs/­index.php16
/var/www/mots.us/httpdocs/site/templates/homecategory.php
					}
					else
					{	
						//if the home highlight doesn't have a featured image, first try the subpost featured image					
						if($p->featuredimg() != '' && is_object($p->featuredimg()))
						{			
							//use the home highlight featured image
							$image = $p->image($p->featuredimg());
						
							$i_src = $image->url();					
							$t_src = $image->thumb(array('width' => 50))->url();	
							$i_orientation = $image->orientation();	
							$width =  $image->width();
							$height =  $image->height();
							$img_caption = $image->img_caption();
							$img_alt = $image->img_alt();						
						}
						else
						{
							//last chance: hope that the parent project has a featured image	
/var/www/mots.us/httpdocs/kirby/vendor/getkirby/toolkit/lib/tpl.php
 */
class Tpl extends Silo {
 
  public static $data = array();
 
  public static function load($_file, $_data = array(), $_return = true) {
    if(!file_exists($_file)) return false;
    ob_start();
    extract(array_merge(static::$data, (array)$_data));
    require($_file);
    $_content = ob_get_contents();
    ob_end_clean();
    if($_return) return $_content;
    echo $_content;
  }
 
}
/var/www/mots.us/httpdocs/kirby/kirby/component/template.php
    if(!file_exists($file)) {
      throw new Exception('The template could not be found');
    }
 
    // merge and register the template data globally
    $tplData = tpl::$data;
    tpl::$data = array_merge(tpl::$data, $data);
 
    // load the template
    $result = tpl::load($file, null, $return);
 
    // reset the template data
    tpl::$data = $tplData;
 
    return $result;
 
  }
 
}
 
/var/www/mots.us/httpdocs/kirby/kirby.php
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
  public function template(Page $page, $data = array()) {
    return $this->component('template')->render($page, $data);
  }
 
  public function request() {
    if(!is_null($this->request)) return $this->request;
    return $this->request = new Request($this);
  }
 
  public function router() {
    return $this->router;
  }
/var/www/mots.us/httpdocs/kirby/kirby.php
        // store the result for the next round
        $this->cache()->set($cacheId, $template);
      }
 
      return $template;
 
    }
 
    // return a fresh template
    return $this->template($page, $data);
 
  }
 
  /**
   * Template configuration
   *
   * @param Page $page
   * @param array $data
   * @return string
   */
/var/www/mots.us/httpdocs/kirby/kirby/component/response.php
   * @return mixed
   */
  public function make($response) {
 
    if(is_string($response)) {
      return $this->kirby->render(page($response));
    } else if(is_array($response)) {
      return $this->kirby->render(page($response[0]), $response[1]);
    } else if(is_a($response, 'Page')) {
      return $this->kirby->render($response);      
    } else if(is_a($response, 'Response')) {
      return $response;
    } else {
      return null;
    }
 
  }
 
}
/var/www/mots.us/httpdocs/kirby/kirby.php
    // call the router action with all arguments from the pattern
    $response = call($this->route->action(), $this->route->arguments());
 
    // load all language variables
    // this can only be loaded once the router action has been called
    // otherwise the current language is not yet available
    $this->localize();
 
    // build the response
    $this->response = $this->component('response')->make($response);
 
    // store the current language in the session
    if(
        $this->option('language.detect') &&
        $this->site()->multilang() &&
        $this->site()->language()
      ) {
      s::set('kirby_language', $this->site()->language()->code());
    }
 
/var/www/mots.us/httpdocs/index.php
 
// check for a custom site.php
if(file_exists(__DIR__ . DS . 'site.php')) {
  require(__DIR__ . DS . 'site.php');
} else {
  $kirby = kirby();
}
 
// render
echo $kirby->launch();

Environment & details:

Key Value
Kirby Toolkit v2.5.6
Kirby CMS v2.5.6
Key Value
/home/social-media-content-for-engagement-growth
empty
empty
empty
empty
Key Value
USER www-data
HOME /var/www
HTTP_HOST mots.us
HTTP_USER_AGENT claudebot
HTTP_ACCEPT */*
REDIRECT_STATUS 200
SERVER_NAME mots.us
SERVER_PORT 443
SERVER_ADDR 10.197.126.59
REMOTE_USER
REMOTE_PORT 36726
REMOTE_ADDR 44.192.132.66
SERVER_SOFTWARE nginx/1.18.0
GATEWAY_INTERFACE CGI/1.1
HTTPS on
REQUEST_SCHEME https
SERVER_PROTOCOL HTTP/1.1
DOCUMENT_ROOT /var/www/mots.us/httpdocs
DOCUMENT_URI /index.php
REQUEST_URI /home/social-media-content-for-engagement-growth
SCRIPT_NAME /index.php
CONTENT_LENGTH
CONTENT_TYPE
REQUEST_METHOD GET
QUERY_STRING /home/social-media-content-for-engagement-growth&
SCRIPT_FILENAME /var/www/mots.us/httpdocs/index.php
FCGI_ROLE RESPONDER
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711656570.7027
REQUEST_TIME 1711656570
empty
0. Whoops\Handler\PrettyPageHandler