Get multiple depracation errors in jumper on windows

16 views
Skip to first unread message

Santosh Shanmukh

unread,
May 31, 2010, 12:18:47 PM5/31/10
to Jumper 2.0 Developers Group
I have tried setting up Jumper on my Windows XP system.

The software versions I used:
PHP for windows: PHP 5.3.2 (cli) (built: Mar 3 2010 20:36:54)
MySql: Ver 14.14 Distrib 5.1.47, for Win32 (ia32)
Apache Web Server: 2.2.15
Jumper: 2.0.1.7

I completed the configuration and the database/schema creation and
data loading.

I get the following errors on the browser when I hit the main URL:
http://localhost/jmp/index.php
or the admin URL: http://localhost/jmp/admin/index.php

Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 896
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 902
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 1218
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 2047
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 3141
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 3719
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 3796
Deprecated: Assigning the return value of new by reference is
deprecated in C:\Program Files\Apache Software Foundation
\Apache2.2\htdocs\jmp\admin\lib\adodb\adodb.inc.php on line 3816

Any link I navigate to, or if I login, I keep getting the same errors.
Also, I am not able to see the settings tab to configure settings
after I login.
My guess is that the top frame of the tool is also not getting loaded.

Please let me know if I am missing anything.

----------- Heres the config file info (config.inc.php) ---------

<?php
/* GENERAL */
$conf['db_host'] = "localhost";
$conf['db_base'] = "jumper";
$conf['db_user'] = "jumper";
$conf['db_pass'] = "jumper";
$conf['db_driver'] = "mysql"; // no other were tested
$conf['tbl_pref'] = 's_';

$conf['session_name'] = 'gdfrtsvfdr'; // session name for admin
area
$conf['lang'] = 'en'; // see admin/lang/ - for
available languages
// or check on
http://sourceforge.net/projects/jumper

/* PATHS */
// if you need write this manually, may required on windows or for
cron jobs
//$_SERVER['DOCUMENT_ROOT'] = 'c:/Inetpub/wwwroot';
//$_SERVER['HTTP_HOST'] = 'domain.com'

// admin path
$conf['home_dir'] = '/jmp/admin/'; // path to admin dir
without DOCUMENT_ROOT

// client path
$conf['client_home_dir'] = '/jmp/'; // path to jmp dir
without DOCUMENT_ROOT
$conf['fck_upload_dir'] = '/jmp_upload/'; // where FCK editor
place uploaded images (relative to DOCUMENT_ROOT)

// extra path
$conf['extra_home_dir'] = '/jmp_extra/';


/* OTHERS */ // some configs 1 = yes, 0 = no
$conf['debug_info'] = 0; // display $_GET, $_SESSION, $_POST
and also set displaying all errors
$conf['debug_speed'] = 0; // display page generating speed
$conf['debug_db'] = 0; // display all sent sql (adodb
format)
$conf['demo_mode'] = 0; //


$conf['app_width'] = '980'; // main box width you can use %
(in admin).
$conf['auth_check_ip'] = 0; // on every request ip will be
checked with saved one on login
$conf['auth_expired'] = 60; // time in minutes after that if
no activity authentication will be deleted (in admin)
$conf['use_https'] = 0; // not tested
$conf['limit'] = 10; // default records per page (in
admin)
$conf['limit_range'] = array(10, 20, 40); // default limit range
per page (in admin)


$conf['use_mod_rewrite'] = 0; // this force client side to use
"Search engine friendly URL"
// it should work automatically but if
does not try set it to 1


/* IN MOST CASES THERE IS NO NEED TO EDIT ANYTHING BELOW THIS LINE */
/* --------------------------------------------------------------- */

/* PATHS */
// admin path
$conf['root_dir'] = $_SERVER['DOCUMENT_ROOT'] .
$conf['home_dir'];
$conf['home_path'] = 'http://' . $_SERVER['HTTP_HOST'] .
$conf['home_dir'];

// client path
$conf['client_root_dir'] = $_SERVER['DOCUMENT_ROOT'] .
$conf['client_home_dir'];
$conf['client_home_path'] = 'http://' . $_SERVER['HTTP_HOST'] .
$conf['client_home_dir'];
$conf['site_address'] = $_SERVER['HTTP_HOST'];

// extra path
$conf['extra_root_dir'] = $_SERVER['DOCUMENT_ROOT'] .
$conf['extra_home_dir'];
$conf['php_path'] = '/usr/local/bin/php'; // probably could be
required in cron job for example


$win = (substr(PHP_OS, 0, 3) == "WIN");
$include_separator = ($win) ? ';' : ':';
$include_path = array();


/* PRODUCT INFORMATION */
$conf['product_name'] = 'Jumper Networks';
$conf['product_www'] = 'http://www.jumpernetworks.com/';
$conf['product_version'] = 'Jumper 2.0.1.7';
$conf['home_path'] = ($conf['use_https']) ? str_replace('http',
'https', $conf['home_path']) : $conf['home_path'];

