Foros del Web » Administración de Sistemas » Shared Hosting y VPS » Manejando una empresa de hosting »

sistema de afiliados

Estas en el tema de sistema de afiliados en el foro de Manejando una empresa de hosting en Foros del Web. ¿es buena idea usar un sistema de afiliados para potenciar las ventas de hosting? ¿que programa o script usar para controlar las ventas de cada ...
  #1 (permalink)  
Antiguo 04/08/2005, 17:21
Avatar de nexovirtual
(Desactivado)
 
Fecha de Ingreso: junio-2003
Ubicación: España (Andalucía)
Mensajes: 1.825
Antigüedad: 21 años, 10 meses
Puntos: 1
sistema de afiliados

¿es buena idea usar un sistema de afiliados para potenciar las ventas de hosting? ¿que programa o script usar para controlar las ventas de cada afiliado? ¿alguna sugerencia en especial?
  #2 (permalink)  
Antiguo 04/08/2005, 19:19
Avatar de cesarmx  
Fecha de Ingreso: octubre-2004
Ubicación: Mexico
Mensajes: 200
Antigüedad: 20 años, 6 meses
Puntos: 0
A mi me agrada iDevAffiliate
  #3 (permalink)  
Antiguo 06/08/2005, 00:16
Avatar de Apolo
Colaborador
 
Fecha de Ingreso: abril-2003
Ubicación: ubicado
Mensajes: 7.961
Antigüedad: 22 años
Puntos: 109
Tengo entendido que algunos sistemas de billing, como ModernBill y AWBS, tienen integrado un sistema de seguimiento de afiliados/comisiones.

Saludos,
__________________
Planes VPS en el mundo > DirectorioVPS
Visita los foros de hosting de ComunidadHosting
  #4 (permalink)  
Antiguo 09/08/2005, 03:59
 
Fecha de Ingreso: marzo-2005
Mensajes: 88
Antigüedad: 20 años, 1 mes
Puntos: 0
Como dice apolo buscaria un billing system con sistemas de afiliado inclusive como modernbill. Por otro lado si compensa o no... pues creo que sí por una sencilla razon, si no hay venta no hay comisión, vamos que pagas por % o un fijo como puede ser 5 euros por venta. El ingreso que vayas a hacer está allí. Por otro lado el problema quizas seria que el cliente solo estuviera un mes asi que te saldria más caro pagar los 5 euros que lo que vayas a ingrsar. Pero el problema no sería el sistema de afiliación sino que has hecho mal para que se escape tan pronto y en consecuencia aprender y mejorar el servicio.
Salu2
__________________
¿Buscas hosting Cpanel/Fantastico/sitebulder...?
esbribenos al info[arroba]higerhosting.com
Aceptamos pagos con paypal, E-Gold
y transferencia bancaria.
  #5 (permalink)  
Antiguo 09/08/2005, 05:54
Avatar de MinervaH
Colaborador
 
Fecha de Ingreso: mayo-2004
Mensajes: 2.189
Antigüedad: 20 años, 11 meses
Puntos: 23
Cita:
Iniciado por Apolo
Tengo entendido que algunos sistemas de billing, como ModernBill y AWBS, tienen integrado un sistema de seguimiento de afiliados/comisiones.
Cierto, interesante este tema. ¿Alguien tiene alguna experiencia con el sistema de afiliados de estos dos sistemas? Porque WHM Autopilot también lo tiene y por lo que comentan en su foro funciona muy mal...
__________________
Minerva Hosting - Obsesionados con la calidad
Elegidos mejor web de hosting de 2005 y 2006
Hosting • Dominios • Backup remoto • Telefonía IP
  #6 (permalink)  
Antiguo 24/08/2005, 23:13
Colaborador
 
Fecha de Ingreso: mayo-2005
Ubicación: Costa Rica
Mensajes: 2.642
Antigüedad: 19 años, 11 meses
Puntos: 31
Hola,

Es cierto lo que dices MinervaH, el sistema de afiliados de AP es realmente malo. Sin embargo para los que usen AP y les interese un sistema de afiliados, en su foro Brandee Diggs (fundador y dueño) posteó una manera de integrarlo con iDevAffiliate. Aqui les dejo el post con las instrucciónes para los que estén interesados.


Cita:
HOW TO INTEGRATE INTO YOUR INSTALLATION

First: Get it here - iDevDirect - iDevAffiliate [click here]

[1] Upload the script to any folder of your choice. It can be in a folder called /affiliates, or whatever you prefer.

[2] go through the setup and installation instructions provided by iDevAffiliate to get the system installed and running properly. Make sure during setup you have Enable Recurring Sales? set to yes.

[3] Pay Per Sale option is what I have tested and seems to be the best method of affiliate payout.

[4] Under the "Payout Settings" area, put total_due_reoccur as the Pass-Thru Variable Name for tracking. This will ensure that you are paying commission on 'what reoccurs' as opposed to monthly on initial payments ( which could be more than the recurring )

[5] Under the "Order Tracking" area, here is what I put in there: domain_name
** this lets you see the referrar & the domain that signed up in the admin area

[6] Open up your 'invoice_new.php' file and your 'mail_payment.php' file in an editor and at the bottom of the file, put your 'processing code' in there like this:

