Issue with phpNuke 7.9 and Gallery 1.5.1 when using Big Applet to upload.

gerdawg

Joined: 2005-12-05
Posts: 3
Posted: Mon, 2005-12-05 00:36

Hi guys, i'm having an issue after upgrading to phpNuke 7.9 when trying to use the Big Applet form to upload images to the server.

The error message is as follows:
---------------------------------------------------------------------------------------------------
Error: Server contacted, but Gallery not found at this URL ( http://www.clanxgi.net/modules.php?op=modload&name=gallery&file=index&include=gallery_remote2.php
---------------------------------------------------------------------------------------------------

This error message is new since upgrading to phpNuke 7.9 in all previous versions it worked without any issues. The error message happens right as the Big Applet begins to load (but not even upload) on the users screen or when the regular Applet tries to upload any file at all. (Small under 2MB as per PHP Default Upload Settings)

Here is what I have tried so far to diagnose this issue:
1)Used Standard Applet to upload a picture into my gallery - Results = Same Error after trying to upload.
2)Tried using the Applet outside of phpNuke 7.9 by linking directly to the module - Results = No Issues

The issue is definitly in relationship to phpNuke 7.9 somehow as Gallery works well as a standalone module. I am at a loss on how to fix this at this point in time. If anyone would be able to help on the issue, I would appreciate the assist.

Here is the Information Form as Requested:
Gallery URL (optional but very useful):http://www.clanxgi.net/modules/gallery
Gallery version:1.5.1
Apache version:Server version: Apache/2.0.52 - Server built: Sep 6 2005 10:56:49
PHP version (don't just say PHP 4, please):PHP v4.3.9
Graphics Toolkit:ImageMagick
Operating system:CentOS 4.1
Web browser/version (if applicable): IE 6 - version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519

 
gerdawg

Joined: 2005-12-05
Posts: 3
Posted: Mon, 2005-12-05 07:02

I just Read The-Readme file for phpNuke-7.9 and my thoughts are that this has something Major to do with the reason Gallery is not working.

Not sure why exactly phpNuke decided to change EVERY important file out there. But my feelings are this is a great reason for the error messages that I am reciving above.

/************************************************************************/
/* PHP-Nuke Patched -- 2005 chatserv */
/* Nuke Patched DEV Team -- Evaders99 & Quake */
/* http://www.nukefixes.com -- http://www.nukeresources.com */
/************************************************************************/

Important notes relating to Nuke Patched 3.1:

1- If you want right side blocks to appear in third party add-ons change:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
In Themes:
if ($index == 1) {
to:
if (defined('INDEX_FILE')) {

2- Additional changes for third party add-ons:
if ($mainfile == 1) {
should be changed to:
if (defined('NUKE_FILE')) {

if ($module == 1) {
should be changed to:
if (defined('MODULE_FILE')) {

if ($footer == 1) {
should be changed to:
if (defined('NUKE_FOOTER')) {

if ($header == 1) {
should be changed to:
if (defined('NUKE_HEADER')) {