14.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

06-26-2014, 11:13 PM
Post: #1
[GET] Codecanyon - Adaptive v1.2 Client Manager: Management and Invoicing [Latest Update]
07-04-2014, 08:38 AM
Post: #2
RE:
how do i install?
07-04-2014, 08:56 AM (This post was last modified: 07-04-2014 08:59 AM by Loomy.)
Post: #3
RE:
Ive seen this about, but first time im actually 'seeing' it ;) So cheers, i will defo check it out

@ homeronweed.. i imagine its standalone, usually enter db info to config file, upload to its own folder, open that folder or setup/install from browser, and bobs ur uncle...usually
07-04-2014, 11:59 AM (This post was last modified: 07-04-2014 01:02 PM by homeronweed.)
Post: #4
RE:
yeah it works quite well but i can not get email to work.

PHP Code:
<?php
class EmailConfig {

public 
$mail = array(
    
'transport' => 'Mail',
    
'from' => 'test@test.com',       
    
'charset' => 'utf-8',
    
'headerCharset' => 'utf-8',
);

public 
$smtp = array(
    
'transport' => 'Smtp',
    
'from' => array('site@localhost' => 'My Site'),
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => false,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);

public 
$gmail = array(
    
'host' => 'ssl://smtp.gmail.com',
    
'port' => 465,
    
'username' => 'test@test.com',
    
'password' => 'myPass',
    
'transport' => 'Smtp'
);

public 
$fast = array(
    
'from' => 'you@localhost',
    
'sender' => null,
    
'to' => null,
    
'cc' => null,
    
'bcc' => null,
    
'replyTo' => null,
    
'readReceipt' => null,
    
'returnPath' => null,
    
'messageId' => true,
    
'subject' => null,
    
'message' => null,
    
'headers' => null,
    
'viewRender' => null,
    
'template' => false,
    
'layout' => false,
    
'viewVars' => null,
    
'attachments' => null,
    
'emailFormat' => null,
    
'transport' => 'Smtp',
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => true,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);
 } 

if anyone gets this installed let me know if you figure out how to use the email function. thanks
07-07-2014, 10:17 AM
Post: #5
RE:
(07-04-2014 11:59 AM)homeronweed Wrote:  yeah it works quite well but i can not get email to work.

PHP Code:
<?php
class EmailConfig {

public 
$mail = array(
    
'transport' => 'Mail',
    
'from' => 'test@test.com',       
    
'charset' => 'utf-8',
    
'headerCharset' => 'utf-8',
);

public 
$smtp = array(
    
'transport' => 'Smtp',
    
'from' => array('site@localhost' => 'My Site'),
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => false,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);

public 
$gmail = array(
    
'host' => 'ssl://smtp.gmail.com',
    
'port' => 465,
    
'username' => 'test@test.com',
    
'password' => 'myPass',
    
'transport' => 'Smtp'
);

public 
$fast = array(
    
'from' => 'you@localhost',
    
'sender' => null,
    
'to' => null,
    
'cc' => null,
    
'bcc' => null,
    
'replyTo' => null,
    
'readReceipt' => null,
    
'returnPath' => null,
    
'messageId' => true,
    
'subject' => null,
    
'message' => null,
    
'headers' => null,
    
'viewRender' => null,
    
'template' => false,
    
'layout' => false,
    
'viewVars' => null,
    
'attachments' => null,
    
'emailFormat' => null,
    
'transport' => 'Smtp',
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => true,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);
 } 

if anyone gets this installed let me know if you figure out how to use the email function. thanks
Hey wanna explain a bit or send pm ? Ill be glad to try m ybest to help. Email is working fine for me (at least when sending out invoice wiht pdf attached), havnt really tested it any other way.
If it helps im using the google mail option, (or my own smtp details). Also any email is entered in the admin settings, u shouldnt have to edit anyof the php as far as i remember. either way email addresses u listed above, maybe change them to an active email account on the same domain, see if that helps. Drop me an inbox anytime i will take a look
14.gif
07-14-2014, 10:31 AM
Post: #6
RE:
(07-07-2014 10:17 AM)Loomy69za Wrote:  
(07-04-2014 11:59 AM)homeronweed Wrote:  yeah it works quite well but i can not get email to work.

PHP Code:
<!--?php
class EmailConfig {

public 
$mail = array(
    
'transport' => 'Mail',
    
'from' => 'test@test.com',       
    
'charset' => 'utf-8',
    
'headerCharset' => 'utf-8',
);

public 
$smtp = array(
    
'transport' => 'Smtp',
    
'from' => array('site@localhost' => 'My Site'),
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => false,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);

public 
$gmail = array(
    
'host' => 'ssl://smtp.gmail.com',
    
'port' => 465,
    
'username' => 'test@test.com',
    
'password' => 'myPass',
    
'transport' => 'Smtp'
);

public 
$fast = array(
    
'from' => 'you@localhost',
    
'sender' => null,
    
'to' => null,
    
'cc' => null,
    
'bcc' => null,
    
'replyTo' => null,
    
'readReceipt' => null,
    
'returnPath' => null,
    
'messageId' => true,
    
'subject' => null,
    
'message' => null,
    
'headers' => null,
    
'viewRender' => null,
    
'template' => false,
    
'layout' => false,
    
'viewVars' => null,
    
'attachments' => null,
    
'emailFormat' => null,
    
'transport' => 'Smtp',
    
'host' => 'localhost',
    
'port' => 25,
    
'timeout' => 30,
    
'username' => 'user',
    
'password' => 'secret',
    
'client' => null,
    
'log' => true,
    
//'charset' => 'utf-8',
    //'headerCharset' => 'utf-8',
);
 } 

if anyone gets this installed let me know if you figure out how to use the email function. thanks
Hey wanna explain a bit or send pm ? Ill be glad to try m ybest to help. Email is working fine for me (at least when sending out invoice wiht pdf attached), havnt really tested it any other way.
If it helps im using the google mail option, (or my own smtp details). Also any email is entered in the admin settings, u shouldnt have to edit anyof the php as far as i remember. either way email addresses u listed above, maybe change them to an active email account on the same domain, see if that helps. Drop me an inbox anytime i will take a look


yeah when i go to quote - > then i press send email to client and i get "Error: An Internal Error Has Occurred."


Maybe send me a copy of your file and edit it with BESTBLACKHAT@TEST.com or something to hide your info but so i know what fields to edit. and i am using gmail as well but it's my website. like it is email@mysite.com but i can log in with that on gmail since i have the google apps. I don't know if that makes a difference. But yeah maybe that might be a good start if i can see what you edited on the file.


Thanks and if anythign i'll pm you
08-01-2014, 05:46 PM
Post: #7
RE:
Dear Friend,

I have 500 Internal Server Error in Adaptive v1.2 Client Manager. Pls help me to solve this problem.

Thanks.
08-06-2014, 09:09 PM
Post: #8
RE:
Pls reply me.
08-10-2014, 05:45 PM
Post: #9
RE:
No one help me to this problem. But i found the issue for Adaptive v1.2 Client Manager 500 internal sever error and I solve the problem.Now its work well. Any one want the solution for Adaptive v1.2 Client Manager 500 internal sever error, pls inform me. I will help you... Welcome




67.gif