Dashboard/Admin CSS broken – Godaddy free hosting install
Thursday, April 1st, 2010 Blog by ASRthis code should help repair the broken css issue:
Replace line 619 in function _print_scripts():
echo “\n”;
with:
// **********************************************
// Clean for godaddy free hosting
$st_data = file_get_contents( $src );
$st_data = substr( $st_data, 0, strrpos( $st_data, ” ) );
echo “\n”;
// **********************************************
and replace line 686 in function print_admin_styles():
echo ”
\n”;
with:
// **********************************************
// Clean for godaddy free hosting
$st_data = file_get_contents( $href );
$st_data = substr( $st_data, 0, strrpos( $st_data, ” ) );
echo ”
\n”;
// **********************************************
Note to self:
Don’t install WordPress to GoDaddy free hosting account. It is more of a headache than anything. Although, it is possible to hide the ads, the code that GoDaddy uses still breaks other code. It is just not worth the effort. 12+ hours wasted.
Yahoo! Store Shipping Module
Thursday, April 1st, 2010 Blog by ASRYahoo! store allows real-time interface to external tax and shipping calculation system.
If you get a Error 500 and cant get the module to work, try adding this line:
# Item-Id-N, -Code-N, -Quantity-N, -Unit-Price-N, -Description-N, -Url-N,
# For values of N from 1 to Item-Count, the relevant attributes of each item are given.
# This script contains code to separate these into an @items array.
# Code is from the “Code” field when editing the item, typically an SKU or ISBN
# Unit-Price takes any quantity pricing into account
#
require 5.001;
use strict;
use CGI qw(:standard);
my $o;
read(STDIN,$o,$ENV{‘CONTENT_LENGTH’});
adding the line in bold may help.
Internal Server Error
Thursday, April 1st, 2010 Blog by ASRThis could be caused by php files missing from the hosting server located in the /cgi-bin directory.
Files needed:
php-cgi
php4-cgi
php5-cgi
test-cgi



