1
maxpt
Critical Bugs in 2.0.14
  • 2006/7/12 22:14

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


Critical Bugs in 2.0.14


Quote:
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 78

Warning: ob_start(): output handler 'ob_gzhandler'
cannot be used after 'URL-Rewriter' in file
/include/cp_functions.php line 33


the page conf of users dont show..


other error
Quote:

Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 78
Notice: Only variables should be assigned by reference
in file /class/xoopslists.php line 200
Notice: Only variables should be assigned by reference
in file /kernel/module.php line 542
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 155
Notice: Only variables should be assigned by reference
in file /kernel/tplset.php line 193
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 136
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 174
Warning: ob_start(): output handler 'ob_gzhandler'
cannot be used after 'URL-Rewriter' in file
/include/cp_functions.php line 33

Quote:

Notice: Only variables should be assigned by reference
in file /modules/system/admin/preferences/main.php line 50
Warning: ob_start(): output handler 'ob_gzhandler'
cannot be used after 'URL-Rewriter' in file
/include/cp_functions.php line 33


bug's or that the problem?
Marco Sousa
https://www.gaap.dev

2
maxpt
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:26

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


more errors

Quote:
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 78
Notice: Only variables should be assigned by reference in file /class/xoopslists.php line 200
Notice: Only variables should be assigned by reference in file /kernel/module.php line 542
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 155
Notice: Only variables should be assigned by reference in file /kernel/tplset.php line 193
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 136
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 94
Notice: Only variables should be assigned by reference in file /modules/system/admin/preferences/main.php line 174
Warning: ob_start(): output handler 'ob_gzhandler' cannot be used after 'URL-Rewriter' in file /include/cp_functions.php line 33


Quote:
Notice: Undefined variable: conf_ids in file /modules/system/admin/preferences/main.php line 338
Marco Sousa
https://www.gaap.dev

3
maxpt
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:28

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


PHP version 4.4.2
MySQL version 4.1.19-standard
Marco Sousa
https://www.gaap.dev

4
davidl2
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:30

  • davidl2

  • XOOPS is my life!

  • Posts: 4843

  • Since: 2003/5/26


Can you use the bug-reporting feature on the sourceforge site to report this?

Thanks

5
McDonald
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:31

  • McDonald

  • Home away from home

  • Posts: 1072

  • Since: 2005/8/15


Where do you see errors?
I see notices only.
Notices are not errors, and if you switch off the PHP debugger they're gone.

Please use the search option in the right top corner and use the powers of this forum.
These 2 will lead you to all your answers.
Also check out the XOOPS FAQ.

6
maxpt
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:48

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


I can't register new users....

Quote:
$xoopsConfigUser =& $config_handler->getConfigsByCat(XOOPS_CONF_USER);

if (empty($xoopsConfigUser['allow_register'])) {
redirect_header('index.php', 6, _US_NOREGISTER);
exit();
}

and the allow_register are set to 1


for now I change the register.php (to users can register)
Quote:
if (empty($xoopsConfigUser['allow_register'])) {
//redirect_header('index.php', 6, _US_NOREGISTER);
//exit();
}
Marco Sousa
https://www.gaap.dev

7
maxpt
Re: Critical Bugs in 2.0.14
  • 2006/7/12 22:50

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


Quote:

McDonald wrote:
Where do you see errors?
I see notices only.
Notices are not errors, and if you switch off the PHP debugger they're gone.

Please use the search option in the right top corner and use the powers of this forum.
These 2 will lead you to all your answers.
Also check out the XOOPS FAQ.


in this cause the notices are errors, because de problem are with

var= & ....

and if are some problem, XOOPS will run anormaly... because that var are with wrong value..

and

Warning: ob_start(): output handler 'ob_gzhandler' cannot be used after 'URL-Rewriter' in file /include/cp_functions.php line 33
Marco Sousa
https://www.gaap.dev

8
leostotch
Re: Critical Bugs in 2.0.14
  • 2006/7/12 23:12

  • leostotch

  • Just popping in

  • Posts: 76

  • Since: 2006/4/1 1


Quote:
Warning: ob_start(): output handler 'ob_gzhandler'
cannot be used after 'URL-Rewriter' in file
/include/cp_functions.php line 33


You must be using some kind of URL rewriting hack that cannot be used with gzip compression.
Maybe you didn't see it before because gzip compression was broken in other versions and was always disabled, whatever you had specified in the admin.
Go to preferences/main and disable gzip, that will fix this.

(And notices are notices, not errors...)

9
maxpt
Re: Critical Bugs in 2.0.14
  • 2006/7/12 23:18

  • maxpt

  • Not too shy to talk

  • Posts: 109

  • Since: 2005/9/4 1


erm... you are right.

I disable the gzip, and now are fixed.. strange.. i am using the 2.0.14 with no hack.. and with 2.2.4 dont show nothing notices, warnings.
Marco Sousa
https://www.gaap.dev

10
leostotch
Re: Critical Bugs in 2.0.14
  • 2006/7/12 23:25

  • leostotch

  • Just popping in

  • Posts: 76

  • Since: 2006/4/1 1


Quote:
erm... you are right.
I disable the gzip, and now are fixed.. strange.. i am using the 2.0.14 with no hack.. and with 2.2.4 dont show nothing notices, warnings.


Well it must be in a module then. And for the notices: maybe they were here before, you just didnt see them: in 2.0.13 (and 2.2.x also I believe) debug mode was only working in the main pages. In 2.0.14 it also works for the admin pages.

Login

Who's Online

229 user(s) are online (149 user(s) are browsing Support Forums)


Members: 0


Guests: 229


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits