Atheros AR9485 Wireless Update for Linux On An Asus ux31
I have used my Asus ux31 Ultrabook for over a year and I really enjoy the form factor, especially when I am traveling. I work with a lot of Linux servers and have traditionally used Windows on my client machines and I use a lot of Adobe products but here recently I have been working […]
MySQL user Table Modification
I routinely manipulate the mysql.user table to change host ip addresses of different users. The easiest way for me is to use a simple UPDATE statement that changes all Host=’xxx.xxx.xxx.xxx’ to Host=’yyy.yyy.yyy.yyy’ using this statement: UPDATE user SET Host=’yyy.yyy.yyy.yyy’ WHERE Host=’xxx.xxx.xxx.xxx’; If this is done then the changes will not immediately be reflected in the […]
Some Notes on Postfix
Service Name: postfix Config File: /etc/postfix/main.cf Add the following at the beginning of the config file and set appropriately: myhostname = [hostname].[domain] mydomain = [domain] myorigin = $myhostname inet_interfaces = $myhostname To add a relay host add the following line under “INTERNET OR INTRANET” relayhost = [relay hostname].[domain] (example: mailx.domain.com) Source: http://www.techotopia.com/index.php/Configuring_an_RHEL_6_Postfix_Email_Server
Increasing Upload File Size in IIS 7
After increasing the upload file size in PHP I noticed I was still getting errors when I tried to upload something larger than 30MB. Turns out, IIS has a limit of 30MB so anything that is uploaded larger than that will result in a 404 error. To increase this limit for just a single hosted […]
Increasing PHP upload limit over 8MB
Recently I was asked to increase the upload limit of a WordPress installation that I am hosting. I knew that the limit was based on the setting inside my php.ini file so I opened the file and changed the upload_max_filesize variable setting to 50M. That should do it, right? Not really. I then logged back […]
This website uses cookies to improve your browsing experience. Cookies help us remember your preferences, keep you logged in, and understand how you interact with our site. We do not share any personal information collected by cookies with third parties.