Search the Community
Showing results for tags 'livezilla'.
-
Dear All. I just upgraded Livezilla to version 7, and i face an important issue. It seems that prestashop in some way prevents Livezilla client to communicate with Livezilla Server. For example, If i try to start a chat i will never receive any notification server side, if i try to send message from the client same thing happened impossible to send it. I try to troubleshoot this issue for 2 days now and i don't know what is going on, Livezilla version 6 was working like a charm. There is high probability that is related to prestashop, because everything works fine if i try Livezilla on the configuration page of Livezilla on my server (www.My-Web-Site.com/livezilla). For the records, nothing fancy on my website, theme is the one provided with PS 1.6 (bootstrap something) i just have facebook login module but i didn't try to deactivate it during my investigations. Hope will get some help. Thanks. Edit: I tried to disable both of the Facebook module i use on my shop but it didn't change the situation.
- 1 reply
-
- cloudflare
- livezilla
-
(and 1 more)
Tagged with:
-
Hola, Tengo el siguiente problema. Acabo de integrar el chat LIVEZILLA a mi web pero no se muestra en todas la paginas solo en las paginas fijas como el producto, contacto,.... Por ejemplo: se muestra en: https://lamainstruments.pe/contactanos no se muestra en: https://lamainstruments.pe/40-efectos https://lamainstruments.pe Alguna de idea de por que se bloquea el chat y no permite que se muestre? Espero me puedan ayudar. Saludos, Ronald Olivo
- 3 replies
-
- chat online
- zopim
-
(and 2 more)
Tagged with:
-
Hi all, thanks for your time on my thread. Basically in installed/integrated Livezilla and installed the module, used the coded needed and it showed no error, its just now showing the live chat button/icon on home page ... however the live chat is working just fine, whenever someones coming online am getting notification and being able to converse.. this is really strange. Please help if u can. thanks
- 1 reply
-
- livezilla
- prestashop 1.6
-
(and 2 more)
Tagged with:
-
Bonjour, Je rencontre un probléme que je n'avais jamais eu avant sur mes autres Ecommerce. J'ai installé le module livezilla, tout fonctionne sauf que le popup Livezilla apparait sur toutes mes pages mais n'apparait pas sur la page principale du site. Sur homepage, le popup livezilla n'apparait pas. Sur page produit, le popup livezilla est présent. Quand un client est sur la homepage, la partie client livezilla ne le detecte pas, mais le detecte bien sur toutes les autres pages de mon site. mon site : www.parf1.fr Merci de votre aide
-
Хостер начал банить по айпи на время. В итоге выяснилось за что "На сервере, на котором расположен Ваш аккаунт, производится блокировка Вашего IP-адреса по причине того, что с него происходит отправка POST-запросов на Ваш сайт, не содержащих значений user-agent и referer. Запрос идет к сайту и имеет вид LiveZilla/server.php?a=e0e0b?contest=true" - ответ хостера. В коде не силён, подскажите как исправить. Запрос возникает когда пользуюсь приложением LiveZilla для ПК
-
Buenas noches He descargado el livezilla pero no se cual sera la manera correcta de agregar el script a mi tienda. Les agradezco de antemano por su valiosa ayuda
-
Hola! Hace un tiempo me encargaron agregarle un chat para la atención personalizada en una web que hice. La idea era que fuera práctico, funcional, y por sobre todas las cosas, gratuito. Probé Livezilla y la verdad es que me gustó mucho. Pero la versión gratuita no era muy personalizable (en cuanto a lo estético). Luego probé Zopim y verdaderamente es genial. Su panel de administración y configuración es de lo más completo y el chat que agrega a la web es excelente. También tienen una versión gratuita. Pero estuve leyendo críticas que decían (en otros foros) que pasados los 14 días que te dan para probarlo, el servidor empieza a fallar, no se conecta y esa situación hace (o te obliga) a contratar el servicio de pago. Como tenía que implementarlo en una tienda no me quise a arriesgar a instalar zopim, para que en caso de que pase lo que decían en los foros no tener que estar cambiando de chat y todo eso. Así que decidí buscar otro parecido. Y encontré uno que se llama plupper (http://plupper.com ) La versión gratuita es muy configurable. Deja cambiar las imágenes y la posicion de los marcadores del chat. Su configuración es muy sencilla. Primero hay que darse de alta en la web. Llenar un par de datos y ya tendrán su cuenta activada. Luego proporcionan un código que es el que usaremos para insertarlo en la web. El codígo que nos dan es muy sencillo. Basicamente es algo como esto: <!-- Plupper Button --> <div id="plupperButton"></div> <!-- End of Plupper Button Code --> <!-- Plupper Code --> <script src="https://www.google.com/jsapi"></script> <script type="text/javascript" src="https://static.plupper.com/js/plupper.js"></script> <script type="text/javascript"> plupper.init("[email protected]"); plupper.showSideBadge("left", "30%"); plupper.enableCobrowsing(); </script> <!-- End of Plupper Code --> Donde se debe reemplazar "accountName" por el nombre que le hayamos puesto a la cuenta en el registro. Para agregarlo al código de prestashop hay dos formas (seguramente deben haber más formas, pero yo sólo sé dos) Primero. Instalar algún módulo en prestashop que permita agregar bloques html. Pueden encontrar algunos muy útiles aquí: http://www.presta199.com/en/prestashop-modules/51-multi-block-arbitrary-text-or-html.html http://www.luiscambra.com/tienda/19-m%C3%B3dulo-gratuito-multiblock.html http://www.prestashop.com/forums/topic/180624-modulo-para-insertar-bloques-html-en-columnas-y-pie-de-pagina/ http://www.prestashop.com/forums/topic/9730-topic/ http://www.blogdesastre.com/estupendo-modulo-de-prestashop-para-insertar-codigo-html-htmlbox/ http://prestashop.carolinacustomdesigns.com/front-office-features/2-multi-block-arbitrary-text-or-html.html Una vez instalado alguno de estos módulos lo que hay que hacer es entrar en la configuración del mismo y agregar el código de plupper. Yo tengo el Multiblock Arbitrary text y agregué el código en el bloque "Left column". Segundo. La otra forma es agregar directamente el código en nuestro theme. Para ello debemos ingresar por ftp, buscar la carpeta "themes", y dentro de ella el archivo "header.tpl" o "footer.tpl. Debemos tener especial cuidado de agregarlo antes de la etiqueta </head> y el código deberá estar entre las etiquetas {literal}. Algo así como esto: {literal} <!-- Plupper Button --> <div id="plupperButton"></div> <!-- End of Plupper Button Code --> <!-- Plupper Code --> <script src="https://www.google.com/jsapi"></script> <script type="text/javascript" src="https://static.plupper.com/js/plupper.js"></script> <script type="text/javascript"> plupper.init("[email protected]"); plupper.showSideBadge("left", "30%"); plupper.enableCobrowsing(); </script> <!-- End of Plupper Code --> {/literal} Para esto es mejor siempre forzar compilacion.... Como ya lo mencioné, yo preferí utilizar el primer método porque es más sencillo.... Lo pueden ver funcionando en http://hostelerialowcost.com Espero a alguien le sirva tanto como me sirvió a mí... Saludos!!
-
Canlı Destek Online Müşteri Hizmetleri
BasaranNET posted a topic in Yazılım, Modül ve Tema [ARCHIVE]
Arkadaslar Merhaba, Internet Siteleri, daha doğrusu e-ticaret sitelerinde müşteri/satıcı iliskisini en kısa mesafeden kurabilen, müşterilerin hangi üründe gezdigini görebileceğiniz, otomatik olarak istediğiniz mesaji gönderebileceğiniz tavsiye edebileceğim çok güzel bir program. Livezilla 3.3.2.2 Sürümü Ücretsizdir. herhangi bir ödeme yapmanıza gerek kalmaz. yalnızca güncelleme yapmayın yeterlidir. Güle Güle Kullanın _______________________________ Başaran NET | Araç Kiralama | Oto Kiralama | Eczane- 24 replies
-
- Canlı Destek
- Müşteri Hizmetleri
-
(and 2 more)
Tagged with:
-
LiveZilla 4.1.0.4 ücretli mi kurmak istedim fakat yapamadım anlatımları var ama elimde server dosyası yok nasıl elde edebilirim acaba
- 26 replies
-
- LiveZilla
- online chat
-
(and 2 more)
Tagged with:
-
er der nogen der har erfaring med chat over hjemmesiden: er det noget man installerer via sin Prestashop eller skal man installere på anden vis? hvorfor skal man f.eks. vælge iadvize hvor man skal betale et abonnement ift. livezilla hvor man betaler en gang for alle?
-
P3chat jest innowacyjnym i bardzo prostym rozwiązaniem , umożliwiającym dodanie widgetu z czatem w czasie rzeczywistym do strony internetowej lub sklepu. Idealne rozwiązanie zastępujące płatną usługę Livezilla lub inne tego typu usługi Wspiera język polski Integracja składa się z 2 części. 1. Modułu zainstalowanego w sklepie 2. Komunikatora zainstalowanego na lokalnym komputerze. oraz co najważniejsze moduł wymaga założenia konta w serwisie P3chat P3chat - udostępnia darmową usługę w skład, której wchodzi: 1 - 1 Operator - Pracownik sklepu, który rozmawia z odwiedzającymi sklep w czasie rzeczywistym za pomocą zainstalowanego na komputerze komunikatora 2. - 1 Kanał - Analogicznie do linii telefonicznych (kanałów), oznacza to,z jaką ilością odwiedzających sklep można prowadzić w tym samym czasie rozmowę. Na przykład, z 3 kanały-per-operator - oznacza to, że Operator może prowadzić w tej samej chwili rozmowę z 3 osobami - a 4 osoba musi poczekać aż zwolni się kanał - w wersji darmowej można prowadzić w tym samym czasie rozmowę tylko z jedną osobą. 3. - 1 Dział - Grupa operatorów. 4. - 1 Reguła - Umożliwia określenie zachowań aplikacji np. - możliwość automatycznego rozpoczęcia rozmów z klientem zaraz po jego wejściu na stronę - możliwość skonfigurowania automatycznego rozpoczęcia rozmowy z klientem w przypadku gdy np. spędzi on na stronie sklepu jakiś określony czas lub odwiedzi określone strony naszego sklepu lub wejdzie na stronę naszego sklepu z określonego adresu. UWAGA!!! - w wersji darmowe możliwość określania REGUŁ jest udostępniona na okres 14dni po upływie tego okresu aby korzystać z tej funkcjonalności należy wykupić wyższy plan taryfowy. W przypadku gdy Operator jest offline widget umożliwia wysłanie emaila P3chat wspiera komunikatory : XMPP/Jabber clients. np.: Google Talk (Gmail or standalone), iChat, eBuddy, Exodus, etc. ICQ clients. np.: ICQ, AIM, Trillian, Miranda IM, QIP, etc. YIM clients. np.: Yahoo! Messenger (YIM), Pidgin (Gaim), Meebo, etc. MSNP clients. np.: Windows Live Messenger, Trillian, etc. Zalecanym klientem instalowanym na komputerze jest PIDGIN - http://www.pidgin.im/ Pidgin to darmowy komunikator internetowy obsługujący dużą ilość protokołów. Aplikacja pozwala na prowadzenie rozmów w sieciach: AIM, Bonjour, Gadu-Gadu, Google Talk, Groupwise, ICQ, IRC, MSN, MySpaceIM, QQ, SILC, SIMPLE, Sametime, XMPP, Yahoo!, Zephyr. Program Pidgin umożliwia jednoczesne łączenie się z wieloma sieciami dzięki czemu można prowadzić rozmowy w czasie rzeczywistym na wielu platformach. Oczywiście najważniejszą zaletą programu Pidgin jest to, że dzięki niemu nie trzeba instalować na komputerze wielu aplikacji, Pidgin ma wszystko w jednym. DEMO - http://delf.biz.pl/2...esk-online.html UWAGA !!! - Wersja freeware modułu zawiera link zwrotny do naszej strony - umieszczony w stopce sklepu.