|
|
|
|
|
|
|
|
|
Re: Make topic appear at top of topic listing... [message #186578 is a reply to message #186577] |
Fri, 03 October 2014 13:56   |
 |
cpreston
 Messages: 160 Registered: June 2012 Location: Oceanside
Karma: 6
|
Senior Member |
add to buddy list ignore all messages by this user
|
|
I also upgraded to 3.0.6RC2 and it doesn't happen for me there, either. I'm wondering if there's any snafu where any of your files are different than the core files. If you're running your forum on a Unix variant (e.g. Linux), you can try the procedure below. If you're not, well, I don't know what to say. 
1. Unzip 3.0.6RC2 into a directory right next to your forum's directory (e.g. your forum is in ./fudforum. unzip this into ./otherforum)
2. Create a script called check.sh and put in it the contents below, changing fudforum to the name of the directory where your forum is:
DIR=fudforum
find . -type f -name "*.php" -print |sed 's/\.\///' | while read i
do
diff $i ../$DIR/$i 2>&1 |sed "s|^|$i:|"
done
find . -type f -name "*.inc" -print |sed 's/\.\//' |while read i
do
diff $i ../$DIR/$i 2>&1 |sed "s|^|$i:|"
done
find . -type f -name "*.js" -print |sed 's/\.\//' |while read i
do
diff $i ../$DIR/$i 2>&1 |sed "s|^|$i:|"
done
Run the script. Does it find any differences between the stock code and your code?
The only other thing I've seen Frank suggest in weird times like this is to run the database consistency checker.
[Updated on: Fri, 03 October 2014 13:57] Report message to a moderator
|
|
|
|
|
|