[solved] PlaySMS not writting in Log

Hello Anton. I’m new in PlaySMS and currently I’m using the 1.0 version. I’m trying to find why PlaySMS is not writing anything in the log. I checked the /etc/playsmsd.conf file and the PLAYSMS_LOG variable is pointing to /var/log/playsms. The /var/log/playsms directory is property of the ‘www-data’ user like you said in the installing instructions. Any idea?

I already fixed it. I just had to correct the variable that manage the log’s path inside config.php and restart the apache service.

Before:

// logs directories
$core_config[‘apps_path’][‘logs’] = ‘#PATHLOG#’;

After:

// logs directories
$core_config[‘apps_path’][‘logs’] = ‘/var/log/playsms’;