Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6213299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:40:19+00:00 2026-05-24T06:40:19+00:00

I’m struggling to get my Zend driven website work on a remote server, and

  • 0

I’m struggling to get my Zend driven website work on a remote server, and I’m not clear on what’s going wrong with the include paths. I’d really appreciate some help as I’ve tried every permutation I can think of, and I suspect I’ve missed something fundamental.

The exception I’m getting is:

Message: Plugin by name 'Headtitle' was not found in the registry; used paths: Zend_View_Helper_: Zend/View/Helper/:/f5/metamusic/protected/application/views/helpers/
Stack trace:

#0 /f5/metamusic/protected/library/Zend/View/Abstract.php(1182): Zend_Loader_PluginLoader->load('Headtitle')
#1 /f5/metamusic/protected/library/Zend/View/Abstract.php(618): Zend_View_Abstract->_getPlugin('helper', 'headtitle')
#2 /f5/metamusic/protected/library/Zend/View/Abstract.php(344): Zend_View_Abstract->getHelper('headtitle')
#3 [internal function]: Zend_View_Abstract->__call('headtitle', Array)
#4 /f5/metamusic/protected/application/views/scripts/search/index.phtml(3): Zend_View->headtitle('Search')
#5 /f5/metamusic/protected/library/Zend/View.php(108): include('/f5/metamusic/p...')
#6 /f5/metamusic/protected/library/Zend/View/Abstract.php(888): Zend_View->_run('/f5/metamusic/p...')
#7 /f5/metamusic/protected/library/Zend/Controller/Action/Helper/ViewRenderer.php(908): Zend_View_Abstract->render('search/index.ph...')
#8 /f5/metamusic/protected/library/Zend/Controller/Action/Helper/ViewRenderer.php(929): Zend_Controller_Action_Helper_ViewRenderer->renderScript('search/index.ph...', NULL)
#9 /f5/metamusic/protected/library/Zend/Controller/Action/Helper/ViewRenderer.php(968): Zend_Controller_Action_Helper_ViewRenderer->render()
#10 /f5/metamusic/protected/library/Zend/Controller/Action/HelperBroker.php(277): Zend_Controller_Action_Helper_ViewRenderer->postDispatch()
#11 /f5/metamusic/protected/library/Zend/Controller/Action.php(523): Zend_Controller_Action_HelperBroker->notifyPostDispatch()
#12 /f5/metamusic/protected/library/Zend/Controller/Dispatcher/Standard.php(295): Zend_Controller_Action->dispatch('indexAction')
#13 /f5/metamusic/protected/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#14 /f5/metamusic/protected/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch()
#15 /f5/metamusic/protected/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#16 /f5/metamusic/public/index.php(26): Zend_Application->run()
#17 {main}  

I don’t understand why it seems to be attempting to include a library file from the application path. Also, the server has open_basedir() restriction in effect, so I I have to use a server symbol – $_SERVER['NFSN_SITE_ROOT'] to access the root directory instead of /.

So, the folder hierarchy looks like this:

/public/index.php <- the site entry point
/protected/application <- the site source
/protected/library <- the Zend library directory from zf-minimal.tar.gz

This is my index.php:

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', ($_SERVER['NFSN_SITE_ROOT'] . 'protected/application'));

// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));

// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    ($_SERVER['NFSN_SITE_ROOT'] . 'protected/library'),
    get_include_path(),
)));

/** Zend_Application */
require_once 'Zend/Application.php';

// Create application, bootstrap, and run
$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()
            ->run();

And this is my config.ini:

[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0
resources.frontController.baseUrl = "/"
phpSettings.date.timezone = "Europe/London"

resources.db.adapter = PDO_MYSQL
resources.db.params.charset = "utf8"
resources.db.params.host = localhost
resources.db.params.username = ---
resources.db.params.password = ---
resources.db.params.dbname = ---

acl.roles.guest = null
acl.roles.member = guest
acl.roles.admin = member

resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
[staging : production]

[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1

[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:40:19+00:00Added an answer on May 24, 2026 at 6:40 am

    Shouldn’t it be calling headTitle with a capital ‘T’?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.