PHP Nuke Module Treasury V1.1

hadora

New Member
Messages
1
Reaction score
0
Points
0
Hi!

I am using PHP Nuke v.8.0 I've got a problem with PHP Nuke Module Treasury V1.1 to configure it. When I click on "Click here to test IPN" in the config menu of the module, a new page opens with this problem. Can anyone tell me what the problem is?

I did configure my paypal account.


Warning: include(../config.php) [function.include]: failed to open stream: No such file or directory in /home/hadora/public_html/modules/Donations/ipn/ipnppd.php on line 25

Warning: include() [function.include]: Failed opening '../config.php' for inclusion (include_path='.:/x10hosting/php2/pear/PEAR') in /home/hadora/public_html/modules/Donations/ipn/ipnppd.php on line 25
Debug mode activated

PHP-Nuke Treasury mod

PayPal Instant Payment Notification script

See below for status:
----------------------------------------------------------------

Warning: mysql_pconnect() [function.mysql-pconnect]: Access denied for user 'hadora'@'localhost' (using password: NO) in /home/hadora/public_html/modules/Donations/ipn/ipnppd.php on line 45
Access denied for user 'hadora'@'localhost' (using password: NO)
 

Salvatos

Member
Prime Account
Messages
562
Reaction score
1
Points
18
I'm assuming you already checked if the include path (../config.php) is correct, so we're gonna try something. It was suggested to me by someone here a long time ago when I couldn't get includes to work, it could be the same problem here.

Create a php.ini file and put it in the same folder (I think it would also work in the main root folder).
In the file, write:
Code:
[php]

; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On

; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = On
 
Last edited:
Top