// in some cases we have double slash
$conf['root_dir'] = str_replace('//', '/', $conf['root_dir']);
$conf['client_root_dir'] = str_replace('//', '/',
$conf['client_root_dir']);
$conf['extra_root_dir'] = str_replace('//', '/',
$conf['extra_root_dir']);


define('APP_ROOT_DIR', $conf['root_dir']);
define('APP_HOME_PATH', $conf['home_path']);

define('APP_CLIENT_DIR', $conf['client_root_dir']);
define('APP_CLIENT_PATH', $conf['client_home_path']);
define('APP_SITE_ADDRESS', $conf['site_address']);

define('APP_LIB_DIR', $conf['root_dir'] . 'lib/');
define('APP_MODULE_DIR', $conf['root_dir'] . 'modules/');
define('APP_TMPL_DIR', $conf['root_dir'] . 'template/');
define('APP_EMAI_TMPL_DIR', $conf['root_dir'] . 'template_email/');
define('APP_CACHE_DIR', $conf['root_dir'] . 'cache/');

define('APP_LANG', $conf['lang']);
define('APP_MSG_DIR', $conf['root_dir'] . 'lang/');
define('APP_MSG_LANG_DIR', $conf['root_dir'] . 'lang/'.
$conf['lang'].'/');

define('APP_DEMO_MODE', $conf['demo_mode']);

define('APP_EXTRA_MODULE_DIR', $conf['extra_root_dir']);



$include_path[] = ini_get('include_path');
$include_path[] = APP_LIB_DIR;
$include_path[] = APP_LIB_DIR . 'Pear';

ini_set('include_path', implode($include_separator, $include_path));
ini_set('display_errors', 1);
//ini_set('arg_separator.output', '&amp;');

if($conf['debug_info']) {
ini_set('error_reporting', E_ALL);
} else {
//ini_set('display_errors', 0);
ini_set('error_reporting', E_ALL ^ E_NOTICE);
//ini_set('error_reporting', E_ALL ^ (E_NOTICE | E_WARNING));
//ini_set('error_reporting', E_ALL ^ (E_ERROR | E_WARNING | E_PARSE |
E_NOTICE));
}
?>

--------------------------------------------

Thanks,
Santosh.
Message has been deleted

spe...@jumpernetworks.com

unread,
Jun 1, 2010, 1:46:11 PM6/1/10
to Jumper 2.0 Developers Group, Santosh Shanmukh
Santosh,
 
This is a new error that we have not seen before.
 
We will need to investigate the conflict with Apache in our lab.
 
Give us a few  days and we will hopefully have a quick fix.
 
Jumper Team
> --
> You received this message because you are subscribed to the Google
Groups "Jumper 2.0 Developers Group" group.
> To post to this group, send email to jump...@googlegroups.com.
> To unsubscribe from this group, send email to jumper-20
unsub...@googlegroups.com.
> For more options, visit this group at
http://groups.google.com/group/jumper-20?hl=en.
>
>


Santosh Shanmukh

unread,
Jun 7, 2010, 1:41:56 AM6/7/10
to Jumper 2.0 Developers Group
Hello,

I tried fooling around and I guess these errors could be related to
some version change of the adodb library:
<apachedir>\htdocs\jmp\admin\lib\adodb.

I backed up this folder and downloaded latest version from
http://adodb.sourceforge.net/ and the warnings went away.
Now I have a different problem. I do not see the Settings tab and I am
not able to add users and assign privileges.

I do not see instructions for configuring the same either.

Thanks
Santosh.

spe...@jumpernetworks.com

unread,
Jun 7, 2010, 9:13:04 PM6/7/10
to Jumper 2.0 Developers Group, Santosh Shanmukh
Santosh,
 
That is a known error and we truly apologize.
 
We loaded a version to Sourceforge that had a bug. We quickly fixed
this but unfortunately you may have downloaded one of those versions.
 
It is very easy to fix. Just download the latest version of Jumper
2.0.1.7 and reinstall the SQL tables. The SQL import flat file had an
error in it that did not load all of the settings and thus it does not
appear when you load it.
 
Sorry for the inconvenience.
 
Jumper Team

Santosh Shanmukh

unread,
Jun 8, 2010, 2:05:38 PM6/8/10
to Jumper 2.0 Developers Group
Thanks for letting me know. I dropped the database, and recreated the
tables and also ran some of the "patch" sqls.
I am able to see the tabbed menu with Setting etc.

Now, the Knowledge Base subtab under Knowledge Base main tab is not
working:
The URL is:
http://localhost/jmp/admin/index.php?module=Knowledgebase&page=Knowledgebase
The error I get is:

