Today YouTube announced their increase of the limit on a video you upload up to 15 min. So from now you can put more time from your live on blog. And of course a lot of bloggers will be happy with this decision.
We want YouTube to be the best place to upload video. Without question, the number one requested feature by our creators is to upload videos longer than 10 minutes. We’ve heard you, and today we’re pleased to announce that we’ve increased the upload limit to 15 minutes. (youtube blog)
For me this is a grate news. Do you think is enought for your video?
I try few hours to find why my search don’t work correctly. I use “page navi” plugin but the error persist without plugin too.
Finally, after many code modification I fout the problem. It was in the POST method who must be replaced with GET method.
But attention, Dilectio wordpress themes have two forms in their code. One is simple to find, is in searchform.php but the search field placed in the sidebar on the blog is in sidebar.php
So you must have this code on form:
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="get">
A lot of people get earnings from their blogs. There is no doubt about it. You can make money with your blog if you follow the next easy steps:
1 ) Make at least one article per day on your blog. Try to have every day a new article on blog. If you can write more article but no less them one per day.
2 ) Put ads on your blog. Google AdSense is o very good choice but not always the best choice. For Adsense you have few wordpress plugins who insert ads very easy.
3 ) Search for people interesting to buy advertorials, in this way you can increase your earnings with extra cash.
4 ) Focus to drive traffic on your blog. More traffic means more money. One of the best traffic si from Google Search. You must be sure your site is indexed by Google. You can do that very simple, just type in Google Search Engine field site:your_domain.com
5 ) Use Google Analytics or any other system to view data about your traffic. Try to understand this data, loot at the time spent by your visitors on your site, look at the page where they leave the site, and all indicators you cant get from a traffic analytic system.
6 ) Make a plan or a strategy about your earnings. At first pun a target of 1 euro per day and post one article every day on blog till you get that target. If you get target of 1 euro put a new target of 2 euro per day and try to reach new target. You will see is more easier to reach new target.
7 ) Put comments on another blogs but try to avoid to make spam and don’t exaggerate with this method.
8 ) Search for hot topics and think at the newest things on the market like i Phone, Laptops, different gadgets, stars, etc. You can use Google Hot Trends to get inspired too.
9 ) Also Social Media is important for you blog development. Try to know another people who have the same hobbies like you, tell about your blog to this people.
10 ) Look on another sites/blogs and learn how other have earning from online business.
Yesterday I found my users of an WMPU system can’t login from Internet Explorer. So I search for a solution and find one who work for my clients.
Solution are pretty simple and all you need is to make some modification on wp-config.php files.
You must add some new lines of codes written bellow:
define(‘ADMIN_COOKIE_PATH’, ‘/’);
define(‘COOKIE_DOMAIN’, ”);
define(‘COOKIEPATH’, ”);
define(‘SITECOOKIEPATH’, ”);
This problem don’t appear in Firefox or Opera, so if you want your users to use only Firefox or Opera you may ignore this changes.
Finally WordPress 3.0 was launched. They have few new options.
First they added a new default theme called Twenty Ten. Add new features and a new theme options: Menus.
Also at first look I understand they added wpmu into the core of wordpress.
If you want more details watch the video:
Sometime you need to deploy feeds of you blog to another web-application or website, and some time is very useful to have this feed in a random order. With this plugin is simple to randomize your feeds. Soon I hope to have more options about what feeds you and order by date and what feeds you want in a random order.
If you want any improvement to suggest for this plugin please send me feedback and I will add your wishes.
The plugin can be downloaded from here.
We improve our plugin functionality and pun more attractive design intro twitter counter module. Also we change the mode of shorten url, now we use v3 api of bit.ly.
Soon we will add another modules to Pro Twitter. If you have some suggestions please write it in comments arrea.
Also feel free to contact us anytime if you don’t know how to manage or put your settings in the plugin options.
Screenshots:
You can download the last version from wordpress page.
Finally we are launching today first version of ProTwitter plugin. This version is a a beta version, and have implemented only few of the options. Fast Twetter Counter became a part of this plugin and is no longer supported. Firs feature who will be added to plugin will be tweet this option who right now is under testing.
You can download the latest version of Pro Twitter here.
This is my list of Banned Email Domains on my wpmu.
You can use to protect against spammers with another protection tools. You cat put this domain in your WPMU admin on Option -> Banned Email Domains.
.co.cc
2424blog.com
900-numbers-livetoday.co.cc
azbestsellers.com
buffalomission.org
conficker-worm-removal.com
d6327.com
dazzlepedia.org
danielamail.com
dentistinnewportbeach.com
discoverrome.org
ddoforums.com
emaildesechable.info
emailfile.info
emailftw.info
fatbookmarks.com
filmstarwallpapers.com
free-drumlessons.com
freebassguitarlessons.net
freeeeemail.com
googlemails.net
hopandshop.co.uk
ihonn.net
internetsalestactition.com
iwantmail.org
lung-research.com
medialeaks.com
mexicanemail.info
mirroraty.org
mypainbuster.com
my-secret-tips.com
mysace.info
onlq.com
partyopedia.com
slrreview.net
solarhotwaterheater.eu
solutionsinnovative.com
thailandtravelview.com
uricacids.com
yargies.com
waystoquitsmoking.eu
williamemail.com
After running WordPress MultiUser for more then a year the biggest problem wasn’t the comment spam , but the fact that if I leave the site open for registration of new accounts the spam bots find it and start the attack.
I have tested a few plugins with different levels of success , all have a high level of false positive which didn’t satisfied me.
And so , I have turned to google to search a better solution for my problem and find this page about using .htaccess files to stop comment spam. After some modification now running it on with success with the apache logs showing that the bots are still attacking but they are not able to register and the positive fact is that valid users don’t encounter any problems on registration.
What is nice about this technique is that you don’t need anything from WordPress , no plugins or mu-plugins or some anti-hacker core files, the Apache steps in and kick spammers out.
Check this example:
# BEGIN ANTISPAMBLOG REGISTRATION
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-signup\.php*
RewriteCond %{HTTP_REFERER} !.*yourdomain.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://myfastblog.com/ [R=301,L]
# END ANTISPAMBLOG REGISTRATION