Hello,
I try to install cmsms 1.8.1 on Wamp 2.0i; Wamp is installed with Apache 2.2.11 and 2.2.14. PHP is installed with 5.3.0 and 5.3.1. MySql with version 5.1.36 and 5.1.41. The highest version of each module is activated.
I've checked the forum, and followed the recomendations to change the php.ini but below the wamp root there are four php.ini files, below the php 5.3.0 and php 5.3.1 folder and below both apache folders. I've actually changed all of them (error_reporting = E_ALL & ~E_DEPRECATED) but the step 2 of the installation shows always the same error.
Would anybody please tell me which file on which position/folder shall be modified?
The tips:
error_reporting set directly in PHP
If none of these options work, you may have luck with this line in your config.php:
error_reporting(E_ALL);
php.ini settings for PHP 5.3.x
The recommended value for error_reporting in your php.ini is:
error_reporting = E_ALL & ~E_DEPRECATED
.htaccess settings for PHP 5.3.x
The error reporting value in a .htaccess file has to be specified as an integer.
php_value error_reporting 22527
are maybe ok, but not easy to follow. I've no .htaccess file within the folders. Were is it, in which folder must it created? Addtionally, which config.php file must be changed, there are tree in different foldes.
A little bit more detailed information would be very fine, because i'm still do my first steps with cmsms and wamp.
Thanks in advace.
CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
It should be on "php.ini" but i think there are 2 "php.ini" in Wamp.
Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
Be sure to restart all services after php.ini is changed.
Another tip: Install PHP 5.2.12 for wamp, run it and install CMSms.
After Installation switch back to PHP 5.3
In the root dir of your CMSms installation.akm wrote:
I've no .htaccess file within the folders. Were is it, in which folder must it created?
The one you created by yourself to install CMSms.akm wrote:
Addtionally, which config.php file must be changed
Another tip: Install PHP 5.2.12 for wamp, run it and install CMSms.
After Installation switch back to PHP 5.3

Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
In config.php
error_reporting(0);
ini_set('display_error',0);
error_reporting(0);
ini_set('display_error',0);
Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
or if you add
error_reporting = E_ALL & ~E_DEPRECATED
to the active php.ini ()wamp have many of them - one for each php version)
it should be working after a service restart.
error_reporting = E_ALL & ~E_DEPRECATED
to the active php.ini ()wamp have many of them - one for each php version)
it should be working after a service restart.
ReneH 
A search will save you hours waiting for an answer!

A search will save you hours waiting for an answer!

Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
Hello Folks,
thanks to all for your support. I've checked all of your hints and tried it, but finally I found the problem. I ran in a stuipd trap....
Within the right php.ini there is a chapter on top called quick reference. Below this
I found the lines
; error_reporting
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
and added the following line, like you said
error_reporting = E_ALL & ~E_DEPRECATED
But many many lines below there is a entry
error_reporting = E_ALL

It means I set the right value but it was redefined later and nothing happens.
Shit happens each day again....
But thanks to all again.
AKM
thanks to all for your support. I've checked all of your hints and tried it, but finally I found the problem. I ran in a stuipd trap....
Within the right php.ini there is a chapter on top called quick reference. Below this
I found the lines
; error_reporting
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
and added the following line, like you said
error_reporting = E_ALL & ~E_DEPRECATED
But many many lines below there is a entry
error_reporting = E_ALL

It means I set the right value but it was redefined later and nothing happens.
Shit happens each day again....
But thanks to all again.
AKM
Re: CMSMS 1.81 - Wamp2.0i // E_DEPRECATED - Error message
AKM: add [SOLVED] to the subject of the first post so everybody would now there is a solution.