| Author |
Message |
notafinga
Newbie


Joined: Nov 03, 2007
Posts: 16
|
Posted:
Thu Aug 28, 2008 7:44 am |
|
Ok I had for the first time an issue where I am trying to add a theme to the client but it keeps saying unable?
Any ideas or am I doing this correct?
I would like to add to the clients that have purchase a silver or gold package instead of continually adding to the silver or gold zips. instead I want to just add to the clients account. This has worked for me 2 times now but for some reason when I try now it wont take.
Any help would be appreciated.
Thanks |
|
|
|
 |
crysis
Newbie


Joined: Jun 27, 2008
Posts: 3
|
Posted:
Wed Sep 03, 2008 4:20 am |
|
i'm having the same problem gotcha if you can help thanks  |
|
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 726
|
Posted:
Thu Sep 04, 2008 10:32 am |
|
Hi, I haven't been able to duplicate this problem so I'll need you both to turn on the debugging messages and then try to add a client. Turn on debugging in (modules/Digital_Shop)/lib/constants.php by changing the following from false to true.
| Code: |
| define('SHOP_DEBUG', true); |
|
|
|
|
 |
notafinga
Newbie


Joined: Nov 03, 2007
Posts: 16
|
Posted:
Thu Sep 04, 2008 12:01 pm |
|
PM Sent Gotcha, and thanks for looking into this,. |
|
|
|
 |
trunks
Repeat Offender

Joined: Jan 10, 2008
Posts: 37
|
Posted:
Mon Sep 08, 2008 10:07 am |
|
Are you going through the 'add client' part of the shop guys? |
|
|
|
 |
notafinga
Newbie


Joined: Nov 03, 2007
Posts: 16
|
Posted:
Wed Sep 24, 2008 7:28 am |
|
I figured the problem out...now to just fix it.
If I have a client named DD_notafinga I cant add because of the underscore. Is there a work around for this? |
|
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 726
|
Posted:
Wed Sep 24, 2008 9:14 am |
|
Try this...
Open modules/Digital_Shop/lib/class.userManager.php
Find the following line:
| Code: |
| $uname = $this->_db->escape($in_uname, true); |
and change it to
| Code: |
| $uname = $this->_db->escape($in_uname); |
Please let me know if that works  |
|
|
|
 |
notafinga
Newbie


Joined: Nov 03, 2007
Posts: 16
|
Posted:
Wed Sep 24, 2008 10:43 am |
|
You the man.. works like a charm.
Thanks again for the fast response. |
|
|
|
 |
|
|