Server Migration


Some folks who go to dannychoo.com will still see the old server. This is because that persons ISP still has not updated their DNS records. ISPs usually update their records every 24 hours - some less than, some more than. If you have came here via http://74.53.196.114/, then you should be able to access this site via dannychoo.com within 48 hours.
Some of your comments on the last post may have disappeared. This is because I took a snapshot of data from the old server last night - any comments made on the old server since last night have not been ported over to this server.
The old server was a 512MB Intel Celeron 1300MHz. This new server is a 2GB Intel Xeon CPU 3060 @ 2.40GHz with unmetered bandwidth. The site was previously using near to 2 terabytes of bandwidth (1 terabyte over my limit) and costing me 0.50 USD per GB over my limit @.@;;; I dont need to worry about the bandwidth now as its unmetered (thank you god).
I was wondering why the old server kept choking on 30,000 daily users as I think it could have taken a bit more. The reason was that the daily average for June was actually 48,000 users per day. May alone generated over 6.3 million page views. I was looking at the wrong logs ^^;;;
I need to do more optimization to this server before I implement load balancing and set up a separate image server.
Another priority for me is to make sure that I am sharing the current traffic with others who have contributed to it. I will soon set up a system that will enable me to easily add RSS feeds of folks who have registered my feed on their site. Your feed will appear randomly on the top page and on all blog post pages. This means that I will be driving traffic back to you too and that DC Rewards will be even more rewarding - give me a few weeks to complete this.

Some of you wanted to know how I done the server migration and I have outlined that below.
1. Copy files from old server to new server
Unix has a command called rsync which is just too amazing. *One* command (below) syncs the new server with all the files on the old server. All file permissions also remain intact too. I just could not imagine doing this manually and then chmodding all the folders again. I did this once then done QA on the new server. Once that was complete, I run rsync again which syncs any changes made on the old server over to the new one.
rsync -aze ssh root@207.44.218.20:/home/httpd/vhosts/dannychoo.com/httpdocs/
/var/www/httpd/vhosts/dannychoo.com/httpdocs/
2.Dump mysql table from old server
I make a backup of the MYSQL DB on the old server. The file is saved at "/httpdocs/dannychoo_com_dumpeddb.sql" which is the equivalent of "http://www.dannychoo.com/dannychoo_com_dumpeddb.sql"
mysqldump --add-drop-table dannychoo_com_db > /home/httpd/vhosts/dannychoo.com/httpdocs/
dannychoo_com_dumpeddb.sql -u username -p
3.Create new DB on new server
After logging into MYSQL via the terminal on the new server, I type...
create database dannychoo_com_db
4.Get MYSQL Dump from old server
I then get the backup of the MYSQL DB that I made on the old server. curl is a command that will fetch any file and save it locally.
curl -O http://www.dannychoo.com/dannychoo_com_dumpeddb.sql
5.Import data from dump
Data that I just got from the old server using curl is then imported into the database on the new server.
mysql dannychoo_com_db < /var/www/httpd/vhosts/dannychoo.com/httpdocs/
dannychoo_com_dumpeddb.sql -u username -p
6.Add MYSQL users
GRANT ALL ON *.* TO username@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
7.Edit php.ini
Edit php.ini to your liking.
vi /etc/php.ini
8.Install ImageMagick
ImageMagick is a command line tool for generating graphics - just imagine Photoshop that can be controlled with text commands. Follow this tutorial for installation.
9.Set cron jobs
Cron jobs are tasks that you ask the server to do at regular intervals. Set any jobs that you want to run regularly.
17 7 * * * /usr/local/psa/admin/bin/php /usr/local/psa/admin/plib/
report/autoreport.php --auto daily >/dev/null 2>&1
10.Set up mail accounts
I ordered my server with Plesk which I use to set up domains and mail accounts. Should obviously be done before switching the DNS so that you dont loose mail.
11.Request IP change at hosting company
The server has a new IP so I need to tell The Planet to point dannychoo.com to the new IP address.
12.Switch nameservers at registrar
I get my domains at GoDaddy. Strange name but cheap domains. They sometimes run campaigns for 1 USD per .com domain. They are currently running a 0.99 USD for .info domains.
OK, thats it for today as I need to tweak the server a bit more. Lemme know if you spot anything odd.
The otaku shenanigans continues tomorrow.
BTW, Otakurl, Otavids and RDC bookmarklets wont work until the DNS has fully propagated throughout the internet. If you need to add something, change the "www.dannychoo.com" to "74.53.196.114" when you use the bookmarklets.
If you are interested in reading about life in Japan, seeing photos taken daily around Tokyo, like Japanese subculture (anime, manga, figures, Dollfies) then you may want to start delving into the Japan or Figure categories for a start or have a gander at all photo articles.
If you don't have much time now, maybe subscribe to the RSS Feed, Twitter Feed or join the other readers in the FaceBook Page.
Alternatively, you may want to read more about the site.
If you are a regular reader then this message will probably annoy you each time - hide it forever.
-Akihabara News – Gadgetry from Japan (Subscribe)





















