Author |
|
SoLinked Newbie
Joined: 15 April 2010 Location: United States
Online Status: Offline Posts: 2
|
Posted: 15 April 2010 at 10:15pm | IP Logged
|
|
|
Fatal error: Class 'CIntegration' not found in
I keep getting that no matter what example I try to pass the login info.
<?php
include('http://localhost/webmail/integr.php');
$Integr = new CIntegration('http://localhost/webmail/');
$mail = 'mymail@gmail.com';
$login = 'mymail';
$pass = 'mypassword';
$Integr->UserLoginByEmail($mail, $login, START_PAGE_IS_MAILBOX, $pass);
?>
What am I missing?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 16 April 2010 at 1:52am | IP Logged
|
|
|
According to integration API docs, you should use filesystem path with include, not URL. That would be something like:
Code:
include('webmail/integr.php'); |
|
|
Hope this helps!
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|