Browse: Home / Development
By Ed Reckers on May 19, 2011
In a nutshell, this is what I used to achieve somewhat cross browser css background transparency: #content { background-color: rgba(255,255,255,0.3); } Then, you’ll of course need to make an exception for stinkin IE: <!–[if IE]> <style type="text/css"> #content { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#44FFFFFF,endColorstr=#44FFFFFF); zoom: 1; } </style> <![endif]–> In the case above, I’m using Microsoft’s gradient, but [...]
Posted in Development |
By Ed Reckers on April 11, 2011
I had to look into how to require a customer phone number using PayPal Express Checkout recently and just found the process to be a pain. Since I don’t work in the PayPal setups/development screens often, I was hoping to just search google and find the answer. It didn’t work out so easily. Well, I [...]
Posted in Development |
By Ed Reckers on February 6, 2011
A very common issue with Apache logs in which many multiples of the following lines are logged: OPTIONS * HTTP/1.0″ 200 – “-” “Apache/2.2.3 (CentOS) (internal dummy connection) You’re logs will looking something like this (in this case ipv6 enabled): ::1 – – [30/Jan/2011:09:29:17 -0800] “OPTIONS * HTTP/1.0″ 200 – “-” “Apache/2.2.3 (CentOS) (internal dummy [...]
Posted in Development |
By Ed Reckers on February 6, 2011
There seems to be enough Top 10 WordPress Plugins lists on the Internet today to justify a definitive list of these top 10 lists. I haven’t decided yet if this list (of mine) will have a defined number of lists (say, The Top 10 Lists of Top 10 WordPress Plugin Lists), but what I can [...]
Posted in Development |
By Ed Reckers on February 4, 2011
After rebooting my Linux server Apache fails to start. When trying to start with either apachectl or httpd I’ll come across the following message: httpd not running, trying to start (98)Address already in use: make_sock: could not bind to address [::]:80 (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80 no listening sockets [...]
Posted in Development |
By Ed Reckers on January 28, 2011
This is mainly for my own records, but the curious thing is that when I do a simple search for “how to replace a wordpress function” or a few derivatives of that phrase I’m usuually returned the following links (at least w/ Google): http://codex.wordpress.org/Function_Reference/remove_action http://codex.wordpress.org/Function_Reference/remove_filter http://codex.wordpress.org/Function_Reference/the_excerpt However, what I’m really looking to do is basically swap in [...]
Posted in Development |
By Ed Reckers on December 1, 2010
I had an issue with the WordPress 3.0+ video uploader while trying to upload Flash Video files with the extension f4v. Upon attempting to load a flash f4v video file with the WordPress video uploader the following error message would be thrown, “File type does not meet security guidelines.”. The ultimate fix is to add the [...]
Posted in Development |
By Ed Reckers on November 30, 2010
You’ll notice the IP range 204.13.201.0/26 scanning your system. This IP address belongs to Trustwave Holdings and is part of their TrustKeeper PCI Vulnerability Scan as part of your PCI DSS compliance services from Trustwave. TrustWave hanldes PCI Compliance for Wells Fargo Merchant Account holders. Incoming search terms:trustwave ip ranges204 13 201 0ip range 0/26IP [...]
Posted in Development |
By Ed Reckers on August 12, 2010
Sometimes you’ll need to update post and page urls when going from a development environment to production, or more simply when going from one domain to the next. If you have many (10s to 100s), and you will have that if the WP snapshots have been run, then you’ll want to update them all easily. [...]
Posted in Development |
By Ed Reckers on June 14, 2010
I recently was on the search for a few examples of active MySQL configuration files (my.cnf). It’s always nice to see someone else’s production version of a configuration file and during this search I realized that not a lot of examples of MySQL config files were to be found on the internet. The first place [...]
Posted in Development |