Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

Shipstation?

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #21  
Old 09-11-2015, 09:47 AM
 
TA TA is offline
 

eXpert
  
Join Date: Apr 2006
Posts: 303
 

Default Re: Shipstation?

Shipstation has discontinued Endicia integration in favor of Stamps.com.

I wish TrueShip or other shipping modules had an X-Cart integration with Endicia.
__________________
v4.7.12
v5.4.x (In Dev)
Reply With Quote
  #22  
Old 03-27-2018, 03:58 PM
 
vulcan-works vulcan-works is offline
 

Senior Member
  
Join Date: Feb 2004
Posts: 143
 

Default Re: Shipstation?

Is the xcart connector going to be updated for 4.7.9?
There were major changes made to tracking in 4.7.6 and orders are no longer being updated.

Errors being generated:
Logged as :
SQL query : UPDATE xcart_orders SET status='C', tracking='XXXXXXXXXX' WHERE orderid='19981'
Error code : 1054
Description : Unknown column 'tracking' in 'field list'
__________________
X-cart--4.7.12

vulcanworks.net
Reply With Quote
  #23  
Old 03-28-2018, 10:01 AM
 
vulcan-works vulcan-works is offline
 

Senior Member
  
Join Date: Feb 2004
Posts: 143
 

Default Re: Shipstation?

Figured out what needed to be changed to work in 4.7.6+ in case anybody else runs into this.
Replace:
Code:
db_query("UPDATE xcart_orders SET status='C', tracking='$comments' WHERE orderid='". $result_ordercheck['orderid'] ."'");
WITH:
Code:
db_query("UPDATE xcart_orders SET status='C' WHERE orderid='". $result_ordercheck['orderid'] ."'"); db_query("INSERT INTO xcart_order_tracking_numbers (orderid, tracking) VALUES ('". $result_ordercheck['orderid'] ."', '$comments')");
__________________
X-cart--4.7.12

vulcanworks.net
Reply With Quote

The following 2 users thank vulcan-works for this useful post:
christindall (03-29-2018), elmirage001 (03-29-2018)
  #24  
Old 04-11-2018, 07:32 AM
 
shipstation2018 shipstation2018 is offline
    
Join Date: Apr 2018
Posts: 1
 

Default Re: Shipstation?

Hello!

The X-Cart 4 connector for ShipStation has been updated to support the most recent release of 4.7.9!



Cheers,

ShipStation
__________________
shipstation
Reply With Quote
  #25  
Old 04-17-2019, 10:03 AM
 
keystone keystone is offline
 

X-Adept
  
Join Date: Jul 2006
Location: USA
Posts: 787
 

Default Re: Shipstation?

I'm using shipstation, it works great. However I was wondering if anyone who had different membership levels has been able to have that info imported into shipstation? It would be great to be able to filter orders and shipping reports based on membership lever, ie wholesale vs. retail customers. Shipstation says that currently x-cart doesn't submit that info so they can't set up a filter for it.

Anyone else try this?
__________________
www.uscandleco.com - X-Cart Version 4.7.11 Gold Plus php7.3
mods:
reCaptcha
running on UNIX

www.keystonecandle.com X-Cart Gold Plus - Version 4.7.11 php7.2
mods:
reCaptcha
cdseo pro
running on UNIX
Reply With Quote
  #26  
Old 04-19-2019, 07:09 AM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: Shipstation?

Quote:
Originally Posted by keystone
I'm using shipstation, it works great. However I was wondering if anyone who had different membership levels has been able to have that info imported into shipstation? It would be great to be able to filter orders and shipping reports based on membership lever, ie wholesale vs. retail customers. Shipstation says that currently x-cart doesn't submit that info so they can't set up a filter for it.

Anyone else try this?

Hello,

I have prepared a patch according to the man
https://help.shipstation.com/hc/en-us/articles/360025856192

Thank you.
Attached Files
File Type: diff add_membership_as_custom_field.diff (578 Bytes, 2 views)
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #27  
Old 04-19-2019, 10:52 AM
 
keystone keystone is offline
 

X-Adept
  
Join Date: Jul 2006
Location: USA
Posts: 787
 

Default Re: Shipstation?

