Jump to content

MemoryX2

Members
  • Posts

    538
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    MemoryX2 got a reaction from Ken in Rasberry Pi?   
    I have one.
    I really like it. Its not as powerful as I would like but for the money its very nice.
    I use mine as a home media center basically. I run raspbmc on it and it loads all of my media off of a NFS. It works really well, it could be better but it is still good.
  2. Like
    MemoryX2 got a reaction from Michael in Rasberry Pi?   
    I have one.
    I really like it. Its not as powerful as I would like but for the money its very nice.
    I use mine as a home media center basically. I run raspbmc on it and it loads all of my media off of a NFS. It works really well, it could be better but it is still good.
  3. Like
    MemoryX2 got a reaction from ezpnet in Configurable Options Sneak Peak   
    It does look awesome!! 
     
    Changing the subject, I actually beat you on first reply for the first time ever Mike! Haha 
  4. Like
    MemoryX2 got a reaction from Michael in Mass Emailing Clients How To Request   
    Not really. At this point I don't think the devs are even sure. Paul has stated in the past he wants about a 6 ~ 8 week release period, at least something close to that. (I'm trying to remember but not 100%) But anyway. their will be a 3.0.5 out soon, maybe even this week so I would assume that earliest would be roughly 6 weeks from when 3.0.5 is released but their may be a 3.0.6 so it's hard to say. depends on the bugs and all. Most seem to be squashed out. 
     
    I have to say, we are interested in mass mailing as well. Didn't really realize how nice it was until it was gone.
  5. Like
    MemoryX2 reacted to Michael in Php 5.3 To Php 5.4 - The Form Token Is Invalid.   
    yeah if you select PHP 5.4 you can't see the option
  6. Like
    MemoryX2 reacted to Paul in Cpanel Extended Module Withdrawn?   
    I don't think MG will be issuing refunds, but you can inquire with them. We will be releasing a free and unencoded version of the module with no license validation. I suggest continuing to use the one you purchased from MG until we release the open version, which will likely be later this week.
  7. Like
    MemoryX2 got a reaction from JoieDeMort in Google Analytics   
    So its actually really easy to set it up already. Just add the script google analytics gives you at the bottom of the structure.pdt for whatever company you want to track.
  8. Like
    MemoryX2 reacted to Cody in Notifications For Tasks After Install   
    The install.php file can't be used to mess anything up. If it could, we'd require removing it. I think you're just used to other applications that require you to do that. Blesta is smarter than those applications.
  9. Like
    MemoryX2 got a reaction from Michael in Google Analytics   
    Hmm.. You might could use a php if statement in the mean time. if company_id==1 then .... else .... and have two different scripts from google for the two sites.
  10. Like
    MemoryX2 reacted to Paul in Release 3.0.4   
    Awesome!
     
     
    Awesome!
     
     
    I believe it is a time issue. The revenue is correct, just not for the time period you expect. We need to investigate a bit more.
  11. Like
    MemoryX2 got a reaction from Paul in Release 3.0.4   
    I haven't upgraded yet but I wanted to say I really like how you layed out the security fixes.
    The fact that you mentioned their were potential security issues and the fact you fixed them. Well done!
  12. Like
    MemoryX2 got a reaction from Michael in Email Piping   
    I have it fixed again. This did it for me:
     
    pipe1.php if you're using multiple companies copy this into multipe files, pipe2.php, pipe3.php etc and then update $company_id = 1; to whatever company number the pipe corresponds to then forward to the file.
    #!/usr/local/bin/php -q <?php /** * This files pipes email messages into the system. This is configured to process * messages for only a single company ID. Clone this file and change the * $company_id variable below to add pipe support for additional companies. */ $company_id = 1; try { include(dirname(__FILE__) . DIRECTORY_SEPARATOR . ".." . DIRECTORY_SEPARATOR . ".." . DIRECTORY_SEPARATOR . "lib/init.php"); $_SERVER['REQUEST_URI'] = null; $argv = array( '', 'plugin/support_manager/ticket_pipe/index/' . $company_id ); unset($company_id); // Dispatch the Web request if (!empty($_SERVER['REQUEST_URI'])) Dispatcher::dispatch($_SERVER['REQUEST_URI']); // Dispatch the CLI request else Dispatcher::dispatchCli($argv); } catch (Exception $e) { try { // Attempt to raise any error, gracefully Dispatcher::raiseError($e); } catch (Exception $e) { if (Configure::get("System.debug")) echo $e->getMessage() . " on line <strong>" . $e->getLine() . "</strong> in <strong>" . $e->getFile() . "</strong>\n" . "<br />Printing Stack Trace:<br />" . nl2br($e->getTraceAsString()); else echo $e->getMessage(); } } ?>  
  13. Like
    MemoryX2 reacted to Tyson in Coupon Accepted...   
    This is in v3.0.3.
  14. Like
    MemoryX2 got a reaction from Michael in Email Piping   
    Haha. I'll let you know what we figure out.
  15. Like
    MemoryX2 reacted to Tyson in Bad Luck Day?   
    I read this as "I'm sitting in the emergency room with my wife at the moment. Two 9mm shots to the kidney, and a bladder infection." For a second there, I thought you got shot. And then I wondered why you would be on the forums at a time like this.
  16. Like
    MemoryX2 reacted to Paul in Server Location Choice   
    I think this would be a change to the cPanel module to allow a location to be specified on each cPanel server in the module configuration, and then a service field would be created to allow the user to select from it.
     
    It's a good idea, we'll need to look at in in more detail. If you have a recommendation of how it should be implemented, please let us know.
  17. Like
    MemoryX2 reacted to RRWH in Customizing Blesta Interface   
    After reading the excellent Site integration tutorial - I quickly came to realize that we can modify almost all aspects of the Site.
     
    WARNING WARNING WARNING  - ALWAYS MAKE A BACKUP BEFORE MODIFYING ANY FILES
     
    There are a LOT of *pdt files within a blesta install, and the one you want to modify is usually pretty easy to find.
     
    From the doc root of your Blesta install, simply do the following
     
    # find . -name "*pdt"  
    This will give you a list of ALL the PDT files used for the presentation of the site.
     
    Now, say you have a little specific mod you want to do (and yes) I did.
     
    The Mod I wanted to make was really quite simple - it is on the Support page.  (Portal -> Support)
     
    We are setting up several Support departments - we only have a single Support department listed where you can raise a request without being logged in, all other departments you need to be logged in.  As it is not obvious, we wanted to add a little bit of extra text to the page.
     
    First, look at the URL of the Page you are going to:
     
    https://yoursite/client/plugin/support_manager/client_tickets/departments/  
    next list ALL the pdt files so we can identify what we want to modify, we went looking thru the list for a file that was a close match to the page path.
     
    ./plugins/support_manager/views/default/client_tickets_departments.pdt  
    looked to be a likely candidate for what we were trying to achieve.
      First thing, we make a backup of the original file, just in case we mess it up and can easily revert to the original
     
    # cp client_tickets_departments.pdt client_tickets_departments.pdt_orig  
    Then with your favorite editor, modify the file.
     
    We wanted to add a very simple message to the page 
     
    <div style="margin: 0 0 0 4em"><p><br />Existing Clients, Please login to see all Support departments</p></div>  
    Well, we took a moment, looked over the code and found what appeared to be the place where we wanted to add the text to the page.
     
                            <div class="heading first">                                 <h5><?php $this->_("ClientTickets.departments.heading_details");?></h5>                         </div> <div style="margin: 0 0 0 4em"><p><br />Existing Clients, Please login to see all Support departments</p></div>                         <div id="departments" class="pad">   Now, when you go to Portal -> Support you will see what we added (see the attached Image) - In this case, it was pretty east to see where within the pdt file we needed to make the addition.   Pretty Simple!   The Final Step - remember, if you do an update or install a newer version that your mods may be removed.  You should also be keeping a document somewhere of what files you modify and exactly what you changed, so in the event that an upgrade replaces the file you modified, you can easily put your changes back in place - and of course, making a copy of the files you modified as well is probably a good idea as well.   Looking forward to seeing some of the other customization's that everyone does.
  18. Like
    MemoryX2 reacted to Paul in Opensrs / Tucows   
    Thanks, it's intentional. I've seen some people complain that Blesta looks "too slim", but we did that on purpose. While we will be adding in additional support for a lot of things, or goal is to keep everything simple. The fact is that the multi-level, super long nav that our competitors have contains things most people never need. The way we implemented the plugin system, and designed things overall, reduces the number of links to those actually necessary and settings and things that aren't needed on a frequent basis are hidden away.
     
    The problem for us I think, is that people are use to the clutter, but I'm hopeful that once they spend enough time in Blesta they will come to appreciate the way we handled the UI.
  19. Like
    MemoryX2 reacted to Michael in Opensrs / Tucows   
    Blesta UI is the best I've seen to be honest, it's simple and easy to find things.
  20. Like
    MemoryX2 got a reaction from wdfee in Knowledge Base / Faq For Support Manager Module   
    Really looking forward to a knowledgebase.
  21. Like
    MemoryX2 got a reaction from Michael in Piping Emails.   
    I'm just glad I had a pre 2536 support ticket data base backup.. I restored so that I didn't have to mess with that
  22. Like
    MemoryX2 got a reaction from lots.0.logs in Enom Status   
    Is there any news on eNom registry module?
     
    I know you guys are slammed right now, but honestly I would take anything you've got for the time being even if it's pre alpha. I am certainly willing to test beta's for this as it is highly needed.
     
     
    Thanks.
     
  23. Like
    MemoryX2 got a reaction from eunger9 in Email Client: Select Template   
    It would be nice if when emailing a client we had the option to select a template to send the client.
     
    This came in handy when using our old billing system.
  24. Like
    MemoryX2 got a reaction from Blesta Addons in Newsletter Plugin   
    I was actually just working on my email templates..
     

  25. Like
    MemoryX2 got a reaction from Michael in Newsletter Plugin   
    I was actually just working on my email templates..
     

×
×
  • Create New...