Netsuite PHPToolkit Web Service - Create Customer Tutorial

May
24

Netsuite provides a soap-based web service interface called SuiteTalk to allow 3rd-party applications to interface with Netsuite ERP system. Netsuite also provides Toolkits written in PHP, .NET and Java programming languages, which will make Netsuite integration easier. We'll use PHPToolkit to create a customer record in Netsuite.

Posted By admin read more

How to upgrade osCommerce 2.2MS2a from PHP5 to PHP5.3?

May
21

Here is the files you'll need to update your osCommerce shop. If you made custom changes to your store, you'll have to make the changes manually.

http://www.oscommerce.com/community/contributions,7394

Chances are likely that you may have been running your osComerce shop on MySQL 4.x and your new server is on MySQL 5. There are problems running osCommerce 2.2MS2a on MySQL 5, and the link below will take you to a solution.

Posted By admin read more

How to install QPDF on Centos 6?

May
15

I have been working with PDF files for many years, and use this document format for exchanging documents with clients, friends and various people. I prefer PDF over MS Word due to its portability and non-commercial status. There are various tools available to produce PDFs, split & merge, password protect permissions and PDF documents, and transform from one version to another.

Posted By admin read more

How to setup login_info on Netsuite web service?

May
12

Netsuite brands its web service integration services as SuiteTalk, and SuiteTalk allows third-party systems to communicate with NetSuite via the SOAP based APIs. To get started with Netsuite Webservice, you'll need a Netsuite account that you can use to communicate with Netsuite. You may sign up with the SuiteCloud Developer Network (SDN) as a Community member, and get a free Netsuite account for exploitation. It may take a day or two to get your account approved.

Posted By admin read more

How to share a folder between the VMware host and guest?

May
01

If you need to share a holder between your Windows host and Linux guest, you may use native VMware folder sharing available on VMware Workstation or VMware Player. To allow folder sharing, you must install VMware Tools on the guest operating system. I've used a VMware Player to demonstrate the configuration options, but WMware Workstation 8 will follow the similar steps.

Prerequisites
■ VMware Tools installer is written in Perl, verify that Perl is installed in the guest operating system.

1. Go to Virtual Machine -> Virtual Machine Settings ....

Posted By admin read more

Malware detected on website

Apr
27

One of the server we manage has been compromised, and hosting malware according to Kaspersky Anti-Virus software. The site uses a number of open-source applications such as Wordpress, Gnuboard and phpLinkDirectory. We initially thought it would be either the .htaccess or base64_encode exploit, but after close examination, we found that plain javascript snippet was inserted into one of the Gnuboard include file (bbs/visit_insert.inc.php).

Posted By admin read more

What is the difference between "Primary Key" and "Unique Key"?

Apr
24

I've had a chance to with a Postgres database and came across a table with two primary keys. This intrigue me to lookup a definition of primary and unique key. I always thought there will only be one primary key in a table, and the values have to be unique. But, what I saw in the PostgreSQL v8.1.23 was something otherwise. It allowed duplicate entries, and also allowed multiple primary keys in a table. Is this possible? Yes, it's called composite Primary Keys.

Posted By admin read more

Pgsql Command-line Tools

Apr
23

Although I have been using pgsql for a number of years, every time I wanted to do something I do have to look up a reference as I'm not a regular user of pgsql. Here are a few command-line references which may be helpful to beginners.

To make a backup of a postgres database:

Login as a database user with read access to the db, and run the following command.

%> pg_dump -U {username} {database} > {database.sql}

To restore a backup from a SQL file,

%> psql -U {username} {database} < {database.sql}

To create a database

Posted By admin read more

How to vertical-align input box and label text?

Apr
19

Vertically aligning input box and the label that goes with it is quiet challenging especially when you have vertically align them on all browsers such as IE, Firefox, Chrome, Safari and Opera; and on all different versions on all available OSes. I had to work with multiple checkboxes in a single row with label attached to each input checkbox, and when I thought I've got it done; it worked all but on a Chrome running in Mac. This made me rework the whole thing again from scratch using display table CSS property.

Posted By admin read more

How to add attachment with the Zend_Mail?

Apr
19

Files can be attached to an email using Zend_Mail->createAttachment() method. The createAttachment() method requires a content of the attachment, and 3 optional arguments. Please note that it takes file content as an argument, not the name of the file.

Posted By admin read more

Pages

Subscribe to Web Traffic Exchange RSS