Page 1 of 1

Unable to access the pages section

Posted: Tue Jan 26, 2010 12:55 pm
by sing2trees
Hi there,
When logging in to CMSMS yesterday, and clicking on the pages tab - I now get the following error message repeated right down the page:
Notice: Only variables should be assigned by reference in D:\inetpub\vhosts\sitename\httpdocs\cms\lib\xajax\xajax_core\xajaxPluginManager.inc.php on line 286
followed by
Notice: Only variables should be assigned by reference in D:\inetpub\vhosts\sitename\httpdocs\cms\lib\xajax\xajax_core\xajaxPluginManager.inc.php on line 286
Output has already been sent to the browser at D:\inetpub\vhosts\sitename\httpdocs\cms\lib\xajax\xajax_core\xajaxPluginManager.inc.php:286. Please make sure the command $xajax->processRequest() is placed before this.
at the very end.

Nothing has been changed to the structure of the site and the web host company says its nothing their end. Does anyone know how this can be fixed?

Thanks in advance!!

Re: Unable to access the pages section

Posted: Wed Jan 27, 2010 8:17 am
by sing2trees
Sorry!

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

Cms Version: 1.6.6

Installed Modules:

CMSMailer: 1.73.14
FileManager: 1.0.1
MenuManager: 1.6.2
ModuleManager: 1.3.1
News: 2.10.3
nuSOAP: 1.0.1
Printing: 1.0.4
Search: 1.6.1
ThemeManager: 1.1.1
TinyMCE: 2.5.5
Gallery: 1.0.3
Album: 0.9.3
FormBuilder: 0.5.12


Config Information:

php_memory_limit:
process_whole_template: false
max_upload_size: 2000000
default_upload_permission: 664
assume_mod_rewrite: false
page_extension:
internal_pretty_urls: false
use_hierarchy: true


Php Information:

phpversion: 4.4.7
md5_function: On (True)
gd_version: 2
tempnam_function: On (True)
magic_quotes_runtime: Off (False)
memory_limit: 8M
max_execution_time: 30
safe_mode: Off (False)
session_save_path: C:\WINDOWS\Temp (0777)
session.use_cookies: On (True)


Server Information:

Server Api: cgi-fcgi
Server Db Type: MySQL (mysql)
Server Db Version: 5.0.45


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

Re: Unable to access the pages section

Posted: Wed Jan 27, 2010 1:53 pm
by cyberman
sing2trees wrote:
Notice: Only variables should be assigned by reference in D:\inetpub\vhosts\sitename\httpdocs\cms\lib\xajax\xajax_core\xajaxPluginManager.inc.php on line 286
Output has already been sent to the browser at D:\inetpub\vhosts\sitename\httpdocs\cms\lib\xajax\xajax_core\xajaxPluginManager.inc.php:286. Please make sure the command $xajax->processRequest() is placed before this.
at the very end.

Nothing has been changed to the structure of the site and the web host company says its nothing their end. Does anyone know how this can be fixed?
It seams to be some coding trouble inside xajax ::) - and it is "only" a notice.

You can try to deactivate such error reports with

Code: Select all

error_reporting(0);
on the top of config.php ...

Re: Unable to access the pages section

Posted: Wed Jan 27, 2010 2:00 pm
by sing2trees
Hey - thanks for the tip. Have done this, but I now get this error message:

Output has already been sent to the browser at D:\inetpub\vhosts\sitename\httpdocs\cms\config.php:4. Please make sure the command $xajax->processRequest() is placed before this.

Re: Unable to access the pages section

Posted: Wed Jan 27, 2010 9:24 pm
by cyberman
You can try to insert

Code: Select all

ini_set("display_errors", 0); 
at the top of include.php or this

Code: Select all

php_value display_errors 0
into your htaccess file.

But I've seen you have a php memory limit with 8 MB and a lot installed modules.

Try to deinstall unused modules. If it is not enough there's the parameter in config.php you can specify a php memory value (if your hoster allow this).

Re: Unable to access the pages section

Posted: Thu Jan 28, 2010 1:02 pm
by mike-r
got the bug too, and found some solution for that.
I have set the PHP-Version to 5, and it works here.