Jump to content

MemoryX2

Members
  • Posts

    538
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MemoryX2

  1. My time zone is Central Standard Time. I have it set to Chicago in Blesta. Also something interesting, my revenue today is for yesterdays revenue. It shows the amount today that should have shown yesterday.
  2. I just noticed today that when viewing the billing overview the revenue today is not updating. Revenue this month increases like normal but Revenue today doesn't seem to change. Also, With a little more testing on a test account the invoice says applied on 9/20/2013 but then the actual transaction dates 9/21/2013?? My system time is correct as well as my server time, I just checked both. MYSQL 5.5 CENTOS 6.3 PHP 5.3.26
  3. I really really like that idea! +1 That would be perfect!!
  4. MemoryX2

    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(); } } ?>
  5. MemoryX2

    Email Piping

    Definitely not what I was hoping to hear. I was hoping you would be like do this and it fixes it.
  6. MemoryX2

    Email Piping

    Is anyone else having issues with this? I really need to get this fixed. If someone has a solution please share. Thanks.
  7. It would be nice if their was some way to set the modified routes for admin and clients URLs where they are not replaced on every upgrade. Maybe a secondary file that is not overwritten. If staticRoutes.php then use it. If not use default. staticRoutes.php would be created by the user. Another option would be a customizeable field in the blesta settings where the URLs can be changed and blesta creates a config file in the uploads directory. My goal with this is to reduce the file modifications needed on every update.
  8. MemoryX2

    Email Piping

    Haha. I'll let you know what we figure out.
  9. MemoryX2

    Email Piping

    I can when I get home tonight. Does yours work?
  10. MemoryX2

    Email Piping

    |/home/username/public_html/members/plugins/support_manager/pipmod.php Pipmod is the previously mentioned pipe1 modification. It contains the exact code as pipe.php except with the previously noted changes. The permissions are 744 because if I use 644 I get an email response saying unable to execute the file.
  11. MemoryX2

    Email Piping

    All of my support departments are set to piping.. I'm not exactly sure what you mean.
  12. MemoryX2

    Email Piping

    I'm getting replys that contain this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us" dir="ltr"> <head> <title>Blesta</title> <link rel="stylesheet" type="text/css" href="/app/views/errors/css/styles.css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <div class="program_error"> <h3>Oh noes!</h3> <div class="contents"> <p>session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent on line <strong>170</strong> in <strong>/home/kyle1992/public_html/members/components/session/session.php</strong></p> </div> </div> </body> </html><br /> <b>Fatal error</b>: Uncaught exception 'UnknownException' with message 'Invalid callback Session::sessionWrite, cannot access private method Session::sessionWrite()' in Unknown:0 Stack trace: #0 [internal function]: UnknownException::setErrorHandler(2, 'Invalid callbac...', 'Unknown', 0, Array) #1 {main} thrown in <b>Unknown</b> on line <b>0</b><br /> <br /> <b>Warning</b>: Invalid callback Session::sessionClose, cannot access private method Session::sessionClose() in <b>Unknown</b> on line <b>0</b><br /> ------ This is a copy of the message, including all the headers. ------ My ticket received mail template is : <p> We have received your request and someone will be looking at it shortly.</p> So I don't think my template is the error.
  13. MemoryX2

    Email Piping

    I am using one company at the moment so if that will work I'm will to sacrifice the multi company functionality. The question for me is, what is I create a new php file like pipemod.php that won't be overwritten on every update and put the exact same code in it as pipe.php along with the mentioned code changes then I send all of my emails to pipemod.php will that work? The goal here is for it work before and after an update. If its not multi company I don't care I just need it to work and not worry about it.
  14. MemoryX2

    Email Piping

    I really appreciate the help, and am excited to get this fixed.
  15. MemoryX2

    Email Piping

    I would really like to see this fixed. I can give you free access to a cpanel account and everything. But it would be great to have this fixed.. I understand that cpanel is most likely the problem here, but I'm by far not the only person using it so if it worked that would help y'all too.
  16. MemoryX2

    Email Piping

    WHMCS piping worked every time, no problem.
  17. I read it like that too
  18. MemoryX2

    Email Piping

    Is anyone else having issues with email piping? This is a big pita. Everything I do on Blesta works great but email piping. I get it to sorta work, and then with every upgrade it no longer pipes. I did read this page: http://docs.blesta.com/display/user/Support+Manager#SupportManager-EmailPiping I've fixed up the program with hasbangs and executables etc. I would love to see this so that in the future it works and I'm not wondering if my emails are coming through or not.. My issue is that emails are not piped into the system, and if I ever get the emails piping into the system then the next upgrade breaks it again. I'm using: Blesta 3.0.2 cPanel 11.38.2 centos php 5.3.26
×
×
  • Create New...