Archive for the ‘my server’ Category

IRC presence turned off

Friday, June 11th, 2010

I decided a while ago that I would drop from IRC. I think I mentioned it sometime.
Today it happened.
I killed my eggdrop from my polarhome shell account.
I sent an email closing my polarhome shell account.
I killed and deactivated the psybnc running on my server.
I deactivated the related account in pidgin.
I will probably drop the undernet account as well unless I will have time to implement an auto-login for it. But as I usually don’t have time it seems that will also get deleted.

So, that concludes the life of Chiu_Lee on the IRC undernet.

Related posts

SVN back in the house

Wednesday, April 7th, 2010

Ever since I moved from my old source-based linus to rpm-based linux, there were some features I was not able to set up or install due to lack of time. One of these was the SVN server. And since I’ve done some changes to the greasemonkey scripts as you can see in my previous post, I had to commit.
So, long story short, I had to:
- yum install mod_dav_svn.i386
- service httpd restart
- usermod -a -G svn apache
- chown -R svn:svn /svn
- chmod -R g+w /svn
to get rid of all the errors and be able to use my old repository again.

Well, that’s about it for now.

Related posts

Major change: switching from tighurl to yourls

Monday, March 8th, 2010

I just migrated from tighurl to yourls. I must say the interface is nicer and the overall user experience is better as well. Not to mention that it integrates better with WP and twitter autoposter :)

Related posts

*.ru sites are now banned from my emails

Thursday, February 4th, 2010

After banning *.cn sites, it’s high time for the russians to go as well. I am truly sorry innocent russian people who want to email me their website: I no longer accept such emails. Notice that I am taling about websites contained in the email, not email addresses or other stuff ;)

Related posts

Major upgrades and changes

Sunday, January 31st, 2010

During the past couple of weeks I’ve been doing some changes with my server; this might have been noticed from outside too.
Getting down to business, it’s like this:
- I dropped my second ISP so basically my main server remained without a backup internet connection. It’s too expensive to keep a backup during these times :)
- I upgraded my server from my old desktop dell pc PIII with 256 mb RAM to a newer server dell pc dual proc PIII@866Mhz with 512 MB RAM and 2 19GB SCSI HDD in software raid (0 for swap and 1 for rest). Sometime in the near future I plan a memory upgrade, not sure yet how much since the MB has only 4 memory slots and all 4 of them are filled. Obsiously I moved the 80GB hdd from the old pc to the new server :D
- I installed centos 5 latest CLI only and switched from “source-based” to “rpm-based” using yum (you might not know but everything on my old server was source based. needless to say that upgrading was a real pain specifically when I had to upgrade commonly used stuff such as libs or compilers or even interpreters)
- I downgraded mysql from 5.1.x to 5.0.y (it’s basically what centos came with)
- upgraded xmail from 1.23 to 1.26
- upgraded apache as well from 2.0 to 2.2 (centos came with)
- downgraded php from 5.2.x to 5.1.6 (it wasn’t properly supported by most of my sites anyway)
- upgraded gallery2 plugins to latest (not gallery 2 it self yet)
- upgraded smf from 0.9 to 1.1
- upgrade wordpress from 2.8.6 to 2.9.1 (did you know that the migration tool DOES NOT work? I just found out myself)
- upgraded php link directory from 2.1.1 to 2.2.0
- partially upgraded joomla and components to 1.5 latest
- dropped bugzilla and a bunch of other stuff

and now, I’m watching the logs to see what else is not behaving properly and fix it.

I had so many things I wanted to write about while I was doing upgrades but I forgot most of them. I’ll try to summarize how it all went.
- I wanted to start out clean and fresh so after installing and upgrading all the needed software, I started installing the first sites. And I started with wordpress.
My first idea was to create a reverse proxy with apache but I just couldn’t get that working with wordpress.
So I then decided to actually move the old things to the new hdd and export then import the DB data. However, I did the stupid thing of changing all tables to use myisam engine so now I had to install all the software from scratch so that the db structure is recreated as needed and then semi-automatically add the data. Now that was painful.
I have to mention that I had a lot of trouble moving the data around too, as I needed a jumper for the storage hdd (the 80 gb one) to make it primary and I also needed a longer ide cable so I could fit both the hdd and the cd-rom in the casing. I took the jumper out of the cd-rom since I couldn’t find an ide cable so right now I’m running with no cd-rom. I shouldn’t need that anyway, unless the system goes down since I do everything from remote.
There is still the problem of accommodating the new server space-wise since the old one was a desktop, “flat”, and this one is tower.
I also had to change the fans since they were pretty loud.

