Share and enjoy
Share and enjoy
4/14/2012 - New 'Contact-us' page.
Posted by JournalHome.com
The other day some spammer sent me an an email complaining that his/her account was blocked and that there was no way of 'appealing' the block, in fact he complained that there was no contact page at all.
I have to admit, I am embarrassed to say, never even though of it, users have been able to contact me via messaging, but this is not possible to contact us if your account is blocked, or even if you are just wanting to ask a question.
So you can now contact-us directly if you have any queries/questions and we'll get back to you as soon as possible.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
3/4/2012 - How to moderate thousands of posts in vBulletin 3.x without timeout
Posted by JournalHome.com
I manage an old vBulletin (3.6.9) board and from time to time I need to moderate some posts/threads. One of the problems I have is, as the the only moderator, I sometime have 5000 or more posts/threads to moderate.
By default, vBulletin tries to display/moderate all the threads at once, this is ridiculous, even if your server can handle +5000 queries in one script your browser certainly cannot handle it, (you would need a truck load of memory to handle it).
So the best way is to edit the vBulletin code and limit the size of the posts been returned, that way you can moderate ~500 posts/threads at a time.
Look for the file called "moderate.php", it is found in the modcp folder.
Look for the code
-
...
-
$moderated = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "moderation");
-
...
And add/replace the following limit checks to make sure it does not get out of hand.
-
...
-
$moderated = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "moderation");
-
while($moderate = $db->fetch_array($moderated))
-
{
-
if($moderate['type'] == 'thread')
-
{
-
if(count($threadids) < 250)
-
{
-
$threadids[] = $moderate['threadid'];
-
}
-
}
-
else
-
{
-
if(count($threadids) < 500)
-
{
-
$postids[] = $moderate['postid'];
-
}
-
}
-
if(count($threadids) >= 500 && count($threadids) >= 250)
-
{
-
break;
-
}
-
}
-
...
I know it would have been better to change the queries, (have 2 queries with type='thread' and limit of 250), but doing it this way makes it a little easier to explain. Once you understand what is going on maybe you can change the code yourself to use more efficient queries.
The reason why I chose 250 threads and 500 posts? because, on my server, this seemed to be the safest way to prevent timeouts.
If you have version 4.x of vBulletin, I would be quite curious to hear how it works for you. I don't have that code, so I cannot say for sure if the same issue happens, (but I would hope that they fixed it).
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
2/9/2012 - Added GeSHi - Generic Syntax Highlighter
Posted by JournalHome.com
I added a new shortcode tag using GeSHi
You can now use the shortcode [code:lang] or [code language='lang']
For example you can use the SQL language, ([code:sql])
-- -- SQL example for GeSHi -- DROP TABLE IF EXISTS foo; CREATE TABLE foo ( id INT(11) NOT NULL AUTO_INCREMENT, characters INT(11) DEFAULT '0', time_taken DOUBLE DEFAULT NULL, language_used VARCHAR(100) DEFAULT NULL, SOURCE text, time_highlighted datetime DEFAULT NULL, PRIMARY KEY (id) ) TYPE=MyISAM
There is a comprehensive list of languages available, but most of the basic languages are included.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
1/25/2012 - Comment changes
Posted by JournalHome.com
I made some minor changes when it comes to comments
- No URLs will be allowed in the title of the comment, (if allowed to have titles).
- The number of URLs in the body of the comment will now be limited, (the number will vary depending on various parameters of the poster).
Let me know if you come across any issues.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
Share and enjoy
1/24/2012 - Updated Daffi template
Posted by JournalHome.com
I finnally fixed the Daffi template, it was very outdated and, to be fair, completely broken.
It is now a bit wider and allows for most/all plugins to be entered.
Click on the image to see what it looks like.
I am still, (yes still!), working at converting some wordpress themes, this is taking a lot longer than expected, but at least the work is slowly progressing.
Let me know of you have any other templates you want me to look at.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
1/18/2012 - Supporting anti-SOPA Blackout day
Posted by JournalHome.com
On the Tuesday 24th January 2012, the US Senate will vote on the Internet censorship bill.
Whilst it is an American law, it has far reaching repercussions for the web as a whole.
The bill will affect us all, and the way we all use websites.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
1/14/2012 - Friday the 13th updates
Posted by JournalHome.com
Hi,
I laughed in the face of Friday the 13th and made some minor updates
New items:
- I updated the tinyMCE editor to version 3.4.7, this is the default editor, (when no other plugins are active).
- I updated CKEditor to version 3.6.2, you can activate that editor Dashboard > Plugins > CKEditor
Fixes:
- Trackbacks were not working properly to say the least.
- Minor tweaks in the background.
As usual if you see anything wrong, please give me a shout.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
12/31/2011 - Happy new year!
Posted by JournalHome.com
It is already 2012 in some parts of the world and it is slowly getting to that time where we are...
2011 was full of changes for Journalhome, I have, (and in fact I am still busy doing it), re-written a lot of of the engine. I know it was fustrating for some of you as everything did not always work as expected... I am aware that there are still some issues with some templates.
2012 should bring some visual changes, new templates, (a-la Wordpress), finally a new front page, (this one is 7 years old I think)!
So, I hope you have a wonderful and prosperous new year, filled with all your wishes. If you are driving, be safe on the roads!
Happy and prosperous 2012 to all!
FFMG
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
12/16/2011 - The $5.00 mistake
Posted by JournalHome.com
I am in the process of making various updates and, although I am trying to be as careful as possible, some errors crept in.
Last night, (UK time), users were unable to create new entries for about 4-5 hours, the editor was just not working properly anymore :(. I fixed the issue as quickly as I could.
Sorry about this, please let me know if you come across any other issues that I might have missed.
In case you are wondering about the title, I had to put about $5.00 in the swear jar last night...
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
12/12/2011 - Where did my comments go?
Posted by JournalHome.com
We often get some questions about 'disappearing' comments.
What happens is no big secret, but rather a sign that we are not relying on technology as much as people think we are. You see, we have a spam bot running in the background, constantly evaluating entries, weblogs, and comments, (and a few other things). While it catches most spam on the spot, sometime it goes into 'safe mode' and asks for the comment to be moderated rather than risking making a bad decision.
While this is happening, a notification is sent to you, informing you that there is a new comment on your blog. Been the super efficient bunch that we are, we often review comments very quickly and delete it if need be.
This means that, by the time you come to read your blog, you find nothing more than tumbleweeds.
Note that we don't judge any comments, we only remove spam comments, nothing more, nothing less any other form of comments will have to be moderated by yourself. You can go to your account and delete the comments you don't wish to see.
Also note that a copy of the comment is sent to you, if you feel that we were wrong, we will happily restore your comment...
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
11/16/2011 - Stand up against the Internet blacklist legislation
Posted by JournalHome.com
Today, (November the 16th), the US congress is discussing some form of Internet censorship bill.
Basically they want to be able to monitor and censor the content of the Internet, (to prevent piracy and copyright infringements). This might sound like a noble idea, but in reality, anything you blog might be scrutinised and censor under some piracy cover.
Our servers are not located in the US so we would fall out of any such bills, but we still strongly believe that no government should be able to censor the Internet! You can read more about it here.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
10/18/2011 - Network update
Posted by JournalHome.com
There were some issues with the network this morning but it seems to have resolved itself, (somewhat worrying when those problems come and go).
At one point it looked like the Yahoo search engine robot had gone a bit crazy and was flooding the site, but I am not entirely certain that this was the issue.
I will keep monitoring it to see what the issue might be.
Sorry if you experienced some down time ...
[update 20/10/2011] I am still having some issues, I have disabled the statistics for now, so they will be a bit skew for a day or two ....
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
9/29/2011 - Very high server load
Posted by JournalHome.com
Something is putting a load on the server. I am not 100% sure what the issue might be, ('cause I changed nothing in the last few days).
But please bear with me while I try and sort it out, I'll update this post once it is sorted.
[edit]:I have made a couple of changes to the scripts that were causing some issues, this seems to have sorted the problem for now, but I am monitoring the situation.
[edit2] : It's been a couple of hours and all seems good now. Please let me know if you have any major issue(s).
F.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
9/21/2011 - Started facebook promotion - Part 2
Posted by JournalHome.com
This is a continuation of my earlier post on Facebook promotion.
I have now stopped the promotion to take stock of the results, (and because it was costing me a lot of money). There has been some signups directly from Facebook, (I can track those), but nothing worth the amount of money spent.
I ended up spending about 50 pound, (GBP), this was my budget for this experiment, each 'clicks', (that is users that saw the adverts and came to the sign-up page), cost between 0.2p and 0.8p, (I am not entirely certain why the cost varied so much, I suspect it has to do with the time of day). So, I ended up with about 70 'visitors' and out of those, I got 4 or 5 sign ups.
As you can well imagine this is very expensive for such a low return.
So what next?
- I'll wait a little bit and try Google AdWords.
- I'll probably wait for the Google+ plugin to be finished...
- Probably start some kind of competition, in other words, award the 50 pound to the best post, (per months or per week).
- Wait to see if someone else has another suggestion.
*I like number 3 but I want to give google a fair chance to see what comes of it.
As always, any suggestions are always welcome.
|
|
Comments (1) :: Post A Comment! :: Permanent Link
|
Share and enjoy
9/17/2011 - Started facebook promotion
Posted by JournalHome.com
I have always been curious on how to advertise journalhome, the way I see it, there are only two realistic options. Google Adsense or Facebook, I decided to go with Facebook because it is easier to choose the location, gender and user preferences.
I have a very modest budget, so we will see what kind of results we are getting, I am aiming for 1 'real' new blogger a day.
I will update this entry from time to time, to give a bit of feedback, the ad goes 'live' in about 2 or 3 hours, (when the US wakes up) and it is already live in Europe.
If you are a Facebook user please become a fan of JournalHome :), the more people we have the better.
(Update: see the result of my tinny exeriement and what I might do next).
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
9/4/2011 - August updates
Posted by JournalHome.com
- Entry categories were not saved properly at all.
- Tags can now be saved in drafts.
- I turned bad-behavior off for a while, (mainly to test speed and load times)
- I got rid of the 'Total members that have visited us in the last 24 hours: ...', it was ugly, slowing the db, and all in all not telling us anything very interesting.
You are welcome to go on the stats page to have a look at who has/has not visited us.
- I upgraded the default editor to version 3.4.4
I fixed a bug that was causing the spell checker to not work properly, (for the record, we use Google spell check).
- I re-wrote the messages section, just to make sure it looks a little better.
I also updated the 'lifeless', 'forced energy', and 'exotic' templates, because they were ugly... I know there are others, but I am working on them slowly.
|
|
Comments (0) :: Post A Comment! :: Permanent Link
|
Share and enjoy
8/13/2011 - Bab-behavior not behaving?
Posted by JournalHome.com
For a while now I have been running Bad-behavior for a while now and I must admit I have never really noticed a major slow down in the number of spam registrations/entries. This is primarily because it is blindingly easy to fix whatever issue the plugin might find with your headers.
It does use some third party website like the project honeypot, but those has the down side of slowing this website at every page load.
I need to refine it to only check on certain pages, (like comments and signup), while having it turned off for other pages. I mean, realistically I couldn't care less if a spammer is reading the front page, (as long as they don't do anything else naughty).
So, I have turned it off for a while, this will help me to check 2 things.
- First how much faster is the site, (if at all!), and how much more spam I get. We, (the bots and I :)), are currently disabling no less than 500 to 1000 accounts a day!, so if the numbers get much higher than that then I will know that bad-behavior was helping in a way.
- Secondly, I have metrics to check the speed of the site, so I can compare how much faster it will be.
I will leave it like that for a week or so and then compare everything again...
If any of you have some kind of experience with Bad-behavior, (or if you know how to fine tune it to work faster/smoother/better).
|
|
Comments (2) :: Post A Comment! :: Permanent Link
|
Share and enjoy
|
About Me
Recent Posts
Friends
• JournalHome.com
|