0 utilizadores on-line |
0 Convidados e 0 Registados

Pesquisa avançada

1652 resultados da pesquisa

Página 11 de  17 Páginas

  • 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 get the status list of requests via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_orders.php?action=orders_status PHP Sample: // sample list orders status $url = $domain_url . '/api_orders.php?action=orders_status'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • 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 the list of registered Customer Groups via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_customers.php?action=customers_groups PHP Sample: // sample customers groups list $url = $domain_url . '/api_customers.php?action=customers_groups'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • 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 get the list of countries via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_customers.php?action=customers_country PHP Sample: // sample customers country list $url = $domain_url . '/api_customers.php?action=customers_country'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • 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 get the list of categories and sub-categories registered via API?
    Conteúdo: URL: http://www.nomedoseusite.com.br/api_categories.php?action=categories_list PHP Sample: // sample list categories and sub-categories $url = $domain_url . '/api_categories.php?action=categories_list'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); ...
  • 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 ...
  • Authentication: Authentication to connect API
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> Api Settings 03) Create a username and password of your choice and security for authentication ...
  • 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 ...
  • Text Administration: How to insert / edit texts in automatic email after completing a purchase?
    Conteúdo: 01) Access the Control Panel 02) After login click on Tools >> Text Management 03) After clicking on New File In the Text type field select Email Ckeckout ...
  • Text Administration: How to insert / edit text in the description of all the products of a
    Conteúdo: 01) Access the Control Panel 02) After login click on Tools >> Text Administration 03) After clicking on New File In the Text type field select Text Select the ...
  • Text Administration: How do I insert / edit / enable / disable custom text content on the
    Conteúdo: 01) Access the Control Panel 02) After login click Tools >> Text Management >> Select IndexTop or IndexBottom For content click on the EDIT button 03) After editing ...
  • 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) ...
  • Squid Fácil: Import by New API SquidFacil New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your SquidFacil account as a Merchant or Partner, for more information, access: http://www.squidfacil.com.br/ Add a Store After adding a store click on your store After clicking ...
  • Squid Fácil: How to export the request via API to SquidFacil?
    Conteúdo: 01) Access the Control Panel 02) After login go to Customers >> Orders or Orders Phone 03) Access the Request >> After clicking the EXPORT SQUIDFACIL button Note: ...
  • Hayamax: Import by Hayamax API File New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your Hayamax account as a Merchant or Partner, for more information, visit: http://www.hayamax.com.br/info/crossdocking Download the catalog in XML format 02) After accessing the Control Panel 03) ...
  • Fragrancenet: How to Import by API File Fragrancenet.com New Products or Upgrade / Synchronization of Large-Scale
    Conteúdo: 01) Create your Fragrancenet.com account as a Merchant or Partner, for more information, visit: http://www.fragrancenet.com/help/wholesale Get the link in txt format from the product catalog 02) After ...
  • LUXJOIAS: Import by API file LUXJOIAS New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your DROPSHIPPING account at LUXJOIAS, for more information, visit: http://www.luxjoias.com/dropshipping-revenda-i-47.html After approval, copy the catalog link in XML format 02) After accessing the Control Panel 03) ...
  • LUXJOIAS: Import by API file LUXJOIAS New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your DROPSHIPPING account at LUXJOIAS, for more information, visit: http://www.luxjoias.com/dropshipping-revenda-i-47.html After approval, copy the catalog link in XML format 02) After accessing the Control Panel 03) ...
  • 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 configure Cnova Marketplace API integration?
    Conteúdo: Go to https://desenvolvedores.cnova.com/ Step 1: Click the Apply button Step 2: Access Developer >> My Apps Step 3: Click the REGISTER NEW APP button Step 4: Fill in the ...
  • Cnova Marketplace: How to request approval of the Cnova Marketplace API integration?
    Conteúdo: Homologation Process The Cnova Marketplace API allows developers to build applications using the resources available for full integration of the marketing stream in the Marketplace. At the ...
  • Cnova Marketplace: How to Register Products in the Virtual Store and Cnova Marketplace?
    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 Manage multiple products in the virtual store and the Cnova Marketplace?
    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 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 enable / disable automatic import of new Cnova Marketplace orders for phone orders?
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> Cnova >> Enable Cnova Auto Import New Orders Change to true Click the UPDATE button * Automatically ...
  • 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 configure B2W Marketplace API integration?
    Conteúdo: Go to https://www.bonmarketplace.com.br/ Step 1: Click the button Register your store Step 2: After obtaining the User, Pass and Authorization Code. Go to Settings >> B2W. Edit the User, Pass, and ...
  • B2W Marketplace: How do I register products in the virtual store and in the B2W Marketplace?
    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 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 to enable / disable automatic import of new B2W Marketplace orders to phone orders?
    Conteúdo: 01) Access the Control Panel 02) After login click on Configuration >> B2W >> Enable B2W Auto Import New Orders Change to true Click the UPDATE button * Automatically ...
  • 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 - ...
  • Richard Cannon Jewelry: How to Import by API File Richard Cannon Jewelry - rcjewelry.com New Products or Upgrade
    Conteúdo: 01) Create your account at Richard Cannon Jewelry - rcjewelry.com as DropShip, for more information, visit: http://www.rcjewelry.com/DropShipProgram.aspx Get the link or file in xml format from ...
  • Kole Imports: How to Import by API File KoleImports.com New Products or Upgrade / Synchronization of Large-Scale
    Conteúdo: 01) Create your account at KoleImports.com as a Merchant or Partner, for more information, please visit: https://dropship.koleimports.com Get the link in XML format of the product ...
  • NovaTech Wholesale: How to Import by API File NovaTechWholesale.com New Products or Upgrade / Synchronization of Large-Scale
    Conteúdo: 01) Create your NovaTechWholesale.com account as Drop Shipping, for more information, visit: http://www.novatechwholesale.com/drop_ship_page Get the file: Download all (in stock) Products (.CSV Format) 02) After accessing the ...
  • NETSHOES Marketplace: How to configure NETSHOES Marketplace API integration?
    Conteúdo: Go to http://www.netshoes.com/marketplace/ Step 1: Contact NETSHOES: marketplace.br@netshoes.com Step 2: After obtaining the Client ID, Client Secret and Access Tokens. Go to Settings >> NETSHOES. Edit the Client ID, Client Secret, ...
  • 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 - ...
  • NETSHOES Marketplace: How to Register Products in the Virtual Store and the NETSHOES Marketplace?
    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 to enable / disable automatic import of new orders from NETSHOES Marketplace to phone
    Conteúdo: 01) Access the Control Panel 02) After login click Configuration >> NETSHOES >> Enable NETSHOES Auto Import New Orders Change to true Click the UPDATE button * Automatically when ...
  • NETSHOES Marketplace: How to Manage Multiple Products in the Virtual Store and NETSHOES Marketplace?
    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) ...
  • All Nations: Import by API All Nations New Products or Upgrade / Synchronization of Large-Scale Product Inventory
    Conteúdo: 01) Create your All Nations account as Store or Partner, for more information, visit: http://www.allnations.com.br After obtaining your approval of access via API, login and password 02) ...
  • All Nations: How to enter a reservation and confirm an order / product reservation at All Nations?
    Conteúdo: 01) Access the Control Panel 02) After login click Clients >> Orders or Orders Phone 03) In the order you have the Import / Confirm Reservation field ...
  • All Nations: How do I cancel an order / product reservation at All Nations?
    Conteúdo: 01) Access the Control Panel 02) After login click Clients >> Orders or Orders Phone 03) In the request will have the field Cancel Reservation in All ...
  • 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 language
    Conteúdo: This function allows you to change the language of the cPanel interface. If you need a new language: 1. Access your control panel under "Change Language" 2. ...
  • 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 ...
  • Preferences: Shortcuts
    Conteúdo: Shortcuts are a simple and convenient way to access the control panel, without having to enter the URL in your browser. CPanel shortcuts can be configured ...
  • Preferences: Operating Instructions Wizard
    Conteúdo: The Operating Instructions Wizard consists of a small and simple tutorial, where through an illustrated step-by-step, some of the features of cPanel are presented, as ...
  • Preferences: Video Tutorials
    Conteúdo: Tutorials in Videos consists of a tutorial, where through a step-by-step through video, some of the features of cPanel are presented, as well as useful ...
  • 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 ...
  • Logs: Webalizer FTP
    Conteúdo: Webalizer FTP is a complex statistics program that produces a variety of graphics about who visited your site using the FTP protocol. ...
  • Logs: Error Log
    Conteúdo: This function will show up to the last 300 errors of your site. This tool can be very useful in determining which links are broken ...
  • Logs: Choose Log Programs
    Conteúdo: This feature allows you to choose which statistic systems you will use when viewing site statistics if you are allowed to do so. By default ...
  • Logs: Awstats
    Conteúdo: Like Webalizer, this tool is a complex system of statistics that produces a variety of tables and graphs about who visited your site. But in ...
  • E-mail: BoxTrapper
    Conteúdo: Consists of a tool that once activated, requires that any email sent, whose address is not on your whitelist, needs to respond to a verification ...
  • E-mail: How do I create or change an email account?
    Conteúdo: In this area, you can manage the email accounts associated with your domain (s). Select the domain whose email accounts you want to manage from ...
  • E-mail: E-mail Get it all
    Conteúdo: The E-mail address Pick-All will "pick up" any email that is sent to an invalid or non-existent address from your domain. To enable the features ...
  • E-mail: Changing MX Entries
    Conteúdo: You can use the MX Entries Maintenance function to change the location where the domain email is delivered. This allows you to have email from ...
  • E-mail: How to create a rule in the email filter?
    Conteúdo: You can create a filter below. You can add as many rules as you need to agree on subjects and also different parts of a ...
  • E-mail: How to set up a filter for a single email account?
    Conteúdo: In addition to the filters that can be configured for all email accounts, they can be configured to filter according to individual rules for each ...
  • E-mail: How to create an email redirection?
    Conteúdo: Redirectors allow you to send a copy of all messages from a certain e-mail address to another address. For example, if you have two different ...
  • E-mail: How do I set up an auto-reply message?
    Conteúdo: You can use autoresponders to send a message back automatically to someone who sends an email to a particular account. This can be useful when ...
  • E-mail: How do I enable SpamAssassin?
    Conteúdo: SpamAssassin is an automated e-mail filtering system that attempts to identify spam based on the content of e-mail headers and bodies. By default, this feature ...
  • E-mail: Webmail
    Conteúdo: Webmail allows you to manage your emails in a way analogous to what you do using software such as Outlook or Thunderbird. However, this is ...
  • E-mail: How to add the email marketing server's email in your site's Cpanel email authentication?
    Conteúdo: By performing this process below the email marketing campaigns sent through MFORMULA MAIL will not be moved to the SPAM folder of the users who ...
  • Domains: How to perform a domain pointing / parking?
    Conteúdo: 1. Go to the control panel and click the "Aimed / Parked Domains" option. 2. On the next screen under "Create a New Parked Domain", you ...
  • Domains: How to create a domain redirection?
    Conteúdo: 1. Go to Control Panel and click the "Redirects" option. 2. On the next screen under "Add Redirection", define whether the targeting will be temporary or ...
  • 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 Create an Additional Domain
    Conteúdo: To create an additional domain: 1. Go to the control panel and click on the "Additional Domains" option. 2. In the following screen enter in the fields ...
  • 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 ...
  • Files: Backup
    Conteúdo: Through the tool "Backups" the user can download a "zipped" copy of your entire site (home directory, databases, mail settings) or any specific directory of ...
  • Files: How to Use the Backup Wizard
    Conteúdo: This backup tool provides the functionality of downloading a compressed file containing your complete website or specific parts of it to your computer. In addition, the ...
  • Files: Adding an FTP account
    Conteúdo: FTP Accounts allow you to gain access to the space intended for your site through a protocol called FTP. It is necessary that you have ...
  • Files: FTP Session Control
    Conteúdo: You can use this function to see who is accessing your site through FTP. You can end the connections you want. This can be very ...
  • Files: Advanced File Manager
    Conteúdo: Just like the Advanced File Manager, this manager also allows the user to manage the files contained in the area destined for your domain inside ...
  • Files: Basic File Manager
    Conteúdo: Through this tool the user can manage the files contained in the area destined to his domain inside the server, creating, renaming or deleting directories ...
  • Security: Password Protection Directories
    Conteúdo: This option will allow you to require a login name and password to access the contents of a directory or folder in the area reserved ...
  • 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 ...
  • Security: Anti-leech Protection
    Conteúdo: Anti-leech Protection lets you prevent your users from giving or posting your passwords from a restricted area of your site. This tool will redirect to ...
  • Security: GnuPG Keys
    Conteúdo: GnuPG is a public encryption scheme that uses the "public key" approach. With GnuPG, messages are encrypted using the "public key", however, they can only ...
  • Database: How to access MySQL remotely?
    Conteúdo: 1. To access MySQL remotely, you must first enable this option in the Control Panel - cPanel. Access the Control Panel - cPanel as follows:Http://www.yourdomain.com/cpanel 2. ...