Well, that’s about all I remember now. But since I was struggling with this for over a week, you can imagine how much trouble I was in. Anyway, let’s hope for the best and that now I can resume my site-migration from html+ssi+cgi to joomla.

Related posts

“Compacting” web sites

Saturday, January 2nd, 2010

Having a lot of domains that bring in no cache is too expensive, especially now with this world-crisis, so I decided to drop the domains that don’t pay for themselves.
Thus alus.ws, the url shortener service has moved to s.ciuly.com (s from short).
ciuly.info moved to info.ciuly.com
empty-directory.info remains as it is at least until march when the domain expires. I have set up dedicated adsense channels to see the exact revenue the site is bringing. Based on that I will decide if to keep it or not.
ciqcs.com moves to ciqcs.ciuly.com

Related posts

Big SW upgrade on server

Sunday, December 20th, 2009

About 26 oir so hours ago I started to upgrade stuff on my server. mainly I wanted mysql which also implied php.
so, I made a maintanence page for apache to take care of all the sites and hit it on. but I just couldn’t install mysql. scripts were freezing (like mysql_install_db) and using the –skup-grant-tables was not helping either.
Took me almost 12 hours to figure out that the DNS server was still running and it used mysql. Stopping the DNS server got rid of that problem.
Then came php. I was getting:

checking for MySQL support for PDO… shared
checking for mysql_config… no
configure: error: Cannot find MySQL header files under

I just couldn’t figure out what the problem was until I digged into the configure script. on line 65536 i had

for i in /usr/local /usr ; do

which is stupid because it was not taking into account my –with-mysql selection in command line. so I modified that line to be:
for i in $PHP_MYSQL /usr/local /usr ; do

and problem solved.

I then had to modify some of the scripts as they were spitting depcrecated and erros on the screen but hey, that’s just upgrading life.

and finally, the last one was joomla.

Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in path_to_/components/com_resource/controller.php on line 193

I wasn’t paying attention that the error was actually in com_resource so I upgraded joomla to latest (which wasn’t a bad idea anyway). and when it didn’t go away I woke up to reality and tried to upgrade resource from mighty extensions BUT… their site is down. To be more precise, the domain does not resolv. get a load of that.
I sent them a tweet reply since I have no idea how else to contact them.

Related posts

First results of web directory “cleanup”

Thursday, December 17th, 2009

A few days ago I started on some major changes in my webdirectory as I wrote here.
So after 3 days of not being confirmed, a site will be moved to un-approved. after 14 days of not being confirmed, it will be deleted.
After the first 3 days, over 200 sites were moved to un-approved. But something tells me that the number will raise considerably as now the number of approved sites has dropped to half, from over 700 to 300 and something.
Go-go-go :)

Related posts

UserVoice.com in the house

Wednesday, November 25th, 2009

I just setup uservoice.com feedback system on my site.
I added it to my old includes (old site), joomla includes (new site) and the blog.
Maybe I’ll add it to the forum and gallery as well, but I’ll think about it.

Related posts

Where is the spam comming from?

Monday, November 16th, 2009

For a good few weeks or even 2 months now I am getting a lot of “canadian” spam. mainly pills and shit. I was wondering wtf happened when it suddenly hit me. I had a canadian client in the medical area which basically ditched me for whatever reasons, totally unprofessional. Now that I think about it, he might have something to do with this.
And if he does and he has indeed something to do with this, I have only one question: Are you fucking out of your mind?!
I have an idea of a pretty good anti-spam filter for these emails (they all share some stuff but it’s not easy to get it strait out). So in the following 1 or 2 weeks I’ll write it and then, up yours.
I’ll probably make a dnsbl so that others can use it too.

Related posts