File: invoice_new.php
CODE
include $server_inc."/footer3.php";
mysql_close($dblink);
?>
<!-- Start iDevAffiliate Processing Code -->
<? include("/home/username/public_html/affiliates/sale.php"); ?>
<!-- End iDevAffiliate Processing Code -->


File: mail_payment.php
CODE
mysql_close($dblink);
?>
<!-- Start iDevAffiliate Processing Code -->
<? include("/home/username/public_html/affiliates/sale.php"); ?>
<!-- End iDevAffiliate Processing Code -->


This will allow both paid orders and mail in payment orders to be tracked.

[7] Now you need to remove the referral tracking from the internal system in your step_one.php file. Open up /step_one.php and change this:

line: 170 - 172
CODE
<tr>
<td width='40%' align='left' valign='top'><img src='".$http_images."/space.gif' width='32' height='1'>".$stepone_referralinput."</td>
<td width='60%' align='left' valign='top'><input ".$orderinput_style." type='text' size='30' maxlength='255' name='referrer_id' value='".((isset($xreferrer_id))?"".$xreferrer_id. "":"".((isset($referrer_id))?"".$referrer_id."":"" )."")."'> ".$text_optional."</td>
</tr>


To this:

CODE
<tr>
<td width='40%' align='left' valign='top'></td>
<td width='60%' align='left' valign='top'><input ".$orderinput_style." type='hidden' size='30' maxlength='255' name='referrer_id' value=''></td>
</tr>


[8] Now you need to change the link from to the existing affiliate menu to the new affiliate system you just installed and configured. Open up /client_area.php and change this:

Line: 193
CODE
echo show_affiliate_client($http_images, $uid, $sid, $http_web);

echo("
</td>


To this:
CODE
#echo show_affiliate_client($http_images, $uid, $sid, $http_web);
echo("
<img src='".$http_images."/menu_arrow.gif'><b>Affilates Area </b><a href='http://yoursite.com/affiliates/' target='_blank'>Click to Enter</a></b>
</td>


If you have any links pointing to the existing affiliate signup for normal affiliates and pointing to clogin.php for affiliate login, please manually change them to the path of your iDevAffiliate installation.

This should do the trick.

NOTE: This does not integrated into the existing admin area nor does it share the same user & pass as the /clogin.php for the clients. I am working on that automation and once I have that deeper integration completed, I will share my results with the community.

Thanks.
A manera de aclaración, parece que solamente funciona para algunas versiones de iDevAffiliate, sin embargo vale la pena probarlo...
__________________
ALL IN HOSTING-Alojamiento Web Profesional en USA y España - Hosting Wordpress, Reseller,CLOUD,Servidores VPS y Dedicados.
  #7 (permalink)  
Antiguo 11/06/2010, 04:11
rtr
 
Fecha de Ingreso: abril-2009
Mensajes: 368
Antigüedad: 16 años
Puntos: 2
Respuesta: sistema de afiliados

Hola , soy un poco nuevo en este tema pero ¿ que hacen exactamente esos programas que comentais? ¿ controlan si una visita enviada desde tu web compró o se registro en la web que vende??

Espero que me ayudeis, saludos
  #8 (permalink)  
Antiguo 23/06/2010, 09:14
Avatar de Bolsomaniaco  
Fecha de Ingreso: julio-2008
Ubicación: Montevideo, Uruguay
Mensajes: 311
Antigüedad: 16 años, 9 meses
Puntos: 8
Respuesta: sistema de afiliados

Cuando referis alguna persona a la empresa que te da tu hosting, usa tu ID único de Afiliado. Una cookie con tu ID es colocada en el PC de la persona referida. De esta manera, si la persona que vos referiste vuelve a visitar la web, el sistema detecta la cookie y asigna la comisión en tu cuenta de afiliado.
__________________
Bolsomaniaco

¿Que Cocino?
www.noticiasdeluruguay.com
  #9 (permalink)  
Antiguo 13/08/2010, 23:44
Avatar de GXT2  
Fecha de Ingreso: junio-2009
Ubicación: Fort Lauderdale, FL
Mensajes: 152
Antigüedad: 15 años, 10 meses
Puntos: 0
Respuesta: sistema de afiliados

Lo que mas se utiliza es 1shoping cart ellos te permiten gestionar afiliados y
los respectivo gateways que necesitas .
Se que tambien puedes integrarlo con paypal u otro sitema de pago
que tengas actualmente.
  #10 (permalink)  
Antiguo 15/08/2010, 02:23
Avatar de mihosting  
Fecha de Ingreso: febrero-2006
Ubicación: Madrid
Mensajes: 68
Antigüedad: 19 años, 2 meses
Puntos: 1
Respuesta: sistema de afiliados

Creo que a la hora de elegir el sistema de afiliados, el link incluya tu url y no la de otra empresa. Normalmente esos links se publican en la web, por lo que si hay muchos links de afiliados, tus ventas mejoraran no solo por esos links, sino por la mejora en que tendra tu web en las busquedas en google y otros.
__________________
Saludos

Miguel Herrero
www.miHosting.net
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 15:03.