Hi AIM,
Thanks for the patch, I installed it however it doesn't seem to be passing the variable membership or membershipid. It does pull Membershipid- into custom field 2 but after the - it is blank and custom field 1 is also blank on all the orders. Any ideas? When I pull the membership info into my invoices I used $_userinfo.membership could that be used instead maybe?
__________________
www.uscandleco.com - X-Cart Version 4.7.11 Gold Plus php7.3
mods:
reCaptcha
running on UNIX

www.keystonecandle.com X-Cart Gold Plus - Version 4.7.11 php7.2
mods:
reCaptcha
cdseo pro
running on UNIX
Reply With Quote
  #28  
Old 04-19-2019, 01:01 PM
 
keystone keystone is offline
 

X-Adept
  
Join Date: Jul 2006
Location: USA
Posts: 787
 

Default Re: Shipstation?

I got it, it should be
Code:
AddFieldToXML("CustomField1", $order['order']['membership']); AddFieldToXML("CustomField2", 'Membershipid-' . $order['order']['membershipid']);
__________________
www.uscandleco.com - X-Cart Version 4.7.11 Gold Plus php7.3
mods:
reCaptcha
running on UNIX

www.keystonecandle.com X-Cart Gold Plus - Version 4.7.11 php7.2
mods:
reCaptcha
cdseo pro
running on UNIX
Reply With Quote
  #29  
Old 04-21-2019, 08:26 PM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: Shipstation?

Hello,

Thank you for the fix.

I have updated my post.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #30  
Old 10-31-2019, 09:24 AM
 
keystone keystone is offline
 

X-Adept
  
Join Date: Jul 2006
Location: USA
Posts: 787
 

Default Re: Shipstation?

I just upgraded my site to php7.3 x-cart version 4.7.11 and am having an issue with Shipstation not posting back the tracking info. I get an error
Quote:
Warning: A non-numeric value encountered in /home/uscandle/public_html.dev/include/func/func.logging.php on line 534
Here is the function in question from func.logging.php...
Code:
function func_array_compare($orig, $new) { $result = array ( 'removed' => false, 'added' => false, 'delta' => false, 'changed' => false ); $keys = array(); if (is_array($orig)) $keys = array_keys($orig); if (is_array($new)) $keys = array_merge($keys, array_keys($new)); $keys = array_unique($keys); foreach ($keys as $key) { $in_orig = isset($orig[$key]); $in_new = isset($new[$key]); if ($in_orig && !$in_new) { $result['removed'][$key] = $orig[$key]; } elseif (!$in_orig && $in_new) { $result['added'][$key] = $new[$key]; } else { // check for changed values if (!is_array($new[$key])) { if (!strcmp((string)$orig[$key], (string)$new[$key])) { continue; } $is_numeric = preg_match('!^((\d+)|(\d+\.\d+))$!S', $new[$key]); if ($is_numeric) { $result['delta'][$key] = $new[$key] - $orig[$key]; <------------- Line 534 } $result['changed'][$key] = $new[$key]; } else { $tmp = func_array_compare($orig[$key],$new[$key]); foreach ($tmp as $tmp_key=>$tmp_value) { if ($tmp_value === false) continue; $result[$tmp_key][$key] = $tmp_value; } } } } // remove not used arrays foreach ($result as $k=>$v) { if ($v === false) unset($result[$k]); } return $result; }

and then I also get this warning as well...

Quote:
Warning: ini_set(): Headers already sent. You cannot change the session module's ini settings at this time in /home/uscandle/public_html/include/sessions.php on line 75

here is the code for sessions.php
Code:
* PHP build-in sessions tuning (for type '1' & '2') */ // PHP 4.3.0 and higher allow to turn off trans-sid using this command: ini_set('url_rewriter.tags',''); // Let's garbage collection will occurs more frequently ini_set('session.gc_probability',90); <-------------------Line 75 ini_set('session.gc_divisor',100); // for PHP >= 4.3.0 ini_set('session.use_cookies', false);

Any idea how to fix these errors?

Thanks.
__________________
www.uscandleco.com - X-Cart Version 4.7.11 Gold Plus php7.3
mods:
reCaptcha
running on UNIX

www.keystonecandle.com X-Cart Gold Plus - Version 4.7.11 php7.2
mods:
reCaptcha
cdseo pro
running on UNIX
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 07:16 AM.

   

 
X-Cart forums © 2001-2020