Monthly Archive: June 2014

Oscommerce 2.3 Admin customers merge errors

Warning: Array_merge() [function.array-merge]: Argument #1 Is Not An Array In public_html/admin/customers.php On Line 733 Edit file admin/customers.php Find these lines: $customer_info = array_merge($country, $info, $reviews); $cInfo_array = array_merge($customers, $customer_info); and change them to: $customer_info...

Xquery Namespaces Tips and tools Mini guide

Namespace declarations : example of catalog (cat) and products (prod) : <cat:catalog xmlns:cat=”http://datypic.com/cat” xmlns:prod=”http://datypic.com/prod”> <cat:number>1446</cat:number> <prod:product> <prod:number>565</prod:number> <prod:name prod:language=”en”>Sun Hat red</prod:name> </prod:product> </cat:catalog> Xqurery and Namespaces declarations in xquery file : How to Declare...