New stories and topics problem
Philarmon 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: New stories and topics problem
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
New stories and topics problem
Did it work?
Did it work?
1 Re: New stories and topics problem
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
New stories and topics problem
The user cache files should usual update hourly.
Here a test script:
This script will try to remove all user cache files from the directory. Let me know if this work. You need to copy it to your Storyteller root directory.
The user cache files should usual update hourly.
Here a test script:
<?php
require ("core.php");
$directory = GetDir("cache/pm");
for ($file = 1 ; $file < count($directory) ; $file++)
{
if (preg_match("/user/i",$directory[$file]))
{
echo "Removing ... ".$directory[$file];
if (unlink("cache/pm/".$directory[$file]))
{
echo " ok<br />";
}
else
{
echo " fail!<br />";
}
}
}
?>
This script will try to remove all user cache files from the directory. Let me know if this work. You need to copy it to your Storyteller root directory.
1 Re: New stories and topics problem
Philarmon
OP
0
From: -
From: -
New stories and topics problem
No, all permissions are set correct. I have the files for each user in the pm directory (user-* and userlast-*) but they are not being updated when i login, so i always have the date/time of the first login there.
No, all permissions are set correct. I have the files for each user in the pm directory (user-* and userlast-*) but they are not being updated when i login, so i always have the date/time of the first login there.
1 Re: New stories and topics problem
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
New stories and topics problem
Look like a permission problem. Please try to chmod the /cache/pm directory and the files inside to 777.
Look like a permission problem. Please try to chmod the /cache/pm directory and the files inside to 777.
Hi !
Unfortunately, i have another strange problem:
Once i log in, i am always getting ALL stories and forum topics as new stories in the user header - it seems that the system don't remember my last login time or something. Any idea what could the problem be ?
Thank you !