
thank you for the help
Moderator: crythias
Sorry i am a newbyWolfgangf wrote:probably your cron-jobs are not running - did you check this already?
Code: Select all
net start cron
Code: Select all
perl.exe <install-root>otrs\bin\otrs.Cron4Win32.pl
Code: Select all
<install-root>var\cron\
Juste found out that averytime I boot the server, the files crontab.txt contant is errase.MichaelR wrote:Yeah, mine is running on x64 Windows 7, never had to use otrs.Cron4Win32.pl
I installed it in the default location, and the service should start automatically at boot, if not, change it to that!
Code: Select all
next CRONFILE if ( !-f $CronData );
Code: Select all
next CRONFILE if ( !-f "$Directory/$CronData" );
I can't see that line anywhere, must have been already fixed in 3.0.7Mike_B wrote:Yes, that is because of said issue with the bin/otrs.Cron4Win32.pl file -- I'm sorry, it was me who made the error here..
If you would open the file, change line 48 from
toCode: Select all
next CRONFILE if ( !-f $CronData );
then you will be good.Code: Select all
next CRONFILE if ( !-f "$Directory/$CronData" );
No, actually, it's working in 3.0.7, it's broken in 3.0.8 and in upcoming 3.0.9 it will be working again.MichaelR wrote: I can't see that line anywhere, must have been already fixed in 3.0.7