
Bit Bayou
Members-
Posts
338 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Bit Bayou
-
Would also like to note that this module needs an update. You can not currently add any of the newer gTLDs recently made available!
-
I occasionally register domain names for my clients, but leave them in full control. Basically I add a service to their account using the Namecheap module, and either bill them accordingly or issue it free of charge to the customer per any contract agreement. I've done this successfully a couple of times in the past; had no problems with .com and .net addresses. In fact the account in question here today already had a .net domain registered this way. I went to register a .me domain, but would receive this error: The phone number in the account was set as the contact work phone in the ###-###-#### format, which worked AS IS when I registered the .net previously. I know this because I would have changed it as need last time, and it hasn't been changed since. Either way I came across https://www.namecheap.com/support/api/error-codes.aspx which states it basically needed to be in a +1.########## format since it was a US number. I corrected the account information, and when I tried again I got the same red error box as pictured, but it was blank. I didn't get to screen capture it, but there was no actual message in the error box... I then went to their website and was going to register it through them, and then transfer it later. The first attempt returned a 500 error, but the second attempt successfully registered the domain. Seeing as my first attempt on their website produced error as well, I'd assume there was a temporary glitch in their system which may have caused a blank error dialog I had received previously, but I can't be 100% sure. Sound familiar to anyone else?
-
Looking Ahead To 3.2.. Responsive Bootstrap Client Area
Bit Bayou replied to Paul's topic in The Lounge
Any tentative release date yet? Can't wait for this!- 57 replies
-
- bootstrap
- client area
-
(and 1 more)
Tagged with:
-
that's good to know; look forward to it!
-
I recently discovered the great php.js resources, and because of that I created a Gravatar Autoloader in Javascript. I'd like feedback to make it better, and trying to get some good back links auto-gravatar.js Usage Load the script <script src="//c0nfused.github.io/assets/auto-gravatar.min.js"></script> Gravatar Image Attribute Create images <img gravatar="user@demo.com" /> The gravatars should be automatically loaded.
-
The Contact Page says to email sales or submit a trouble ticket for support. There is no sales department in the "new ticket" section for creating a new trouble ticket. Sales must not do tickets? I didn't feel like opening my email at the time, and he said to contact sales, not support! --- I had attempted my own license manager and was actually making some decent progress. I've decided to go in another direction, and wouldn't mind implementing this in it's place! Though, is the cost listed yet?
-
I hope everyone here is doing OK, and no one was affected by the tragic event at SXSW 2014. http://www.cnn.com/2014/03/13/us/texas-sxsw-crash/
-
Bit Bayou isn't really a "website hosting" company in the usual sense, although we do host websites! We're more in the general sense of "web hosting" as part of a Software As A Service package. As part of our offerings, we set up and manage Internal (Employee) Portals for business clients so that they can be more efficient and cut costs on some operating expenses. As such, we've discovered that local word of mouth seems to be very effective when you offer great service.
-
oooooooohh Update: You can not submit a ticket for sales at https://account.blesta.com/client/plugin/support_manager/client_tickets/departments/ This bothers me.
-
I'm seeing a lot of threads about licenses for [re]sale. I like that people are not letting them go to waist, but maybe there should be a designated area (forum) for that.. to keep it organised? Just a random thought!
-
You see how easy that was to clarify? Thanks!
-
Question about the logic here... - OR - I like the plugin and have a use for it either way, but some of the documentation seems to be assuming that the end user has a clue! I'm always c0nfused-- theyconfuse.me/online Please clarify this for me; Thanks!
-
hah i was scrolling down the page in my Blesta install just naming a few of them off; wasn't thinking
-
The less opportunity a client has to make an excuse about payment, the better. I'm not saying things don't happen, but I hate saying "I don't accept that form of payment" --especially when it's a larger system! No I will not accept your 3 year old [fungus] sandwich as payment, but Cash, Check, Credit Card, Paypal, Bitcoin, and Google Checkout are some serious methods! I like the suggestion and would love the option! But if a client refuses every other payment method mentioned, there may be a bigger problem at hand
-
Never mind; found it
-
That's great, but how do I use a different view folder than "default" <-- This would be an awesome feature!!!
-
Sorry for the multi-post! The reason I'm asking about template switching is more or less to allow for a mobile phone version. Are there any plans to add any more built in mobile support in the near future?
-
I was toying around with and [re]working parts of the jQuery Desktop code at https://github.com/nathansmith/jquery-desktop and was thinking about using it as a website template-- http://www.bitbayou.com/desktop I will be publishing my revisions to a github when I'm done, and was thinking about a Blesta theme
-
Sounds great; I'd love the ability to change themes on the fly as mentioned, if at all possible!
-
What about an iframe? I'd like to embed my blesta install in to an iframe using one view, and the default view for direct access? Is there a way to control the view style via query string? I'm referring to the app/views/client/ folder. In there, there's a folder named default/ I'd like to create a duplicate folder, but with my customization named template1/ and then create this iframe: <iframe style="width:100%;height:98%" src="/blesta/client/?view=template1"></iframe> Where it would show template1/ to those requests. but default/ when you access /blesta/client/ directly I know I could probably, pretty easily, code this in to my install. Just not a fan of having to keep updating my code every update! I'll do what I have to do to make what I want work; just thought it was worth a request mention!
-
OK will reconsider route. Thanks!
-
Is it all PHP and Javascript/jQuery? I've made a few [basic] Node.js chat apps... Seems like the better back end for performance reasons? I will definitely be checking this out! Just curious about this
- 223 replies
-
- live chat
- online chat
-
(and 3 more)
Tagged with:
-
The idea here is so that I can access the data as needed via ajax, but also keep the full template view as a fall back-- incase the device can't do what I want It almost seems to work on most pages except for the client portal client/ when logged in... ?
-
I'm working on an ajax template. I'd like to have a way to add/remove the template on the fly. I was thinking I could do this by the query string; something like this at the top of structure.pdt <?php if( $_GET['template'] == "off" ) { die( $content ); } ?> So if the url contained ?template=off it would echo $content and then die... nothing else! If it doesn't die here, it'll continue down to output the full template, which is included below this in the file. Not getting the desired out come; seeking possible option ideas?