Jump to content

EX0 Something went wrong. Please try again.


Go to solution Solved by Miss_B,

Recommended Posts

Hello, in the support module, I am accessing the "phpinfo" option and I get this error.

Error: Call to undefined function IPS\core\modules\admin\support\phpinfo() (0)
#0 /home/XXXXX/public_html/foro/system/Dispatcher/Controller.php(118): IPS\core\modules\admin\support\_phpinfo->manage()
#1 /home/XXXXX/public_html/foro/applications/core/modules/admin/support/phpinfo.php(38): IPS\Dispatcher\_Controller->execute()
#2 /home/XXXXX/public_html/foro/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\admin\support\_phpinfo->execute()
#3 /home/XXXXX/public_html/foro/paneladm/index.php(13): IPS\_Dispatcher->run()
#4 {main}

 

 

Link to comment
Share on other sites

This is the content of the file, I don't know if it is corrupt or has something inconsistent.

phpinfo.php ( PHP script, ASCII text )
<?php
/**
 * @brief		Display phpinfo
 * @author		<a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright	(c) Invision Power Services, Inc.
 * @license		https://www.invisioncommunity.com/legal/standards/
 * @package		Invision Community
 * @since		4 December 2020
 */

namespace IPS\core\modules\admin\support;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !\defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
	header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
	exit;
}

/**
 * Display phpinfo
 */
class _phpinfo extends \IPS\Dispatcher\Controller
{
	/**
	 * @brief	Has been CSRF-protected
	 */
	public static $csrfProtected = TRUE;
	
	/**
	 * Execute
	 *
	 * @return	void
	 */
	public function execute()
	{
		\IPS\Dispatcher::i()->checkAcpPermission( 'get_support' );
		parent::execute();
	}

	/**
	 * Support Wizard
	 *
	 * @return	void
	 */
	protected function manage()
	{
		phpinfo();
		exit;
	}
}

 

Link to comment
Share on other sites

  • Solution

Are you on a shared hosting plan or do you manage your own Vps/Dedicated box?

If the former, then there is nothing that you can do about it. Some hostsmay choose to disable the PHP function phpinfo() for security reasons, because it displays information which may be used to compromise the server that your site is running on. In that case you should contact your host and ask them if they can enable it.

If the later, at the php.ini file find the following line: (it's located athe disable_functions directive)

disable_functions = phpinfo 

and change it to disable_functions = and save the changes. That should enable phpinfo. Hope it helps.

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...