WordPress-Based Shopatron Turnkey Stores

GammaFX is proud to announce a release of a new solution for Shopatron-enabled Manufacturers.   Our WordPress-based Shopatron Turnkey Store solution combines the ease of use of the leading content management system with retail-friendly Shopatron eCommerce. As a part of the solution GammaFX offers: Industry standard online store powered by WordPress and featuring a product catalog (with options), shopping cart and Shopatron checkout Integration of checkout feedback loop populating transactional data in WordPress after customer checks out with Shopatron Import of all current Shopatron product data into WordPress for current Shopatron OnBlocks users Coordination of checkout URL, masking and analytics setup with Shopatron Call  us  today to let one of our Shopatron Integration Specialists walk you through our entire array of Shopatron related services. See it in...

Read More »

WordPress and iFrames

iFrames are coming!  As you may have already noticed, your favorite video sharing websites like Vimeo & YouTube had begun introducing iFrame based syndication of their embeddable players.  While this offers a variety of new features, like iPad support for embedded videos, it might be very challenging for WordPress bloggers to insert iFrame-based code into their blog posts.  By default, such code would be filtered out by TinyMCE – WordPress’ WYSIWYG (or Rich Text) editor. Fear not, the solution is simple enough.  Just add the following code to the functions.php file of your template, and voilà – life is beautiful once more. function add_iframe($initArray) { $initArray['extended_valid_elements'] = "iframe[id|class|title|style|align|frameborder|height|longdesc|marginheight|marginwidth|name|scrolling|src|width]"; return $initArray; } add_filter('tiny_mce_before_init',...

Read More »

AstronomyOutreachFoundation.org

GammaFX Design Studio developed this website at the request of the Astronomy Outreach Foundation. AOF is a non-profit organization created to stimulate greater public interest in astronomy and to assist everyone in becoming more engaged in activities that allow them to learn more about the Universe.

Read More »

WordPress “CGI Error” Fix

Software WordPress 2.3.3   Server Environment (shared) Windows 2003 Server IIS 6 PHP 5.2.5 (CGI/FastCGI) MySQL Provider: Crystaltech.com Problem Description The following CGI error appears after enabling “Date and name based” permalink structure: CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. Solution Assuming that you do not want to change back to default permalink structure and loose your pretty URLs try the following fixes Log Permissions Fix: Open file /wp-includes/wp-db.php in your favourite edito Around line 163 find the following code: error_log($error_str, 0) Replace it with following code: // begin GamaFX.com CGI ERROR Fix   //ORIGINAL CODE: error_log($error_str, 0); // end GamaFX.com CGI ERROR Fix Upload the file and retest the website.  If the problem presists, proceed to the next fix DB File Replacement Method Replace the entire content of /wp-includes/wp-db.php with the code contained in this wp-db.php.txt file Upload the file and retest the website.  If the problem presists, proceed to the next fix Plugin Fix Redirect your custom 404 error page to index.php If you are hosted with Crystaltech Hosting, please see the screenshot Download the WordPress – Remove Index.php from Permalinks in IIS Plugin (scroll down), and install it into wordpress (upload to /wp-content/plugins/ folder) Remove index.php from your custom permalink structure by going to Options > Permalinks Activate the “Remove Index.php” plugin from WordPress control panel Plugins...

Read More »

WordPress “Upload.php Error” Fix

Software WordPress 2.3.3   Server Environment Windows 2003 Server IIS 6 PHP 5.2.5 MySQL 5.0.51a Problem Description Symptom: Clicking on Manage > Uploads kicks users back to admin dashboard Cause: All of the links within the upload.php do not reference the file upload.php » http://www.domain.com/wp-admin/?query=string&for=upload&is=here Solution Open /wp-admin/upload.php file in your favourite editor Around line 90 find the following code: $_href = clean_url( $href); Replace it with following code: // begin GamaFX.com upload.php Fix   //ORIGINAL CODE: $_href = clean_url( $href);   $BH_temp = explode(“?”, clean_url( $href ));   $href = ‘upload.php?’ . $BH_temp[1];   $_href = $href; // end GamaFX.com upload.php Fix Around line 104 find the following code: ‘base’ => add_query_arg( ‘paged’, ‘%#%’ ), Replace it with following code: // begin GamaFX.com upload.php Fix   //ORIGINAL CODE: ‘base’ => add_query_arg( ‘paged’, ‘%#%’ ),   ‘base’ => ‘upload.php?style=inline&tab=browse-all&paged=%#%’, // end GamaFX.com upload.php...

Read More »