0 utilizadores on-line |
0 Convidados e 0 Registados

Pesquisa avançada

1044 resultados da pesquisa

Página 8 de  11 Páginas

  • Products: How to edit products via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_edit.php?action=update_products   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description products_id JSON Product IDOnly number is requiredFormat: int(11)* FIELD REQUIRED products_status JSON 1 AVAILABLE or 0 = NOT AVAILABLE or 2 = PENDINGOnly number is requiredFormat: tinyint(1)* FIELD REQUIRED products_model JSON Example: CK2587XL (Product ...
  • Products: How to edit the quantity of products via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_edit.php?action=update_products_quantity   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description products_id JSON Product IDOnly number is requiredFormat: int(11)* FIELD REQUIRED products_quantity JSON Example: 250Only number is requiredFormat: int(4)* FIELD REQUIRED PHP Sample   // sample edit products quantity $url = $domain_url . '/api_products_edit.php?action=update_products_quantity'; $data = ...
  • Products: How to edit the price of products via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_edit.php?action=update_products_price   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description products_id JSON Product IDOnly number is requiredFormat: int(11)* FIELD REQUIRED products_price JSON Example: 1542.56 (Do not use , "comma" only . "point" to indicate decimals)Format: decimal(15,4)* FIELD REQUIRED PHP Sample // sample ...
  • Products: How to get the list of manufacturers registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=manufacturers   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample manufacturers list $url = $domain_url . '/api_products_others.php?action=manufacturers'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of filters registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=filter1   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample filter1 list $url = $domain_url . '/api_products_others.php?usuario1='.$usuario1.'&senha1='.$senha1.'&action=filter1'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to obtain the list of sales units registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=uv   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample: // sample uv list $url = $domain_url . '/api_products_others.php?action=uv'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of packages registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=pack   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample: // sample pack list $url = $domain_url . '/api_products_others.php?action=pack'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of NCMs registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=ncm   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample ncm list $url = $domain_url . '/api_products_others.php?action=ncm'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of CFOPs registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=cfop   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample cfop list $url = $domain_url . '/api_products_others.php?action=cfop'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of CSTs registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=cst   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample cst list $url = $domain_url . '/api_products_others.php?action=cst'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to get the list of ORIGEM registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=origem   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample origem list $url = $domain_url . '/api_products_others.php?action=origem'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to obtain the list of Suppliers registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=suppliers   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample suppliers list $url = $domain_url . '/api_products_others.php?action=suppliers'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • Products: How to add manufacturers via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_manufacturers   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description manufacturers_name JSON Main name of manufacturerFormat: varchar(32)* FIELD REQUIRED manufacturers_banner_status JSON 1 = ACTIVE or 0 = INACTIVEOnly number is requiredFormat: int(1)* FIELD REQUIRED manufacturers_description JSON Full description of manufacturerFormat: text manufacturers_url JSON URL link of manufacturerExample: ...
  • Products: How to edit manufacturers via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=edit_manufacturers   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description manufacturers_id JSON ID number of manufacturer Format: int(11)* FIELD REQUIRED manufacturers_name JSON Main name of manufacturerFormat: varchar(32)* FIELD REQUIRED manufacturers_banner_status JSON 1 = ACTIVE or 0 = INACTIVEOnly number is requiredFormat: int(1)* FIELD REQUIRED manufacturers_description JSON Full ...
  • Products: How to add Sales Units via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_uv   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description uv_name_text JSON Main name of unity of saleFormat: text* FIELD REQUIRED PHP Sample // sample add uv $url = $domain_url . '/api_products_others.php?action=add_uv'; $data = array("uv_name_text" => "Main name of unity ...
  • Products: How to edit Sales Units via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=edit_uv   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description uv_id JSON ID of unity of saleFormat: int(11)* FIELD REQUIRED uv_name_text JSON Main name of unity of saleFormat: text* FIELD REQUIRED PHP Sample   // sample edit uv $url = $domain_url . '/api_products_others.php?action=edit_uv'; $data ...
  • Products: How to add Packages via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_pack   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description name JSON Main name of packFormat: varchar(255)* FIELD REQUIRED comprimento JSON Length of packOnly number is requiredExample: 16Format: int(4)* FIELD REQUIRED altura JSON Height of packOnly number is requiredExample: 11Format: int(4)* FIELD REQUIRED largura JSON Width of packOnly number ...
  • Products: How to edit Packages via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=edit_pack   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   Parameter Format Description pack_id JSON ID of pack Format: int(11)* FIELD REQUIRED name JSON Main name of packFormat: varchar(255)* FIELD REQUIRED comprimento JSON Length of packOnly number is requiredExample: 16Format: int(4)* FIELD REQUIRED altura JSON Height of packOnly number is requiredExample: ...
  • Products: How to add NCM via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_ncm Parameter Format Description ncm_name_text JSON Main name of ncmFormat: varchar(255)* FIELD REQUIRED ncm_code JSON Code of ncmFormat: varchar(255)* FIELD REQUIRED PHP Sample   // sample add ncm $url = $domain_url . '/api_products_others.php?action=add_ncm'; $data = array("ncm_name_text" => "Main name of ...
  • Products: How to edit NCM via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=edit_ncm Parameter Format Description ncm_id JSON ID of ncmFormat: int(11)* FIELD REQUIRED ncm_name_text JSON Main name of ncmFormat: varchar(255)* FIELD REQUIRED ncm_code JSON Code of ncmFormat: varchar(255)* FIELD REQUIRED PHP Sample   // sample edit ncm $url = $domain_url . '/api_products_others.php?action=edit_ncm'; $data = array("ncm_id" ...
  • Products: How to add CFOP via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_cfop Parameter Format Description cfop_name_text JSON Main name of cfopFormat: varchar(255)* FIELD REQUIRED cfop_code JSON Code of cfopFormat: varchar(255)* FIELD REQUIRED PHP Sample   // sample add cfop $url = $domain_url . '/api_products_others.php?action=add_cfop'; $data = array("cfop_name_text" => "Main name of ...
  • Products: How to edit CFOP via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_cfop Parameter Format Description cfop_id JSON ID of cfopFormat: int(11)* FIELD REQUIRED cfop_name_text JSON Main name of cfopFormat: varchar(255)* FIELD REQUIRED cfop_code JSON Code of cfopFormat: varchar(255)* FIELD REQUIRED PHP Sample   // sample edit cfop $url = $domain_url . '/api_products_others.php?action=edit_cfop'; $data = array("cfop_id" ...
  • Products: How to add Suppliers via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=add_suppliers Parameter Format Description suppliers_group_name JSON Main name of suppliersFormat: varchar(255)* FIELD REQUIRED suppliers_description JSON Description of suppliersFormat: text* FIELD REQUIRED  PHP Sample // sample add suppliers $url = $domain_url . '/api_products_others.php?action=add_suppliers'; $data = array("suppliers_group_name" => "Main name of ...
  • Products: How to edit Suppliers via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_products_others.php?action=edit_suppliers Parameter Format Description suppliers_id JSON ID of suppliersFormat: int(11)* FIELD REQUIRED suppliers_group_name JSON Main name of suppliersFormat: varchar(255)* FIELD REQUIRED suppliers_description JSON Description of suppliersFormat: text* FIELD REQUIRED  PHP Sample   // sample edit suppliers $url = $domain_url . '/api_products_others.php?action=edit_suppliers'; $data = array("suppliers_id" ...
  • Orders: How to get the list of Orders registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_orders.php?cID=&postalcode=&cName=&email=&status=&payment=&assinatura_recorrente=&cancel_assinatura_recorrente=&date_from=&date_from=&action=orders_list Parameter Format Description cID GET Customer IdOnly number is requiredCheck the API to get the Customer Id postalcode GET Post code of the shipping address or customer addressOnly number is requiredExample: 04267000 cName GET Customer name email GET E-mail ...
  • Orders: How to get the list the number of a request via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_orders.php?oID=ORDERNUMBER&action=orders_id Parameter Format Description oID GET Number of the Order IDOnly number is requiredFormat: bigint(11)* FIELD REQUIRED PHP Sample   // sample list orders id $add_query_order = ''; $oID = '12302006081624'; if ($oID != '') { $add_query_order .= '&oID='.$oID; } $url ...
  • Orders: How to edit the request of a number via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_orders.php?action=update_orders Parameter Format Description oID JSON Order IDOnly number is requiredCheck the API to get the Order NumberFormat: bigint(11)* FIELD REQUIRED status JSON Use the API to list the status and get name and ...
  • Customers: How to obtain the list of registered Customers via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_customers.php?cID=&search=&date_from=&date_to=&status=&customers_groups_id=&customers_language=&action=customers Parameter Format Description search GET search by customer name, last name or email addressOnly text is required date_from GET Date from for filter ordersExample: DD/MM/YYYY date_to GET Date to for filter ordersExample: DD/MM/YYYY status GET Status for filter orders1 ...
  • Customers: How to get list the number of a client via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_customers.php?cID=CUSTOMERNUMBER&action=customers_id Parameter Format Description cID GET Number of the Customer IDOnly number is requiredFormat: int(11)* FIELD REQUIRED PHP Sample // sample customers id list $add_query_order = ''; $cID = ''; if ($cID != '') { $add_query_order .= '&cID='.$cID; } $url ...
  • Customers: How to add clients via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_customers.php?action=add_customers Parameter Format Description customers_firstname JSON Customers FirstnameOnly text is requiredFormat: varchar(32)* FIELD REQUIRED customers_lastname JSON Customers LastnameOnly text is requiredFormat: varchar(32)* FIELD REQUIRED customers_email_address JSON E-mail addressExample: name@site.com.brFormat: varchar(96)* FIELD REQUIRED customers_password JSON PasswordMinimum: 8 charactersFormat: varchar(40)* FIELD REQUIRED customers_telephone JSON TelephoneExample: (11) 3230-6255Format: varchar(32)* FIELD ...
  • Customers: How to obtain the list of States of the countries via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_customers.php?country_id=COUNTRY_ID&action=customers_state Parameter Format Description country_id GET Number of the Country IDCheck the API to get the list of countryOnly number is requiredFormat: int(11)* FIELD REQUIRED PHP Sample: // sample customers state list $add_query_order = ...
  • Categories: How to add Categories or Sub-Categories via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_categories.php?action=add_categories Parameter Format Description categories_name JSON Categorie or Sub-Categorie NameFormat: varchar(255)* FIELD REQUIRED categories_status JSON 1 = ACTIVE or 0 = INACTIVEOnly number is requiredFormat: int(1)* FIELD REQUIRED main_category JSON Main Category of Sub-CategoryOnly number is requiredCheck the ...
  • Categories: How to edit Categories or Sub-Categories via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_categories.php?action=edit_categories Parameter Format Description categories_id JSON Categorie or Sub-Categorie IDOnly number is requiredFormat: int(11)* FIELD REQUIRED categories_name JSON Categorie or Sub-Categorie NameFormat: varchar(255)* FIELD REQUIRED categories_status JSON 1 = ACTIVE or 0 = INACTIVEOnly number is requiredFormat: int(1)* FIELD ...
  • Produtos: Como obter a lista opções de atributos e valores para produtos ?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_products_others.php?action=list_products_options_values &products_id=   Header Parameter Format Usuario1 base64_encode() Senha1 base64_encode()   PHP Sample:   // sample list products options and values $url = $domain_url . '/api_products_others.php?action=list_products_options_values'; or ...
  • Categories: How to edit Category or Sub-Category Status via API?
    Conteúdo: POST: http://www.nomedoseusite.com.br/api_categories.php?action=edit_status_categories Parameter Format Description categories_id JSON Categorie or Sub-Categorie IDOnly number is requiredFormat: int(11)* FIELD REQUIRED categories_status JSON 1 = ACTIVE or 0 = INACTIVEOnly number is requiredFormat: int(1)* FIELD REQUIRED PHP Sample   // sample edit status ...
  • Discount Coupons: How to create / manage discount coupon?
    Conteúdo: 01) Access the Control Panel 02) After login click on Customers >> Discount Coupons 03) Click on the NEW CUPOM button The Code will be generated automatically in ...
  • Catálogo: Importar por arquivo API SquidFacil Novos Produtos ou Atualizar / Sincronização de Estoque de Produtos
    Conteúdo: 01) Crie sua conta no SquidFacil como Lojista ou Parceiro, para mais informações, acesse: http://www.squidfacil.com.br/ Faça o download do catálogo em Catálogo >> Exportar Produtos (CSV)02) ...
  • SammyDress: Import by SammyDress.com CSV file New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your DropShipping account at SammyDress as a Merchant or Partner, for more information, visit: http://www.sammydress.com/m-article-id-20.htm After you get the inventory file with the support: ...
  • Cnova Marketplace: How to manage and import multiple Cnova Marketplace customer orders?
    Conteúdo: After setting up the Cnova Marketplace in the Control Panel >> Settings >> Cnova 01) Access the Control Panel 02) After login click on Catalog >> Cnova 03) ...
  • Cnova Marketplace: How to set up automatic update of several products in Cnova Marketplace from the latest
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> Cnova Select Enable Cnova Marketplace Auto Products Update Change to true and click the UPDATE button - ...
  • B2W Marketplace: How to manage and import multiple B2W Marketplace customer orders?
    Conteúdo: After configuring the B2W Marketplace in the Control Panel >> Settings >> B2W 01) Access the Control Panel 02) After login click on Catalog >> B2W 03) After ...
  • B2W Marketplace: How do I configure automatic update of multiple products in the B2W Marketplace of the
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> B2W Select Enable B2W Marketplace Auto Products Update Change to true and click the UPDATE button - ...
  • NETSHOES Marketplace: How to Manage and import multiple orders from NETSHOES Marketplace customers?
    Conteúdo: After setting up the NETSHOES Marketplace in the Control Panel >> Settings >> NETSHOES 01) Access the Control Panel 02) After login click on Catalog >> NETSHOES 03) ...
  • NETSHOES Marketplace: How do I configure automatic update of multiple products in the NETSHOES Marketplace of the
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> NETSHOES Select Enable NETSHOES Marketplace Auto Products Update Change to true and click the UPDATE button - ...
  • Preferences: Change Style
    Conteúdo: This option allows you to switch between a number of visual styles for how cPanel, and its options, are viewed. To adopt one, among the many ...
  • Preferences: Change Password
    Conteúdo: Through this option you can change the main password of your account.It is important to make sure you close all existing windows that you have ...
  • Logs: Webalizer
    Conteúdo: Webalizer is a complex system of statistics that produces a variety of tables and graphs on who visited your site. On the main page there ...
  • Domains: How to Create a Subdomain
    Conteúdo: Subdomains are URLs to different sections on your site. They use your primary domain and a prefix. For example, if your domain is "www.yourdomain.com", a ...
  • Domains: How to redirect a pointed / parked domain to a subdomain?
    Conteúdo: 1. First, you need to have the subdomain created. 2. Go to the control panel and click on the "Aimed / Parked Domains" option. 3. On the ...
  • Security: SSL / TLS Manager
    Conteúdo: SSL / TLS Manager will allow you to generate SSL certificates, signing requests, and keys. All of this is part of using SSL to make ...
  • Errors: HTTP Erro 401 Unauthorized (Not authorized)
    Conteúdo: The network server (which runs the Web site) considers that the HTTP data stream sent by the client (eg your web browser or our CheckUpDown ...
  • Facebook: How to create a Facebook page?
    Conteúdo: Before creating a Facebook page, you need to have a personal account (profile). If you do not have this account yet, click here to create ...
  • Email Marketing MFORMULA MAIL: XML API Documentation Email Marketing MFORMULA MAIL
    Conteúdo: IntroductionEmail Marketing MFORMULA MAIL API is a remote access to the API service to allow users of MFORMULA MAIL Email Marketing to perform many functions ...
  • cPanel: How to add / edit / delete a cron job?
    Conteúdo: Check out the tutorial provided by cPanel to add / edit / delete a cron job Access: https://documentation.cpanel.net/display/ALD/Cron+Jobs Example: Wget -q -O - http://www.yoursite.com/import_feeds_products.php?bID=1&cns=1&cne=300> / dev / null ...
  • cPanel: How to create / edit / delete / manage email accounts?
    Conteúdo: Learn how to create / edit / delete / manage email accounts. Access the cPanel tutorial: https://documentation.cpanel.net/display/1152Docs/Email+Accounts ...
  • cPanel: How do I manage domains, sub domains, and redirects?
    Conteúdo: Learn how to manage domains, sub domains, and redirects Access the tutorial: https://documentation.cpanel.net/display/1152Docs/Domains ...
  • cPanel: How to manage statistics, reports, monthly transfers and logs?
    Conteúdo: Learn how to manage statistics, reports, monthly transfers, and logs. Access the tutorial: https://documentation.cpanel.net/display/1152Docs/Logs ...
  • Appearance: Widgets in Themes in wordpress?
    Conteúdo: 01) Access your Administrative Panel www.yoursite.com/wp-admin 02) After login click on Appearance >> Widget A widget is a block or module that can be inserted into your ...
  • Appearance: Menu panel in wordpress?
    Conteúdo: 01) Access your Administrative Panel www.yoursite.com/wp-admin 02) After login click on Appearance >> Menu The Menus subpanel contains a menu creation area for your theme, this screen ...
  • Users: Wordpress users?
    Conteúdo: 01) Access your Administrative Panel www.yoursite.com/wp-admin 02) After Login click Users WordPress uses a concept of Functions, intended to give the blog owner the ability to control ...
  • Tools: Tools panel in wordpress?
    Conteúdo: 01) Access your Administrative Panel www.yoursite.com/wp-admin 02) After Login click on Tools Tools → ImportOn this screen there is a list with links to plugins that import ...
  • Preferências: Como definir as notificações de contato no cPanel?
    Conteúdo: 01) Acesse o cPanel de sua conta 02) Após o login clique em Preferências >> Informações de contato 03) Defina os alertas e o seu email para ...
  • Store Feeds: Como publicar produtos no PriceSpy captura automática
    Conteúdo: 1) Acesse o Painel de Controle2) Após o login clique em Store Feeds3) Na linha do Pricespy clique para gerar o arquivo feed do Pricespy. Salve o ...
  • Pedidos: Como criar um pedido ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Clientes >> Pedidos ou Pedidos Telefone 03) Clique no botão Criar 04) Para clientes com cadastro ...
  • Store Feeds: Como publicar produtos no Fruugo captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do Fruugo clique para gerar o arquivo feed do Fruugo. ...
  • Store Feeds: Como publicar produtos no Skinflint.co.uk captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do Skinflint.co.uk clique para gerar o arquivo feed do Skinflint.co.uk. ...
  • Store Feeds: Como publicar produtos no Myshopping.com.au captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do Myshopping.com.au clique para gerar o arquivo feed do Myshopping.com.au. ...
  • Store Feeds: Como publicar produtos no SortPrice.com captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do SortPrice.com clique para gerar o arquivo feed do SortPrice.com. ...
  • Store Feeds: Como publicar produtos no PriceRunner.co.uk captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do PriceRunner.co.uk clique para gerar o arquivo feed do PriceRunner.co.uk. ...
  • Store Feeds: Como publicar produtos no PriceCheck.co.za captura automática
    Conteúdo: 1) Acesse o Painel de Controle 2) Após o login clique em Store Feeds 3) Na linha do PriceCheck.co.za clique para gerar o arquivo feed do PriceCheck.co.za. ...
  • SKYHUB / B2W: Como configurar atualização automática de diversos produtos no SKYHUB Marketplace dos últimos produtos atualizados ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> SKYHUB Selecione Enable SKYHUB Marketplace Auto Products Update Altere para true e clique no ...
  • SKYHUB / B2W: Como ativar / desativar importação automática de novos pedidos do SKYHUB Marketplace para pedidos telefone
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> SKYHUB >> Enable SKYHUB Auto Import New Orders Altere para true Clique no botão ...
  • SKYHUB / B2W: Como Importar produtos do SKYHUB Marketplace para loja virtual ? Como Gerenciar produtos do SKYHUB
    Conteúdo: Após configurar o SKYHUB Marketplace no Painel de Controle >> Configurações >> SKYHUB Marketplace 01) Acesse o Painel de Controle 02) Após o login clique em Catálogo ...
  • SKYHUB / B2W: How to manage and import multiple SKYHUB / B2W Marketplace customer orders?
    Conteúdo: After setting up the SKYHUB / B2W Marketplace in the Control Panel >> Settings >> SKYHUB 01) Access the Control Panel 02) After login click on Catalog ...
  • SKYHUB / B2W: How to set up automatic update of several products in SKYHUB Marketplace of the latest
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> SKYHUB Select Enable SKYHUB Marketplace Auto Products Update Change to true and click the UPDATE button - ...
  • Pedidos: Como ativar / desativar o módulo remover taxa por país ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Módulos >> Pedidos 03) Selecione Remover taxa adicional por pais 04) Clique no botão Instalar 05) Após ...
  • Pedidos: Como ativar / desativar o módulo adicionar taxa por país ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Módulos >> Pedidos 03) Selecione Adicionar taxa adicional por pais 04) Clique no botão Instalar 05) Após ...
  • Wish: Como configurar a integração do Wish API ?
    Conteúdo: Acesse https://merchant.wish.com/ 1º Passo: Crie uma conta merchant 2º Passo: Após obtenha Client Id, Client Secret e Redirect URI em Account >> Settings >> API. No Campo Redirect URI ...
  • Wish: Como Relacionar produtos do Wish com a loja virtual ? Como Importar produtos do Wish
    Conteúdo: Após configurar o Wish no Painel de Controle >> Configurações >> Wish 01) Acesse o Painel de Controle 02) Após o login clique em Catálogo >> Wish 03) ...
  • Wish: Como Gerenciar Perguntas e Respostas de Tickets do Wish ?
    Conteúdo: Após configurar o Wish no Painel de Controle >> Configurações >> Wish 01) Acesse o Painel de Controle 02) Após o login clique em Catálogo >> Wish 03) ...
  • Wish: Como Gerenciar múltiplos produtos na loja virtual e no Wish ?
    Conteúdo: Após configurar o Wish no Painel de Controle >> Configurações >> Wish 01) Acesse o Painel de Controle 02) Após o login clique em Catálogo >> Wish 03) ...
  • Wish: Como Gerenciar e importar múltiplos pedidos de clientes do Wish ?
    Conteúdo: Após configurar o Wish no Painel de Controle >> Configurações >> Wish 01) Acesse o Painel de Controle 02) Após o login clique em Catálogo >> Wish 03) ...
  • Wish: Como configurar atualização automática de diversos produtos no Wish dos últimos produtos atualizados ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Wish Selecione Enable Wish Auto Products Update Altere para true e clique no botão ...
  • Wish: How to Manage and import multiple orders from Wish customers?
    Conteúdo: After setting Wish in the Control Panel >> Settings >> Wish 01) Access the Control Panel 02) After login click on Catalog >> Wish 03) After connecting the ...
  • Wish: How to set up automatic update of several products in the last updated products Wish?
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> Wish Select Enable Wish Auto Products Update Change to true and click the UPDATE button - - ...
  • Configuração: Como ativar / desativar o box de comentários de clientes na página inicial ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Customers Testimonials 03) Para ativar selecione Display Date Added Box Customers Testimonials Index ...
  • Configuração: Como escolher o efeito do carousel/slider no box de comentários de clientes na página inicial
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Customers Testimonials 03) Selecione Choose Effect Carousel Slider Box Customers Testimonials Index >> ...
  • Configuração: Como definir a largura / altura do box de comentários de clientes na página inicial
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Customers Testimonials 03) Para alterar a largura selecione Width Slider Box Customers Testimonials ...
  • MFORMULA Site Builder: Como criar meu site com MFORMULA Web Site Builder ?
    Conteúdo: 01) Acesse o cPanel de sua conta conforme email de instruções 02) Após o login clique em Software >> MFORMULA Web Site Builder 03) Clique no seu ...
  • MFORMULA Site Builder: Como editar meu site com MFORMULA Web Site Builder ?
    Conteúdo: 01) Acesse o cPanel de sua conta conforme email de instruções 02) Após o login clique em Software >> MFORMULA Web Site Builder 03) Clique no seu ...
  • Configuração: Como definir a quantidade de produtos do box mais vendidos na página inicial ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Maximum Values 03) Na linha Best Sellers Index >> EDITAR 04) Defina a quantidade ...
  • Settings: How to set the number of best selling box products on the homepage?
    Conteúdo: 01) Access the Control Panel 02) After login click Configuration >> Maximum Values 03) On the line Best Sellers Index >> EDIT 04) Define the quantity of products. ...
  • Configuração: Como configurar o sistema onde o cliente solicita troca ou devolução pelo pedido ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Orders Setting Na linha How many Days after shipped to customer see and ...
  • Configuração: Como o cliente solicita devolução / troca ?
    Conteúdo: 01) O cliente acesse no seu site Minha Conta 02) Após o login ele clica no pedido 03) Terá a opção para solicitar devolução / troca 04) Após ...
  • Pedidos: Como gerenciar as solicitações de devolução / troca ?
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Clientes Pedidos ou Pedidos Telefones Observação: Confira o status Devolução ou Troca que você configurou ...
  • Settings: How to configure the system where the customer requests exchange or return for the order?
    Conteúdo: 01) Access the Control Panel 02) After login click Configuration >> Orders Setting How many days after sending the customer sees the button to request return / ...
  • Settings: How does the customer request return / exchange?
    Conteúdo: 01) Customer accesses your website My Account 02) After login he clicks on the request 03) You will have the option to request return / exchange 04) After ...
  • Currency Exchange Store: Como configurar atualização de páginas automaticamente conforme atualização de preços
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Currency Exchange Store Settings 03) Na linha Status to refresh index and product ...
  • Currency Exchange Store: Como configurar qual API utilizar para atualização automática de preços
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configuração >> Currency Exchange Store Settings 03) Na linha Choose the API to refresh the ...
  • Configuração: Não quero migrar meu dominio neste momento como usar a url provisória e sem urls
    Conteúdo: 01) Acesse o Painel de Controle 02) Após o login clique em Configurações >> SEO URLs 03) Na linha Enable SEO URLs? >> Opções >> Editar 04) Altere ...