Pesquisas mais frequentes:

  • como colocar 52668x
  • como colocar and 1=1 39634x
  • como colocar2121121121212.1 21008x
  • como colocar and 1>1 20695x
  • como colocar'" 20089x
  • como colocar' AnD sLeep(3) ANd '1 20081x
  • como colocar" and "x"="y 20019x
  • como colocar' and 'x'='x 19985x
  • como colocar" and "x"="x 19899x
  • como colocar' and 'x'='y 19883x
  • carrinho de compras 9641x
  • Cadastro de clientes 7551x
  • importar lista de e-mail marketing 7496x
  • Painel de Controle 6853x
  • Administração de Páginas Extra 6447x
  • cadastro de cartao dns 6316x
  • Idéias de Brindes e Presentes 5719x
  • última pergunta para um vendedor 4249x
  • produtos na tela inicial1111111111111 4228x
  • quanto tempo demora pra ter o rgistro do dominio? 4203x
  • como colocar um pedido no site 4020x
  • produtos na tela inicial 3965x
  • como colocar Quem está online na loja virtual? 3740x
  • como colocar'&&sLEEp(3)&&'1 3521x
  • acessar pagina de administração do site 3457x
  • como faser um cartão de credito co cnpj? 3155x
  • como colocar Para que serve o Quem está online? 3057x
  • Sistema de DhopShipping / Revenda / Triangulação 2937x
  • Como acessar a página de administração 2928x
  • Página de Administração 2351x
  • como colocar'||SLeeP(3)&&'1 2292x
  • como colocar' aND BeNChMaRK(2999999,Md5(NoW())) AnD '1 2224x
  • 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 2117x
  • como colocar Quem está online na loja virtual?'A=0 2113x
  • como colocar'&&BeNChMaRK(2999999,mD5(NOW()))&&'1 2009x
  • 'importar lista de e-mail marketing 1802x
  • como colocar' AnD sLeep(3) ANd '0'='0 1797x
  • 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 1743x
  • configurar google adwords 1730x
  • como colocar999999.1 union select unhex(hex(version())) -- and 1=1 1555x
  • 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, 1508x
  • erro 0x800ccc92 1385x
  • 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 1374x
  • 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 1364x
  • inserir código conversão 1286x
  • 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 1187x
  • 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 1181x
  • como 1165x
  • live help 1163x
  • 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) 1162x
  • Login 1157x
  • como colocar99999" union select unhex(hex(version())) -- "x"="x 1138x
  • como colocar99999' union select unhex(hex(version())) -- 'x'='x 1111x
  • 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
  • incluir botão curtir 1094x
  • 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/ 977x
  • 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 956x
  • ú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, 950x
  • pagamento 948x
  • produtos 945x
  • 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( 898x
  • 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}