Announcing Ubercart Ticket - Ticketing/Customer Service module for Drupal
Submitted by Greg on Wed, 10/21/2009 - 8:13pm
We've been working on this for a while now, and I just released the first beta over at http://www.drupal.org.
Here's a brief rundown:
Features:
* Email integration - Ubercart Ticket can be configured to collect emails from any number of email addresses and creates tickets from the content of the email
* Integration with Ubercart orders - an order pane is created on every order that lists all tickets for that order along with a link to create a new ticket with that order's information
Here's the code for Cybersource SOAP Refunds
Submitted by Greg on Sat, 05/23/2009 - 6:04pm
This is a bit of the code I was discussing earlier for refunds through Cybersource. It only works with SOAP for now so keep that in mind. You're free to modify the code, but if you do something interesting, please post it back here in the comments! :)
Download the Cybersource Refund SOAP module Here
Here's the writeup from the module file:
// A quick and dirty module for processing // Cybersource SOAP refunds. // // Author: Greg Eisenman // Date: 5/23/09 //
Views 2 and Drupal - Adding a custom field to the views query
Submitted by Greg on Tue, 05/12/2009 - 2:03pm
Here's a quick rundown of how to add a field to Views 2 in Drupal.
It's fairly straightforward, but just in case someone is having difficulty this example should help you along. I'll try my best to explain what is happening.
Let's say for a moment you have some data in a table that pertains to a node. In this example, I'll have an item price in a table called views_price (this table was set up for expressly this purpose) which is keyed on a nid.
So basically we have this:
CREATE TABLE IF NOT EXISTS `views_price` ( `nid` int(11) NOT NULL, `price` float NOT NULL,
PSN connection constantly dropping? Have a Linksys router and a PS3? Here's a solution.
Submitted by Greg on Wed, 03/04/2009 - 11:06am
After recently purchasing a Playstation 3, I quickly realized that something was awry in my network configuration. PSN would constantly drop with a network error, I had constant error notifications relating to my media servers, and horrible download speeds. All my other devices work great (multiple PCs, both wired and wireless, Xbox Live, etc.)
At first I thought it was some kind of wireless interference, so I ran my Ethernet cable to the PS3 and switched my network setup around from wireless to wired.
No luck.
Ubercart Cybersource Module - Refunds (SOAP)
Submitted by Greg on Thu, 02/12/2009 - 10:00am
Just throwing this out there to gauge demand...we just created a module (for 98main.com) which processes refunds for Cybersource transactions created through Ubercart. We don't use the Cybersource module for Ubercart because at the time we set up the site I believe SOAP was either not integrated into that module or perhaps it didn't do specifically what we needed.