Pesquisas mais frequentes:

  • como colocar 52667x
  • como colocar and 1=1 39629x
  • como colocar2121121121212.1 21003x
  • como colocar and 1>1 20689x
  • como colocar'" 20087x
  • como colocar' AnD sLeep(3) ANd '1 20077x
  • como colocar" and "x"="y 20019x
  • como colocar' and 'x'='x 19981x
  • como colocar" and "x"="x 19895x
  • como colocar' and 'x'='y 19881x
  • carrinho de compras 9627x
  • Cadastro de clientes 7543x
  • importar lista de e-mail marketing 7484x
  • Painel de Controle 6845x
  • Administração de Páginas Extra 6442x
  • cadastro de cartao dns 6287x
  • Idéias de Brindes e Presentes 5712x
  • última pergunta para um vendedor 4241x
  • produtos na tela inicial1111111111111 4228x
  • quanto tempo demora pra ter o rgistro do dominio? 4192x
  • como colocar um pedido no site 4010x
  • produtos na tela inicial 3956x
  • como colocar Quem está online na loja virtual? 3732x
  • como colocar'&&sLEEp(3)&&'1 3518x
  • acessar pagina de administração do site 3447x
  • como faser um cartão de credito co cnpj? 3145x
  • como colocar Para que serve o Quem está online? 3048x
  • Sistema de DhopShipping / Revenda / Triangulação 2924x
  • Como acessar a página de administração 2919x
  • Página de Administração 2343x
  • como colocar'||SLeeP(3)&&'1 2292x
  • como colocar' aND BeNChMaRK(2999999,Md5(NoW())) AnD '1 2221x
  • como colocar Quem está online na loja virtual?'A=0 2108x
  • Administração de Páginas Extra 1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,4 2106x
  • como colocar'&&BeNChMaRK(2999999,mD5(NOW()))&&'1 2009x
  • como colocar' AnD sLeep(3) ANd '0'='0 1797x
  • 'importar lista de e-mail marketing 1791x
  • carrinho de compras1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81,45),CHAR 1733x
  • configurar google adwords 1727x
  • como colocar999999.1 union select unhex(hex(version())) -- and 1=1 1554x
  • Administração de Páginas Extra 1111111111111 UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81, 1502x
  • erro 0x800ccc92 1383x
  • Cadastro de clientes1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81,45),CHA 1380x
  • pedidos squid 1373x
  • como colocar or (1,2)=(select*from(select name_const(CHAR(111,108,111,108,111,115,104,101,114),1),name_const(CHAR(111,108,111,108,111,115,104,101,114),1))a) -- and 1=1 1358x
  • inserir código conversão 1283x
  • como colocar" or (1,2)=(select*from(select name_const(CHAR(111,108,111,108,111,115,104,101,114),1),name_const(CHAR(111,108,111,108,111,115,104,101,114),1))a) -- "x"="x 1180x
  • Administração de Páginas Extra 1111111111111" UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,4 1175x
  • como 1165x
  • live help 1163x
  • Login 1155x
  • produtos na tela inicial1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81,45) 1150x
  • como colocar99999" union select unhex(hex(version())) -- "x"="x 1134x
  • Cadastro de clientes1111111111111 UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81,45),CHAR(45, 1108x
  • como colocar99999' union select unhex(hex(version())) -- 'x'='x 1106x
  • incluir botão curtir 1093x
  • como colocar' or (1,2)=(select*from(select name_const(CHAR(111,108,111,108,111,115,104,101,114),1),name_const(CHAR(111,108,111,108,111,115,104,101,114),1))a) -- 'x'='x 1089x
  • mercado livre 1064x
  • Oi 1024x
  • pedidos 1007x
  • Olx 999x
  • site 986x
  • http://simple.somewhere.ru/forum_old/design/uvacafa/haniqe/ 976x
  • dominio 968x
  • Oicassio 961x
  • importar lista de e-mail marketing1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56 955x
  • pagamento 948x
  • produtos 945x
  • última pergunta para um vendedor 1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56, 944x
  • Acesso 943x
  • norton 931x
  • Carro 928x
  • cnpj 918x
  • bottom 917x
  • OicassioecamiLykELLy 904x
  • Painel de Controle1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,81,45),CHAR( 897x
  • zopim 895x
  • twitter 893x
  • cadastrar 890x
  • CHECKOUT 887x
  • moto 886x
  • formulário 884x
  • google analytics 880x
  • Envio 871x
  • frete 855x
  • cupom desconto 851x
  • adwords 840x
  • cupom 829x
  • Idéias de Brindes e Presentes1111111111111' UNION SELECT CHAR(45,120,49,45,81,45),CHAR(45,120,50,45,81,45),CHAR(45,120,51,45,81,45),CHAR(45,120,52,45,81,45),CHAR(45,120,53,45,81,45),CHAR(45,120,54,45,81,45),CHAR(45,120,55,45,81,45),CHAR(45,120,56,45,8 827x
  • facebook 818x
  • Conta 815x
  • SUPORTE 813x
  • oscommerce 809x
  • template 804x
  • rogerioopailoirao@hotmail.com.br 803x
  • usps 797x
  • webmail 797x
  • colocar código facebook 776x
  • modificar+layout 770x
  • carrinho+de+compras 728x
  • {debugMessages}