- Posts: 10
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
Question View counter not counting.NOT SOLVED
16 years 6 months ago - 16 years 6 months ago #31764
by JTM369
View counter not counting.NOT SOLVED was created by JTM369
Hi,
I had a thread here:
www.kunena.com/forum/139-solved-or-prior...r-not-counting#28269
I, unfortunately, did not have the internet for quite a while as i moved house so was not able to try your suggestion until now. It still does not work... i did not get any errors for the 2nd suggestion but the view counter still would not count guest page views for posts created by guests.
Have you got any other ideas that may solve the problem?
If you need any info from me, just ask
I'm all set up on the internet now so I will keep my eye on this forum ready for a response!.
Thanks
I had a thread here:
www.kunena.com/forum/139-solved-or-prior...r-not-counting#28269
I, unfortunately, did not have the internet for quite a while as i moved house so was not able to try your suggestion until now. It still does not work... i did not get any errors for the 2nd suggestion but the view counter still would not count guest page views for posts created by guests.
Have you got any other ideas that may solve the problem?
If you need any info from me, just ask
I'm all set up on the internet now so I will keep my eye on this forum ready for a response!.
Thanks
Last edit: 16 years 6 months ago by JTM369.
Please Log in or Create an account to join the conversation.
16 years 6 months ago #31798
by Matias
Replied by Matias on topic Re: View counter not counting.NOT SOLVED
One reason may be that you do not have "hold" field in fb_messages table or there are items with value NULL. Can you check if this is true?
Please Log in or Create an account to join the conversation.
16 years 6 months ago #31807
by JTM369
Replied by JTM369 on topic Re: View counter not counting.NOT SOLVED
Sorry, I do not know what you mean... can you explain what I need to do?
Thanks again
Thanks again
Please Log in or Create an account to join the conversation.
16 years 6 months ago #31808
by Matias
Replied by Matias on topic Re: View counter not counting.NOT SOLVED
OK, here are so many users with different skills that I sometimes like to make assumptions. 
Go to phpMyAdmin or similar tool for MySQL and look at your database. Find jos_fb_messages table and go to see the fields from it.
Actually I wrote wrong above: you should look for moved and if it exists (it should), try to find items where moved=null
SELECT * FROM jos_fb_messages WHERE moved=null
Are there any? If there are, they should be converted to 0:
UPDATE jos_fb_messages SET moved=0 WHERE moved=null
Go to phpMyAdmin or similar tool for MySQL and look at your database. Find jos_fb_messages table and go to see the fields from it.
Actually I wrote wrong above: you should look for moved and if it exists (it should), try to find items where moved=null
SELECT * FROM jos_fb_messages WHERE moved=null
Are there any? If there are, they should be converted to 0:
UPDATE jos_fb_messages SET moved=0 WHERE moved=null
Please Log in or Create an account to join the conversation.
16 years 6 months ago #31812
by JTM369
Replied by JTM369 on topic Re: View counter not counting.NOT SOLVED
Don't think i have any set to 'null'.
MySQL returned an empty result set (i.e. zero rows). (Query took 0.0014 sec)
SQL query:
SELECT *
FROM jos_fb_messages
WHERE moved = NULL
LIMIT 0 , 30
Think i done it right?
MySQL returned an empty result set (i.e. zero rows). (Query took 0.0014 sec)
SQL query:
SELECT *
FROM jos_fb_messages
WHERE moved = NULL
LIMIT 0 , 30
Think i done it right?
Please Log in or Create an account to join the conversation.
16 years 6 months ago #31814
by Matias
Replied by Matias on topic Re: View counter not counting.NOT SOLVED
Yes, it was ok.
What happens when you post a new message?
What happens when you post a new message?
Please Log in or Create an account to join the conversation.
Time to create page: 0.239 seconds