3D artist
http://andyh.cgsociety.org
My brain hurts (trying) to read all of that...
Good to see its all up n' running anyhoo.
3D artist
http://andyh.cgsociety.org
My brain hurts (trying) to read all of that...
Good to see its all up n' running anyhoo.
3D artist
http://andyh.cgsociety.org
My brain hurts (trying) to read all of that...
Good to see its all up n' running anyhoo.
3D artist
http://andyh.cgsociety.org
My brain hurts (trying) to read all of that...
Good to see its all up n' running anyhoo.
.NET/Web Developer
http://scrumptious.animeblogger.net
That rsync commmand is really awesome. Its one of the things I really like about unix systems over Windows.
I should give ImageMagick a try one of these days. btw, in IE 7 the post is kinda misaligned and shows up below the Related Posts section. SS here: http://i4.photobucket.com/albums/y132/bele04/MisalignedPost.png
Great job on the migration. From what I read I don't think you had a lot of problems transferring to the new server. hehehe! ^^
.NET/Web Developer
http://scrumptious.animeblogger.net
That rsync commmand is really awesome. Its one of the things I really like about unix systems over Windows.
I should give ImageMagick a try one of these days. btw, in IE 7 the post is kinda misaligned and shows up below the Related Posts section. SS here: http://i4.photobucket.com/albums/y132/bele04/MisalignedPost.png
Great job on the migration. From what I read I don't think you had a lot of problems transferring to the new server. hehehe! ^^
.NET/Web Developer
http://scrumptious.animeblogger.net
That rsync commmand is really awesome. Its one of the things I really like about unix systems over Windows.
I should give ImageMagick a try one of these days. btw, in IE 7 the post is kinda misaligned and shows up below the Related Posts section. SS here: http://i4.photobucket.com/albums/y132/bele04/MisalignedPost.png
Great job on the migration. From what I read I don't think you had a lot of problems transferring to the new server. hehehe! ^^
.NET/Web Developer
http://scrumptious.animeblogger.net
That rsync commmand is really awesome. Its one of the things I really like about unix systems over Windows.
I should give ImageMagick a try one of these days. btw, in IE 7 the post is kinda misaligned and shows up below the Related Posts section. SS here: http://i4.photobucket.com/albums/y132/bele04/MisalignedPost.png
Great job on the migration. From what I read I don't think you had a lot of problems transferring to the new server. hehehe! ^^
student
yoyo ..??
means there's no more dannychoo.com?
must use this http://74.53.196.114/?
student
yoyo ..??
means there's no more dannychoo.com?
must use this http://74.53.196.114/?
student
yoyo ..??
means there's no more dannychoo.com?
must use this http://74.53.196.114/?
student
yoyo ..??
means there's no more dannychoo.com?
must use this http://74.53.196.114/?
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Hayashi,
No - keep dannychoo.com bookmarked. When your ISP updates its DNS records, you will see this site appear as normal at dannychoo.com.
Sonnyf,
Redhat. Will keep you posted ^^
Bele,
Thanks,
I think I fixed it.
Andy,
More moe stuff from tomorrow ^^;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Hayashi,
No - keep dannychoo.com bookmarked. When your ISP updates its DNS records, you will see this site appear as normal at dannychoo.com.
Sonnyf,
Redhat. Will keep you posted ^^
Bele,
Thanks,
I think I fixed it.
Andy,
More moe stuff from tomorrow ^^;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Hayashi,
No - keep dannychoo.com bookmarked. When your ISP updates its DNS records, you will see this site appear as normal at dannychoo.com.
Sonnyf,
Redhat. Will keep you posted ^^
Bele,
Thanks,
I think I fixed it.
Andy,
More moe stuff from tomorrow ^^;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Hayashi,
No - keep dannychoo.com bookmarked. When your ISP updates its DNS records, you will see this site appear as normal at dannychoo.com.
Sonnyf,
Redhat. Will keep you posted ^^
Bele,
Thanks,
I think I fixed it.
Andy,
More moe stuff from tomorrow ^^;
Web Developer/ウェブデベロッパー, Photographer/写真や
http://www.moeside.net/weblog
Power differences between the old server and the new ^^;
Welcome to the new server and welcome back ^^
Web Developer/ウェブデベロッパー, Photographer/写真や
http://www.moeside.net/weblog
Power differences between the old server and the new ^^;
Welcome to the new server and welcome back ^^
Web Developer/ウェブデベロッパー, Photographer/写真や
http://www.moeside.net/weblog
Power differences between the old server and the new ^^;
Welcome to the new server and welcome back ^^
Web Developer/ウェブデベロッパー, Photographer/写真や
http://www.moeside.net/weblog
Power differences between the old server and the new ^^;
Welcome to the new server and welcome back ^^
Self-employed
http://sparechangeanyone.wordpress.com/
None of that tech stuff ever makes sense to me.
I just hope everything continues to go smoothly ^^
Self-employed
http://sparechangeanyone.wordpress.com/
None of that tech stuff ever makes sense to me.
I just hope everything continues to go smoothly ^^
Self-employed
http://sparechangeanyone.wordpress.com/
None of that tech stuff ever makes sense to me.
I just hope everything continues to go smoothly ^^
Self-employed
http://sparechangeanyone.wordpress.com/
None of that tech stuff ever makes sense to me.
I just hope everything continues to go smoothly ^^
looking all that stuffs
i though it was science rocket :D
PS: i thuong new server means new interface :|
looking all that stuffs
i though it was science rocket :D
PS: i thuong new server means new interface :|
looking all that stuffs
i though it was science rocket :D
PS: i thuong new server means new interface :|
looking all that stuffs
i though it was science rocket :D
PS: i thuong new server means new interface :|
Troubleshooter, Universal Exports
http://funkyblueame.tumblr.com/
Ugh... just realized I have been posting from my mobile all day and I forgot to update the bookmark. Stupid me...
Oh boy, .50 cent. per, GB... ^^; No doubt the new server will better serve -no pun intended- your site.
Having a UNIX based OS makes somethings so much quicker. I had realized how much UNIX I forgot until I started using OSX full time. ^^; Thanks for letting us see your migration outline. Please do give us a post when you do the load balance.
Troubleshooter, Universal Exports
http://funkyblueame.tumblr.com/
Ugh... just realized I have been posting from my mobile all day and I forgot to update the bookmark. Stupid me...
Oh boy, .50 cent. per, GB... ^^; No doubt the new server will better serve -no pun intended- your site.
Having a UNIX based OS makes somethings so much quicker. I had realized how much UNIX I forgot until I started using OSX full time. ^^; Thanks for letting us see your migration outline. Please do give us a post when you do the load balance.
Troubleshooter, Universal Exports
http://funkyblueame.tumblr.com/
Ugh... just realized I have been posting from my mobile all day and I forgot to update the bookmark. Stupid me...
Oh boy, .50 cent. per, GB... ^^; No doubt the new server will better serve -no pun intended- your site.
Having a UNIX based OS makes somethings so much quicker. I had realized how much UNIX I forgot until I started using OSX full time. ^^; Thanks for letting us see your migration outline. Please do give us a post when you do the load balance.
Troubleshooter, Universal Exports
http://funkyblueame.tumblr.com/
Ugh... just realized I have been posting from my mobile all day and I forgot to update the bookmark. Stupid me...
Oh boy, .50 cent. per, GB... ^^; No doubt the new server will better serve -no pun intended- your site.
Having a UNIX based OS makes somethings so much quicker. I had realized how much UNIX I forgot until I started using OSX full time. ^^; Thanks for letting us see your migration outline. Please do give us a post when you do the load balance.
Email & Network Support/Administration
http://badger11.animeblogger.net/
Ah DNS and bandwidth, the bane and the glory of my existence. Thankfully we're no where near maxing out our bandwidth.
Although, I've had a few "tech support" guys call me up and complain that we didn't tell them about the name server move when we did send a mass email to their clients. They were complaining about changing a static ip address for the old name servers. Sheesh!
Email & Network Support/Administration
http://badger11.animeblogger.net/
Ah DNS and bandwidth, the bane and the glory of my existence. Thankfully we're no where near maxing out our bandwidth.
Although, I've had a few "tech support" guys call me up and complain that we didn't tell them about the name server move when we did send a mass email to their clients. They were complaining about changing a static ip address for the old name servers. Sheesh!
Email & Network Support/Administration
http://badger11.animeblogger.net/
Ah DNS and bandwidth, the bane and the glory of my existence. Thankfully we're no where near maxing out our bandwidth.
Although, I've had a few "tech support" guys call me up and complain that we didn't tell them about the name server move when we did send a mass email to their clients. They were complaining about changing a static ip address for the old name servers. Sheesh!
Email & Network Support/Administration
http://badger11.animeblogger.net/
Ah DNS and bandwidth, the bane and the glory of my existence. Thankfully we're no where near maxing out our bandwidth.
Although, I've had a few "tech support" guys call me up and complain that we didn't tell them about the name server move when we did send a mass email to their clients. They were complaining about changing a static ip address for the old name servers. Sheesh!
IT monkey/consultant
Thank God for the ways of UNIX. :)
I keep putting off backups and migrations, only to kick myself later because when I'm forced to do it I remember just how darned easy it is, so there was no good reason to not do it in the first place!
Congrats on the new server and bandwith provider.
IT monkey/consultant
Thank God for the ways of UNIX. :)
I keep putting off backups and migrations, only to kick myself later because when I'm forced to do it I remember just how darned easy it is, so there was no good reason to not do it in the first place!
Congrats on the new server and bandwith provider.
IT monkey/consultant
Thank God for the ways of UNIX. :)
I keep putting off backups and migrations, only to kick myself later because when I'm forced to do it I remember just how darned easy it is, so there was no good reason to not do it in the first place!
Congrats on the new server and bandwith provider.
IT monkey/consultant
Thank God for the ways of UNIX. :)
I keep putting off backups and migrations, only to kick myself later because when I'm forced to do it I remember just how darned easy it is, so there was no good reason to not do it in the first place!
Congrats on the new server and bandwith provider.
Policy & Research Officer
http://www.alafista.com/
Congrats on the successful migration. Though I had no idea what those techno mumbo jumbo meant. Maybe it will come in very useful when I do a server migration too in like 123123 years time.
Policy & Research Officer
http://www.alafista.com/
Congrats on the successful migration. Though I had no idea what those techno mumbo jumbo meant. Maybe it will come in very useful when I do a server migration too in like 123123 years time.
Policy & Research Officer
http://www.alafista.com/
Congrats on the successful migration. Though I had no idea what those techno mumbo jumbo meant. Maybe it will come in very useful when I do a server migration too in like 123123 years time.
Policy & Research Officer
http://www.alafista.com/
Congrats on the successful migration. Though I had no idea what those techno mumbo jumbo meant. Maybe it will come in very useful when I do a server migration too in like 123123 years time.
IT, Programmer, Otaku, ...
http://blog.jpopdb.org/
Good to see that the migratiion went without big problems.
Good luck!
IT, Programmer, Otaku, ...
http://blog.jpopdb.org/
Good to see that the migratiion went without big problems.
Good luck!
IT, Programmer, Otaku, ...
http://blog.jpopdb.org/
Good to see that the migratiion went without big problems.
Good luck!
IT, Programmer, Otaku, ...
http://blog.jpopdb.org/
Good to see that the migratiion went without big problems.
Good luck!
Auditor
I read many blogs and in hopes of starting one but when i keep seeing complicating stuff, my desire to start one drops a lot T_T
Congrats on the success migration
Auditor
I read many blogs and in hopes of starting one but when i keep seeing complicating stuff, my desire to start one drops a lot T_T
Congrats on the success migration
Auditor
I read many blogs and in hopes of starting one but when i keep seeing complicating stuff, my desire to start one drops a lot T_T
Congrats on the success migration
Auditor
I read many blogs and in hopes of starting one but when i keep seeing complicating stuff, my desire to start one drops a lot T_T
Congrats on the success migration
Network Engineering/Student
oh god i hate doing linux.....
but i am studying it after all..
Network Engineering/Student
oh god i hate doing linux.....
but i am studying it after all..
Network Engineering/Student
oh god i hate doing linux.....
but i am studying it after all..
Network Engineering/Student
oh god i hate doing linux.....
but i am studying it after all..
Mandalorian in training + Otaku...
Uh, too complicated for me xD
Mandalorian in training + Otaku...
Uh, too complicated for me xD
Mandalorian in training + Otaku...
Uh, too complicated for me xD
Mandalorian in training + Otaku...
Uh, too complicated for me xD
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
You kick ass Danny ^_^
Speed has been well improved. I use IE7 and now I can see the whole page quite instantanously.
Your Unix tuto is also well interesting. Should be nice to work with you.
Your idea of random RSS feed is marvellous. Some (many) of us will discover what is high traffic.
Thx again. Always a pleasure to come here.
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
You kick ass Danny ^_^
Speed has been well improved. I use IE7 and now I can see the whole page quite instantanously.
Your Unix tuto is also well interesting. Should be nice to work with you.
Your idea of random RSS feed is marvellous. Some (many) of us will discover what is high traffic.
Thx again. Always a pleasure to come here.
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
You kick ass Danny ^_^
Speed has been well improved. I use IE7 and now I can see the whole page quite instantanously.
Your Unix tuto is also well interesting. Should be nice to work with you.
Your idea of random RSS feed is marvellous. Some (many) of us will discover what is high traffic.
Thx again. Always a pleasure to come here.
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
You kick ass Danny ^_^
Speed has been well improved. I use IE7 and now I can see the whole page quite instantanously.
Your Unix tuto is also well interesting. Should be nice to work with you.
Your idea of random RSS feed is marvellous. Some (many) of us will discover what is high traffic.
Thx again. Always a pleasure to come here.
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
Bug:
My webpage is not updated. Still writing to my old web page, whereas mine is scanx.free.fr now.
Except that, you're still impressive!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
Bug:
My webpage is not updated. Still writing to my old web page, whereas mine is scanx.free.fr now.
Except that, you're still impressive!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
Bug:
My webpage is not updated. Still writing to my old web page, whereas mine is scanx.free.fr now.
Except that, you're still impressive!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
Bug:
My webpage is not updated. Still writing to my old web page, whereas mine is scanx.free.fr now.
Except that, you're still impressive!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
I've managed to fix it by adding a "/" to my web address and then updating my profile.
But before one address was recorded in my profile (the new one) and one was showed (different, the old one).
Nevertheless it works now ^_^.
Anyway you make Unix stuffs sound so excited. I say that because I've been working in system for 7 years !!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
I've managed to fix it by adding a "/" to my web address and then updating my profile.
But before one address was recorded in my profile (the new one) and one was showed (different, the old one).
Nevertheless it works now ^_^.
Anyway you make Unix stuffs sound so excited. I say that because I've been working in system for 7 years !!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
I've managed to fix it by adding a "/" to my web address and then updating my profile.
But before one address was recorded in my profile (the new one) and one was showed (different, the old one).
Nevertheless it works now ^_^.
Anyway you make Unix stuffs sound so excited. I say that because I've been working in system for 7 years !!
Research Engineer/Student/Daddy ^_^
http://www.scanx.fr
I've managed to fix it by adding a "/" to my web address and then updating my profile.
But before one address was recorded in my profile (the new one) and one was showed (different, the old one).
Nevertheless it works now ^_^.
Anyway you make Unix stuffs sound so excited. I say that because I've been working in system for 7 years !!
student
http://animesugoi.animeblogger.net/
Nice to see the move didn't take long and have any problems. Nice to have you back.
student
http://animesugoi.animeblogger.net/
Nice to see the move didn't take long and have any problems. Nice to have you back.
student
http://animesugoi.animeblogger.net/
Nice to see the move didn't take long and have any problems. Nice to have you back.
student
http://animesugoi.animeblogger.net/
Nice to see the move didn't take long and have any problems. Nice to have you back.
Consultor
http://saladamixta.com
Always changes and migrations.. servers.. internet providers.... no one is safe :P
Consultor
http://saladamixta.com
Always changes and migrations.. servers.. internet providers.... no one is safe :P
Consultor
http://saladamixta.com
Always changes and migrations.. servers.. internet providers.... no one is safe :P
Consultor
http://saladamixta.com
Always changes and migrations.. servers.. internet providers.... no one is safe :P
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Shou',
I have and will probably use that as the image server.
Vincent,
Glad its fixed.
Ataris,
Its happening for me too ~~;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Shou',
I have and will probably use that as the image server.
Vincent,
Glad its fixed.
Ataris,
Its happening for me too ~~;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Shou',
I have and will probably use that as the image server.
Vincent,
Glad its fixed.
Ataris,
Its happening for me too ~~;
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Shou',
I have and will probably use that as the image server.
Vincent,
Glad its fixed.
Ataris,
Its happening for me too ~~;
anime/cosplay events organizer
http://www.cosplay.ph
glad that you've migrated to your new server w/o any problems at at least a few problems here and there ^^
anime/cosplay events organizer
http://www.cosplay.ph
glad that you've migrated to your new server w/o any problems at at least a few problems here and there ^^
anime/cosplay events organizer
http://www.cosplay.ph
glad that you've migrated to your new server w/o any problems at at least a few problems here and there ^^
anime/cosplay events organizer
http://www.cosplay.ph
glad that you've migrated to your new server w/o any problems at at least a few problems here and there ^^
anime/cosplay events organizer
http://www.cosplay.ph
wait a minute, i don't know if anyone has noticed but i think there's an error in the user avatar...
when i post a comment, the avatar posted is my old avatar but when i visit my profile page it shows my updated avatar
anime/cosplay events organizer
http://www.cosplay.ph
wait a minute, i don't know if anyone has noticed but i think there's an error in the user avatar...
when i post a comment, the avatar posted is my old avatar but when i visit my profile page it shows my updated avatar
anime/cosplay events organizer
http://www.cosplay.ph
wait a minute, i don't know if anyone has noticed but i think there's an error in the user avatar...
when i post a comment, the avatar posted is my old avatar but when i visit my profile page it shows my updated avatar
anime/cosplay events organizer
http://www.cosplay.ph
wait a minute, i don't know if anyone has noticed but i think there's an error in the user avatar...
when i post a comment, the avatar posted is my old avatar but when i visit my profile page it shows my updated avatar
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Henry,
Thats a bug on this end ^^;
The comments table stores the name of your avatar - in this case it was a png file.
You updated your avatar with a jpg file which is why you notice the difference.
If you post another comment, you will see your jpg avatar.
This is something I need to fix soon ^^;
Thanks for pointing it out.
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Henry,
Thats a bug on this end ^^;
The comments table stores the name of your avatar - in this case it was a png file.
You updated your avatar with a jpg file which is why you notice the difference.
If you post another comment, you will see your jpg avatar.
This is something I need to fix soon ^^;
Thanks for pointing it out.
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Henry,
Thats a bug on this end ^^;
The comments table stores the name of your avatar - in this case it was a png file.
You updated your avatar with a jpg file which is why you notice the difference.
If you post another comment, you will see your jpg avatar.
This is something I need to fix soon ^^;
Thanks for pointing it out.
CEO MIrai Inc
http://www.dannychoo.com/profile/eng/
Henry,
Thats a bug on this end ^^;
The comments table stores the name of your avatar - in this case it was a png file.
You updated your avatar with a jpg file which is why you notice the difference.
If you post another comment, you will see your jpg avatar.
This is something I need to fix soon ^^;
Thanks for pointing it out.
university student
i need to learn all this stuff haha