PDA

View Full Version : need help


CPTA
07-20-2011, 09:05 PM
I am getting this error


Warning: include(/phpBB3Auth/controller.php) [function.include]: failed to open stream: No such file or directory in [path]/login.php(111) : eval()'d code on line 1

Warning: include() [function.include]: Failed opening '/phpBB3Auth/controller.php' for inclusion (include_path='.:/usr/local/php5/lib/php') in [path]/login.php(111) : eval()'d code on line 1
vBulletin Message


In that plugin i am adding, this is how it looks like.

<![CDATA[include('/phpBB3Auth/controller.php');]]> How would i set the location of controller.php if its located in public_html/community/phpBB3Auth/controller.php.????


<?xml version="1.0" encoding="ISO-8859-1"?>

<plugins>
<plugin active="1" executionorder="1" product="vbulletin">
<title>phpBB3 Authentication</title>
<hookname>phpBB3_login_hook</hookname>
<phpcode><![CDATA[include('/phpBB3Auth/controller.php');]]></phpcode>
</plugin>
</plugins>

kh99
07-20-2011, 09:21 PM
The code for the plugin is:

include('/phpBB3Auth/controller.php');

So it's looking on your server for /phpBB3Auth/controller.php and not finding it.