Jump to content

mohrt

Members
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Location
    Lincoln NE
  • Activity
    Developer

Recent Profile Visitors

352 profile views

mohrt's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. We are using Paypal module 1.3.8, I don't see a way to do a simple manual partial refund. On our website we often need to refund part of the shipping cost for International orders. I don't see a way to do this. Additionally, it doesn't look like any of the existing refund options refund the Paypal account. Am I understanding this correctly? If so, why not?
  2. I was able to fix by just removing the setting: @curl_setopt($ch, CURLOPT_SSLVERSION, 3); CURL MANUAL:
  3. Hi, We are trying to figure out how to add a custom shipping rule for a specific product/carrier. Namely, shipping upcharges. For example, we have products that require an additional $5 fee for priority shipping and additional $10 fee for International. How do we go about applying this? We have thought of a few ideas: 1) Create a custom carrier for each possible upcharge amount. Although this is technically possible, it is not very manageable. We would simply like to add upcharges based on product/carrier choice, not create new carriers for every combination. 2) Create a cart rule. This almost works, if cart rules would allow negative values. Cart rules seem to only apply to discounts, not additional charges. 3) Buy a module. We have not found a module that covers this requirement. Ideas?
  4. I solved it, the self::$definition() needs to go before parent::__construct()
  5. Hi, I added a custom field to the orders table. It shows up fine in the web services, however I can't get an update to work. Here are the pertinent parts of the orders override: class Order extends OrderCore { public $total_override; public function __construct($id = null, $id_lang = null) { parent::__construct($id, $id_lang); self::$definition['fields']['total_override'] = array('type' => self::TYPE_FLOAT); $this->webserviceParameters['fields']['total_override'] = array(); } } I try to update via web services (like I do any other field), no noticeable errors, but the new value does not get populated in the db. Am I missing something in the override?
  6. I had the same issue with updating a product through PSWebServiceLibrary.php, here was the problem: <message><![CDATA[parameter "position_in_category" not writable. Please remove this attribute of this XML]]></message> If you enable debug on the library it gives you the HTTP responses required to track down the issue.
  7. We has this problem and it was solved by setting several things. We are using fpm-php and nginx. php.ini: max_execution_time = 0 # sets script execution time to unlimited max_input_time = -1 # sets input request processing time to unlimited fpm-php (www.conf): request_terminate_timeout = 0 # keeps fpm-php from overriding max_execution_time Make sure you restart fpm-php.
×
×
  • Create New...