Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

Live Chat and additional modules help

 
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)
 
Thread Tools Search this Thread
  #11  
Old 03-15-2014, 01:34 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: Live Chat and additional modules help

How do you restart the process? Try deleting the [xc]/var directory and then open the "admin.php" script in your browser (i.e. the back end, not the storefront - opening the storefront won't start the cache rebuilding process). Does this help?
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote
  #12  
Old 03-15-2014, 03:42 AM
 
xanadude xanadude is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 247
 

Default Re: Live Chat and additional modules help

I have tried this but it does nothing all I get is the maintenance screen

http://wemakeanyshirt.com/shop2014/admin.php

I have removed the /var folder and it recreated a new one but been sat at maintenance screen for near 2 days now.
do not want to start again for a 4th time due to this
__________________
Xanadude

http://wemakeanyshirt.com X5 with x-Cart Mobile in build
Reply With Quote
  #13  
Old 03-15-2014, 04:44 AM
 
xanadude xanadude is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 247
 

Default Re: Live Chat and additional modules help

disabled the sslseal module via SQL and its back
__________________
Xanadude

http://wemakeanyshirt.com X5 with x-Cart Mobile in build
Reply With Quote
  #14  
Old 03-19-2014, 05:45 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Live Chat and additional modules help

Hi!

So, do I understand you correctly that SslSeal module caused this problem?
Reply With Quote
  #15  
Old 05-27-2014, 11:24 AM
 
xanadude xanadude is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 247
 

Default Re: Live Chat and additional modules help

sorry Tony missed your reply - no it was not the ssl seal module.... as i re-enabled it and all was fine... not sure what the issue was....

Downside is now its no longer supported in 5.1 and I need to get the ssl seal back on and the app link images + the livechat that I had got working within it



Many thanks
__________________
Xanadude

http://wemakeanyshirt.com X5 with x-Cart Mobile in build
Reply With Quote
  #16  
Old 05-28-2014, 04:08 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Live Chat and additional modules help

Hi!

The first thing you need to do with your custom modules is
1) Find their Main.php files
2) Change getMajorVerion() method there, so it would return 5.1 instead of 5.0. After next cache rebuild, you will be able to use them.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote
  #17  
Old 05-28-2014, 04:43 AM
 
xanadude xanadude is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 247
 

Default Re: Live Chat and additional modules help

Thanks Tony
Not that clever but I will try it on the demo/clone store as a learner

__________________
Xanadude

http://wemakeanyshirt.com X5 with x-Cart Mobile in build
Reply With Quote
  #18  
Old 05-28-2014, 05:09 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Live Chat and additional modules help

Quote:
Originally Posted by xanadude
Thanks Tony
Not that clever but I will try it on the demo/clone store as a learner


I would recommend making experiments on dev copy of your store in order to be sure that your live store is not affected.

Moreover, I believe, you already have dev one installation.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote
  #19  
Old 05-28-2014, 11:20 AM
 
xanadude xanadude is offline
 

eXpert
  
Join Date: Jun 2006
Posts: 247
 

Default Re: Live Chat and additional modules help

Hi Tony

Thanks for the heads up
I got Live Livechat working in my local test site now on my desktop pc.... all I have done is put the live chat code in the skins/default/en/header/body.tpl

so the contenreads a little like this

<head{foreach:getHeadAttributes(),k,v} {k}="{v}"{end:}>
<list name="head" /><!--Begin Comm100 Live Chat Code-->
<div id="comm100-button-###"></div>
<script type="text/javascript">
var Comm100API = Comm100API || new Object;
Comm100API.chat_buttons = Comm100API.chat_buttons || [];
var comm100_chatButton = new Object;
comm100_chatButton.code_plan = ###;
comm100_chatButton.div_id = 'comm100-button-728';
Comm100API.chat_buttons.push(comm100_chatButton);
Comm100API.site_id = ######;
Comm100API.main_code_plan = ###;
var comm100_lc = document.createElement('script');
comm100_lc.type = 'text/javascript';
comm100_lc.async = true;
comm100_lc.src = 'https://chatserver.comm100.com/livechat.ashx?siteId=' + Comm100API.site_id;
var comm100_s = document.getElementsByTagName('script')[0];
comm100_s.parentNode.insertBefore(comm100_lc, comm100_s);
</script>
<!--End Comm100 Live Chat Code-->
</head>

this uses the floating button so mine is always on the right side of the page.
Hope this helps others

thanks
__________________
Xanadude

http://wemakeanyshirt.com X5 with x-Cart Mobile in build
Reply With Quote
  #20  
Old 05-28-2014, 11:27 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: Live Chat and additional modules help

The problem with this approach is that next (even minor) upgrade will erase this change. It is OK as a quick solution, but you need a separate module in the long run.
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 02:37 PM.

   

 
X-Cart forums © 2001-2020