Jump to content

Bit Bayou

Members
  • Posts

    338
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Bit Bayou

  1. I like it! but there still isn't a Secured Green Padlock. The file https://hostreddragon.com/account/app/views/client/default/js/jqueryCookieGuard.1.0.min.js includes the cookie image from a non-secure connection: url(http://cookieguard.eu/images/cookieguardicon.png) I'd suggest uploading the image to your server and hosting on the secured connection.. Other than? Great job!
  2. I go the dark blue/navy shirt because when I think of Blesta, I think of blue (the default theme). My pictures will be coming after I go to Vegas
  3. It will be coming soon, but not yet!
  4. Yeah, they both work just fine for me. It's a simple IF statement. -- Edit -- I just recommend one or the other. Both can work together, but it's just redundant at that point.
  5. As I've learned in another thread, Blesta v1 wasn't versioned well and was mainly written at night.. But two questions: 1) Where did the idea come from? Did you see the need for a simpler system or was it just a "I wonder if I can do that better" kind of thing? 2) I'm sure this isn't the first thing you've programmed. Why the decision to sale it as a product VS anything else you've written or could have written? Just curious as to the motivation behind it all! While I don't know many programmers in person to even try to "team" with, I would like to "openly" sale a program or two one day (instead of just "custom" programs for specific, one time installs) and want to know more of the story behind this one!
  6. OR, check out the Footer() function. Original: public function Footer() { // Set the terms of the document $this->drawTerms(); // Set the page number of the document $this->drawPageNumber(); } Replace with this: public function Footer() { // Set the terms of the document, if available if( $this->meta['terms'] != '' ) { $this->drawTerms(); } // Set the page number of the document $this->drawPageNumber(); }
  7. The file default_invoice_pdf.php in "components\invoice_templates\default_invoice" has a drawTerms() function. Original: private function drawTerms() { $data = array( array(Language::_("DefaultInvoice.terms_heading", true)), array($this->meta['terms']) ); $options = array( 'font_size'=>self::$font_size_alt, 'border'=>0, 'x_pos'=>48, 'y_pos'=>-119, 'col'=>array(array('height'=>12)), 'row'=>array(array('font'=>array(self::$font_bold))) ); $this->drawTable($data, $options); } Could it not be replaced with something like this: private function drawTerms() { if( $this->meta['terms'] != '' ) { $data = array( array(Language::_("DefaultInvoice.terms_heading", true)), array($this->meta['terms']) ); $options = array( 'font_size'=>self::$font_size_alt, 'border'=>0, 'x_pos'=>48, 'y_pos'=>-119, 'col'=>array(array('height'=>12)), 'row'=>array(array('font'=>array(self::$font_bold))) ); $this->drawTable($data, $options); } } That way it only does anything at all if $this->meta['terms'] is not empty?
  8. I got my shirt in this week too!
  9. I like this idea. I understand the point of the Terms box, but if it's empty, it looks kind of funny with the word there by itself
  10. Thanks for the share! I was looking for a cheap vBulletin license, and found one!
  11. Bit Bayou

    Licensecart

    If I rotate my phone, it does look better... and yeah, I'm using the built in Android browser.
  12. I'll probably be ordering mine tomorrow...unless you know, you want to just give me one? lol Will be one of the shirts I wear at Defcon in Vegas in a month
  13. Bit Bayou

    Licensecart

    I viewed it on my mobile phone, and the logo looks rather awkward.. but I do like it!
  14. As per my original post, clocking in and out is one thing. It's all the other monitoring that seems to be extensive.. I get that you want to know what your staff did, but can't they send you an email at the end of their shift as to what happened? It's what I used to do at one of my previous jobs.
  15. Well that seems to depend on your business practices and how much you trust your staff... I mean, you'd have logs of any replies they made to support tickets, logs of any newly activated accounts, etc.... If this is the case, why don't you install one of those screen recording applications and monitor everything they do all day on any website or program? ------ You could install a third party stat counter in your admin section, so you'd see the page views per shift?
  16. Clocking in and out is one thing....logging every page view? Seems a bit extensive ---- they could be working in other windows (like researching a problem), so "idle" time doesn't seem feasible here?
  17. I just hope things get done, and don't just stay on the "to do" list... You know? There seems to be a lot of things "coming," but not here yet. I'm not saying that's bad or they won't happen, I just know plans don't always work like they should! I mean, I like feature rich tools, but they need to be easy to use! Blesta definitely has a nice and easy UI so I'm ready for some more advanced features!!
  18. A 6 hour drive is definitely a lot better than currently, seeing as I'm in Louisiana. But what's worse, I won't have a vehicle in Vegas! That 6 hour drive just became an eternity.
  19. The closest I will ever be, at least the foreseeable future, is when I go to Vegas in a month. But that's still not even close. I'd love to meet more programmers irl..especially those of the PHP persuasion!
  20. Some things can make sense (logic and business) to be both "free" and "open source." I don't think it's in everyone's best interest for Blesta to be both.
  21. Being a small operation, the $99 fee was one of the main reasons I chose Blesta in the beginning, but then I found something awesome! I was using SPB** for a while because it has some cool features-- free (*free version allows for a maximum of 25 customers*). But then I started actually using it, and the functionality became a problem even though it was free. I mean, it's not "bad" it just wasn't doing what I wanted, nor was it as easy to manage as I would have preferred. Lower priced, slightly limited, options are nice too. Not that you shouldn't get paid! Just works for the little guys too! But it does make me feel a little more at ease, knowing Blesta is powered by a fully legitimate company. The Internet has all kinds- if you know what I mean!
  22. So I love the active community and staff, but I have a question. Are the developers and staff full time, part time, or "remote?" I mean, do ya'll go to an office every day, commute via the internet when you can, or what? Don't mean to be "nosy," just wondering the set up of the company. I mean, it's a great product, but it seems kind of "cheap" to maintain an office and staff? That may be why the pricing is probably going up soon...but I mean, I can speculate all day.. lol You're missing an "About Us" page!
  23. Bit Bayou

    Licensecart

    So you have the Blesta logo on several pages of your site, except for the actual product page?? http://licensecart.com/site/blesta lol
  24. I pretty much did just that. I mean, minus the wife and kids, but yeah.
  25. Bit Bayou

    Licensecart

    How do you like Bootstrap? I've considered using it before, but never have.
×
×
  • Create New...