Author |
|
XxDeepxX Newbie
Joined: 27 June 2008
Online Status: Offline Posts: 3
|
Posted: 27 June 2008 at 2:20pm | IP Logged
|
|
|
Hi... check the page out:
***removed***
Please Help!
Heres FTP access directly to the mailbee directory [home directory of ***removed***].
Host: ***removed***
User: ***removed***
Pass: ***removed***
Port: 21
Hope the users are good and dont misuse the above info
|
Back to Top |
|
|
XxDeepxX Newbie
Joined: 27 June 2008
Online Status: Offline Posts: 3
|
Posted: 27 June 2008 at 2:24pm | IP Logged
|
|
|
I also emailed afterlogic by support request form
but i expect faster help from here
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 27 June 2008 at 10:45pm | IP Logged
|
|
|
We've replied you via e-mail. Please let us know if you received our reply.
Please don't publish logins/passwords on this forum for security reasons. We removed all the private data, but users which are subscribed to this forum already got a message with this information. We recommend you to change the password to avoid intrusion.
Best regards,
Andrew
|
Back to Top |
|
|
XxDeepxX Newbie
Joined: 27 June 2008
Online Status: Offline Posts: 3
|
Posted: 28 June 2008 at 11:45am | IP Logged
|
|
|
U HAVENT replied through email: here email address again: webmaster@hackergrounds.com
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 28 June 2008 at 12:11pm | IP Logged
|
|
|
We did reply to the request you submitted through our support form. We've just resent that reply to webmaster@hackergrounds.com.
If you don't receive the reply again, please check your antispam filter configuration.
Best regards,
Andrew
|
Back to Top |
|
|
MarioKalEl Newbie
Joined: 24 July 2008 Location: Peru
Online Status: Offline Posts: 2
|
Posted: 24 July 2008 at 10:20am | IP Logged
|
|
|
Hello, I am from Peru and I don't speak english very well.
Please can you Andrew put what changes must be done?? I have the same problem: WebMail Probably not configured
Look, I have read the "WebMail PHP Installation Instructions for Windows" located in "help" folder.
And I don't understand the steps: 5 and 6, that said:
5.- Make sure the files can be written into "data" folder by the MailBee WebMail PHP application:
* for Windows IIS server, make sure Internet Guest User has "Full Control" permission for the "data" folder and all its subfolders.
Note: if "data" folder permissions are not set, MailBee WebMail PHP may not be able to create/ delete temporary files or folders and to save "Administration Console" settings.
6.- Please check up if the 'index.php' file is present in the list of default documents and if the default documents are enabled in the properties of your web site (see the 'Documents' tab of web site properties in IIS Manager). If 'index.php' file is present in the list of default documents, all users will be able to access MailBee WebMail PHP at http://www.server.com/webmailphp (otherwise, they have to access it at http://www.yourserver.com/webmailphp/index.php).
Please, can you be more specific
Note: I am using the test server named: "XAMPP"
Thank you.
Sorry for my english
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 28 July 2008 at 2:12am | IP Logged
|
|
|
Those documentation articles are written in reference to IIS webserver for Windows, but you are using Apache which is part of XAMPP software package, so there's no need to worry about permissions in your case.
The thing you should do is to specify the path to the data folder in inc_settings_path.php file, see the example below:
Code:
<?php
$dataPath = 'c:/xampp/htdocs/webmail/data/';
?> |
|
|
Regards,
Igor
|
Back to Top |
|
|
ratamahata Newbie
Joined: 09 August 2008
Online Status: Offline Posts: 1
|
Posted: 09 August 2008 at 5:05pm | IP Logged
|
|
|
Hi I have same problem than XxDeepxX
I have uploaded to my server but i get this error "WebMail Probably not configured" i configure the inc_settings_path.php "http://www.mydomain.com/mailbeedata" Is that correct? thank you in advance
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 10 August 2008 at 5:33am | IP Logged
|
|
|
"http://www.mydomain.com/mailbeedata" is a web path, while you should specify a physical path like "C:\Program Files\WebMail Lite\" (for Windows) or "/var/data/webmail" (for Unix).
This topic of MailBee FAQ should be useful to you.
Best regards,
Andrew
|
Back to Top |
|
|
gbnexon Newbie
Joined: 03 September 2008 Location: Peru
Online Status: Offline Posts: 2
|
Posted: 03 September 2008 at 4:45pm | IP Logged
|
|
|
I'm using the same software ---> XAMPP, so I need to specify this into the "inc_settings_path.php":
<?php
$dataPath = 'c:/xampp/htdocs/webmail/data/';
?>
I have the "data" folder into the "webmail" folder already.
Now, what i have to do?
I need to upload the "inc_settings_path.php" again to the Hosting with the other files of "web" folder??, right??
And another question...if I specify "c:/xampp/...." I should have the XAMPP running??
Thank you for everything!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 04 September 2008 at 1:08am | IP Logged
|
|
|
If we understood you correctly, you use XAMPP on your local machine for testing purposes, but you are also going to run WebMail Lite on your webhosting account. Those two installations do not depend on each other, they may have different settings, paths etc. Moreover, if you shutdown your local XAMPP service, this wouldn't affect WebMail Lite running on your hosting account.
For WebMail Lite to run on webhosting account, you should set the $datapath value according to the location of the data folder on your webhosting account and not on your local machine. The "c:/xampp/..." path would work ONLY on your local machine.
To find out the filesystem path of your hosting account, you may run the following script from there:
Code:
<?php
echo $_SERVER["DOCUMENT_ROOT"];
?> |
|
|
Please note that it's not recommended to put the data folder of your WebMail Lite installation into the web folder. It should be placed outside of the document root for security reasons.
This topic of MailBee FAQ should be useful to you.
Regards,
Igor
|
Back to Top |
|
|