Google has setup nameservers to use if you would like to point your parked domains to Google Adsense for Domains. ns1.googleghs.com ns2.googleghs.com ns3.googleghs.com ns4.googleghs.com However, you can only use one Google product per domain https://www.google.com/adsense/support/as/bin/answer.py?sourceid=aso&subid=ww-ww-et-asui&medium=link&answer=154197
Sometime using cPanel with PureFTP you will get the following error message when trying to list all files in your FTP client. 226 Output truncated to 2000 matches Find the pure-ftpd.conf file on your server and change the following setting to how many files are required to be displayed: LimitRecursion 2000 8 The pure-ftpd.conf file [...]
These commands are helpful when your host runs suPHP and requires that files have a permission of 644 and folder of 755. Set file permissions to 644 recursively: find /path/to/apache -type f -print0 | xargs -I {} -0 chmod 0644 {} Set folder permissions to 755 recursively: find /path/to/apache -type d -print0 | xargs -I [...]
As mal-ware and malicious become more prevalent, it is important to ensure adaquate lines of protection for your system. Especially if you manage a web server and/or websites. A tool that I have found useful is call Sandboxie. It creates a virtual sandbox on your PC and any malware downloaded is removed from your system [...]
The Christian Web Hosting company we own offers free website transfer with all new hosting plans. If the need arises to FTP all the files from the old host, I have found this command to be excellent in recursively retrieving all files via FTP from the linux command line. wget -rcl0 ftp://user:pass@hostname The flags do [...]