"Warning: require_once(C:/Apache/Apache2.2/htdocs/jmp/admin/modules/
Knowledgebase/PageController.php): failed to open stream: No such file
or directory in C:\Apache\Apache2.2\htdocs\jmp\admin\index.php on line
91 Fatal error: require_once(): Failed opening required 'C:/Apache/
Apache2.2/htdocs/jmp/admin/modules/Knowledgebase/
PageController.php' (include_path='.;C:\php5\pear;C:/Apache/Apache2.2/
htdocs/jmp/admin/lib/;C:/Apache/Apache2.2/htdocs/jmp/admin/lib/Pear')
in C:\Apache\Apache2.2\htdocs\jmp\admin\index.php on line 91"

The file "C:\Apache\Apache2.2\htdocs\jmp\admin\index.php on line 91
has:
require_once $controller->working_dir . 'PageController.php';

In the directory "C:\Apache\Apache2.2\htdocs\jmp\admin",
PageController.php file does not exist.


Thanks
Santosh.
On Jun 8, 6:13 am, spe...@jumpernetworks.com wrote:
> Santosh,
>  
> That is a known error and we truly apologize.
>  
> We loaded a version to Sourceforge that had a bug. We quickly fixed
> this but unfortunately you may have downloaded one of those versions.
>  
> It is very easy to fix. Just download the latest version of Jumper
> 2.0.1.7 and reinstall the SQL tables. The SQL import flat file had an
> error in it that did not load all of the settings and thus it does not
> appear when you load it.
>  
> Sorry for the inconvenience.
>  
> Jumper Team
>  On Sun, 6 Jun 2010 22:41:56 -0700 (PDT), Santosh Shanmukh  wrote:
>
> Hello,
>   >
>   > I tried fooling around and I guess these errors could be related to
>   > some version change of the adodb library:
>   > <apachedir>\htdocs\jmp\admin\lib\adodb.
>   >
>   > I backed up this folder and downloaded latest version from
>   >http://adodb.sourceforge.net/and the warnings went away.

spe...@jumpernetworks.com

unread,
Jun 9, 2010, 3:01:55 PM6/9/10
to Jumper 2.0 Developers Group, Santosh Shanmukh
This is a new bug.
 
Let me install Jumper in Apache 2.2 and see if I can recreate it.
 
Thanks for finding this and letting us know.
 
Jumper Team

beldeamon

unread,
Aug 2, 2010, 8:52:25 PM8/2/10
to Jumper 2.0 Developers Group
I was trying to find if there is any update on this one ?? Seems a
While now and I am also experiencing the same on php 5.3

I am new to the group and not aware how it hooks into the forge so
apologize if this message is missposted.

Regards
beldeamon

sperry

unread,
Aug 5, 2010, 3:18:51 PM8/5/10
to Jumper 2.0 Developers Group
There was a new published version that provided a fix for these
errors.

Download Jumper 2.0.1.7 and replace the admin and client folders in
the jmp root.

This should work.

Let us know if you are still having issues.

HumanTex

unread,
Aug 9, 2010, 10:14:29 PM8/9/10
to Jumper 2.0 Developers Group
I just DL'd and installed 2.0.1.7 and unfortunately this same
knowledgebase tab error shows on my local install as well.

I'm using xampp 1.7.3 w/ php 5.3.1, Apache 2.2, mySql 5.1.41

I did notice that the URL linked to the tab doesn't follow the same
naming as the others... it shows as '...page=Knowledgebase', where the
others use '...page=jmp_XXXXX'. Changing the URL to use
'jmp_knowledgebase' instead, produces the same error, but the page
doesn't show the upper header and tabs portion of the page. Thought it
might just be an incorrect URL, but no joy with anything I tried.
> > beldeamon- Hide quoted text -
>
> - Show quoted text -

HumanTex

unread,
Aug 9, 2010, 10:43:06 PM8/9/10
to Jumper 2.0 Developers Group
On a hunch I tried it with 'page=knowledgebase' and it gives a page
with only the lower tabs... but at least there's a way to get the
Knowledgebase tab to display - just incorrectly. Is there only a
listing of recent tags and comments that are shown on this tab - or -
should there be editable items that we'd need to get at?
> > - Show quoted text -- Hide quoted text -

HumanTex

unread,
Aug 11, 2010, 11:06:52 PM8/11/10
to Jumper 2.0 Developers Group
It seems that the link works correctly in FireFox, Opera, and
Safari... but NOT in IE8

spe...@jumpernetworks.com

unread,
Aug 13, 2010, 9:18:07 AM8/13/10
to jump...@googlegroups.com
We will send our thanks to Microsoft...

This will take some development work to fix.

Thanks for all your efforts in tracking down this bug! Much appreciated.
--
You received this message because you are subscribed to the Google Groups "Jumper 2.0 Developers Group" group.
To post to this group, send email to jump...@googlegroups.com.
To unsubscribe from this group, send email to jumper-20+...@googlegroups.com.
Reply all
Reply to author
Forward
0 new messages