Hoaxblog.com
Pages:
Categories:
- Apache (6)
- backup (1)
- cache (2)
- Cpanel/WHM (11)
- ddos (1)
- exam (1)
- file hosting (2)
- General (11)
- Hosting (1)
- It’s me (2)
- linux (1)
- Linux Shell (14)
- Make Money Online (2)
- Mysql (2)
- mysqldump (1)
- php (1)
- Programming (3)
- proxy (1)
- Reseller (1)
- SEO (1)
- Servers (21)
- VPN (1)
- Windows (6)
- wordpress (1)
Blogroll
Meta:
Archive for the 'General' Category
05 5th, 2008
hmm, yeah, I m making this new post after along time
This was really hell to experience the taste of first year final exam of my honors
I always love these server management stuffs, troubleshooting, Web server and Linux. But this exam was making me irritating in all cases. By the way, my exam has finished yesterday. Now i m free again. I have some big plan to accomplish this month as well as June. So guys, read tight and pray for me ![]()
04 6th, 2008
Got a new title from today. Surid is now the web hosting evangelist of Hagio-Host. I was working as a CTO of Hagio-Host, though i got my title changed to Web Hosting Evangelist from today. It’s really a bit peculier title, but i would really like to be the Web Hosting Evangelist of Hagio-Host instead of being the CTO for more than one year now. I know, the term is a bit a newer to lots of my readers, so it should be better if i explain the designation a bit more.
I got this from the cambridge dictionary regarding an evangelist:
a person who tries to persuade people to become Christians, often by travelling around and organizing religious meetings
Basically, web hosting evangelist persuades users to take web hosting. My job is in the middle of a CTO and Marketing Head. One of my primary concern to evangelize the users for web hosting service of Hagio-Host using the best technological soundness of HH. I know its the most hardest work in the middle of loads of other web hosting services. Though, i do believe it is the most efficient way to prove my own capability with more responsibility
Hope to establish more perfect service for HH next year with my best skills.
03 21st, 2008
Right! I achieved my milestone finally
35$ finally in a day end. I would like to continue having that amount daily with a legitimate Ecpm and CTR (10$ & 3% now). File Hosting ROCKS ![]()
03 16th, 2008
Oh! Finally i crossed my first benchmark for the free file hosting site of mine. It was 20$ first time and i crossed it in 16 days, i m really glad to findout the way to make money with free file hosting and its really superb tactic i found earlier. My next target is to get at least 34$ every day so that i can generate at least 1000$ at the end of the month from adsense
Hope the money waiting for me.
02 6th, 2008
After upgrading my linux kernel to 2.6, i saw the basic apf is not working with it. While starting apf it says the following:
1 | Unable to load iptables module (ipt_state), aborting |
It happens due to the ipt_state has been changed to xt_state on the new linux kernel. To fix this problem, just edit the following file:
1 | /etc/apf/internals/functions.apf |
FIND:
1 2 | ml ipt_state 1 ml ipt_multiport 1 |
REPLACE TO:
1 2 | ml xt_state ml xt_multiport |
Now start the apf:
1 | service apf start |
or
1 | apf -s |
I have seen, lots of my customers see the 2002 phpmyadmin error while connecting from cpanel. After some small researches, i found this that, phpmyadmin by default tries to connect via tcp. And if you have query cache enabled, then for cache buffering it wont allow new tcp connections. So the best way to solve this problem is by resetting tcp connection into direct socket connection. A general Cpanel server can get fixed by following the steps written below:
Login as root and edit /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php. To do this, do the following;
1 | nano /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php |
Find
1 | $cfg[’Servers’][$i][’socket’] = ”; |
Change this settings to:
1 | $cfg[’Servers’][$i][’socket’] = ‘/var/lib/mysql/mysql.sock’; |
On the next line also change the following settings:
1 | $cfg[’Servers’][$i][’connect_type’] = ‘tcp’; |
To
1 | $cfg[’Servers’][$i][’connect_type’] = ’socket’; |
Have a nice reading
and work tight :p