Posts: 108
Threads: 2
Joined: Aug 2014
Reputation:
0
Sex: Undisclosed
Thanks: 20
Given 17 thank(s) in 10 post(s)
RE: xBilling [MODULE]
10-04-2015, 02:35 PM
(10-02-2015, 11:25 AM)zustudios Wrote: (08-26-2015, 04:04 AM)BBuchanan Wrote: (08-25-2015, 06:51 AM)zustudios Wrote: I have xbilling working good so far with testing.I just have one major problem.xbilling wont send any emails.Can anyone tell me the solution?
centos 6
sentora 1.0.0
I know the free packages don't send emails...anyone else confirm this?
Also a quick question, the ipn url is the ipn_listener.php right?
I just installed sentora 1.0.3 on centos 7 I will let you know if the mail works for xbilling.
I can confirm that mail does work in xBilling as I just installed it on a fresh sentora installation and I am receiving mails.
Remi - Software Engineer, Sentora Module Developer, Owner, imerLabs
Please mark threads as SOLVED if your problem has been resolved.
Do not PM Staff Members for help unless asked to do so, this is so that others can benefit from your solution.
Do a SEARCH before asking in the forums, a solution may already exist.
Posts: 31
Threads: 4
Joined: Sep 2015
Reputation:
0
Thanks: 13
Given 0 thank(s) in 0 post(s)
RE: xBilling [MODULE]
10-04-2015, 02:46 PM
(10-04-2015, 02:33 PM)modpluz Wrote: (10-04-2015, 01:14 PM)coitam Wrote: (10-03-2015, 03:11 PM)modpluz Wrote: For everyone having this issue, it is now resolved. Please download the frontend package again from xBilling Admin.
Respective source codes have also be updated on Github.
I upgraded front-end site on Github (https://github.com/modpluz/xbilling-frontend) but my site still error "Problem reading data from http://webhost.ddns.net/api/xbilling". Please help me!
That's not the issue I was referring to. Yours is a different issue that has nothing to do with xBilling but your setup/installation. Thanks
Sorry but i upgraded your module and front-end site on github and i setup with guide in this topic but it not work. Can you tell mo how to setup it for work. Very fun about your reply.
Posts: 108
Threads: 2
Joined: Aug 2014
Reputation:
0
Sex: Undisclosed
Thanks: 20
Given 17 thank(s) in 10 post(s)
RE: xBilling [MODULE]
10-04-2015, 03:02 PM
(10-04-2015, 02:46 PM)coitam Wrote: (10-04-2015, 02:33 PM)modpluz Wrote: (10-04-2015, 01:14 PM)coitam Wrote: (10-03-2015, 03:11 PM)modpluz Wrote: For everyone having this issue, it is now resolved. Please download the frontend package again from xBilling Admin.
Respective source codes have also be updated on Github.
I upgraded front-end site on Github (https://github.com/modpluz/xbilling-frontend) but my site still error "Problem reading data from http://webhost.ddns.net/api/xbilling". Please help me!
That's not the issue I was referring to. Yours is a different issue that has nothing to do with xBilling but your setup/installation. Thanks
Sorry but i upgraded your module and front-end site on github and i setup with guide in this topic but it not work. Can you tell mo how to setup it for work. Very fun about your reply.
Make sure you have a ".htaccess" file in your "/panel" directory and that your API in xBilling "config.php" matches the API Key on your Sentora installation.
Remi - Software Engineer, Sentora Module Developer, Owner, imerLabs
Please mark threads as SOLVED if your problem has been resolved.
Do not PM Staff Members for help unless asked to do so, this is so that others can benefit from your solution.
Do a SEARCH before asking in the forums, a solution may already exist.
Posts: 31
Threads: 4
Joined: Sep 2015
Reputation:
0
Thanks: 13
Given 0 thank(s) in 0 post(s)
RE: xBilling [MODULE]
10-04-2015, 03:25 PM
(This post was last modified: 10-05-2015, 12:12 AM by TGates.)
(10-04-2015, 03:02 PM)modpluz Wrote: Make sure you have a ".htaccess" file in your "/panel" directory and that your API in xBilling "config.php" matches the API Key on your Sentora installation.
This is file .htaccess:
Code: RewriteEngine On
# Announcements
RewriteRule ^announcements/([0-9]+)/[a-z0-9_-]+\.html$ ./announcements.php?id=$1 [L,NC]
RewriteRule ^announcements$ ./announcements.php [L,NC]
# Downloads
RewriteRule ^downloads/([0-9]+)/([^/]*)$ ./downloads.php?action=displaycat&catid=$1 [L,NC]
RewriteRule ^downloads$ ./downloads.php [L,NC]
# Knowledgebase
RewriteRule ^knowledgebase/([0-9]+)/[a-z0-9_-]+\.html$ ./knowledgebase.php?action=displayarticle&id=$1 [L,NC]
RewriteRule ^knowledgebase/([0-9]+)/([^/]*)$ ./knowledgebase.php?action=displaycat&catid=$1 [L,NC]
RewriteRule ^knowledgebase$ ./knowledgebase.php [L,NC]
and config.php file:
Code: <?php
/**
* API connection settings for xBilling
* Version : 1.2.0
* @author Aderemi Adewale (modpluz @ Sentora Forums)
* Email : goremmy@gmail.com
* @desc This allows front-end billing package interact with the backend module
*/
// Config;
$cfg = array();
$cfg['api_key'] = '<=removed by admin for security reasons =>';
$cfg['panel_url'] = 'http://webhost.ddns.net';
$cfg['zpx_uid'] = 1;
if(strpos($cfg['panel_url'], 'http') === false){
$cfg['panel_url'] = 'http://'.$cfg['panel_url'];
}
?>
and etc/php.ini:
Code: ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
; http://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-include
allow_url_include = On
Posts: 3 ,662
Threads: 241
Joined: May 2014
Reputation:
85
Sex: Male
Thanks: 408
Given 599 thank(s) in 464 post(s)
RE: xBilling [MODULE]
10-05-2015, 12:13 AM
his API key was there, I removed it for obvious reasons
-TGates - Project Council
SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE
Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Posts: 31
Threads: 4
Joined: Sep 2015
Reputation:
0
Thanks: 13
Given 0 thank(s) in 0 post(s)
RE: xBilling [MODULE]
10-05-2015, 06:11 PM
Please help me!thank all
Posts: 3 ,662
Threads: 241
Joined: May 2014
Reputation:
85
Sex: Male
Thanks: 408
Given 599 thank(s) in 464 post(s)
RE: xBilling [MODULE]
10-06-2015, 01:15 AM
Where is that .htaccess file located? That is NOT the original /etc/sentora/panel/.htaccess file! It is missing all of the Sentora definitions
Original: https://github.com/sentora/sentora-core/.../.htaccess
You need to merge the two together.
-TGates - Project Council
SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE
Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Posts: 31
Threads: 4
Joined: Sep 2015
Reputation:
0
Thanks: 13
Given 0 thank(s) in 0 post(s)
RE: xBilling [MODULE]
10-07-2015, 12:17 AM
(10-06-2015, 01:15 AM)TGates Wrote: Where is that .htaccess file located? That is NOT the original /etc/sentora/panel/.htaccess file! It is missing all of the Sentora definitions
Original: https://github.com/sentora/sentora-core/.../.htaccess
You need to merge the two together.
Yes. That's .htaccess of panel ihave team viewer who can hell me? Please
Posts: 3 ,662
Threads: 241
Joined: May 2014
Reputation:
85
Sex: Male
Thanks: 408
Given 599 thank(s) in 464 post(s)
RE: xBilling [MODULE]
10-07-2015, 03:51 AM
Did you merge the two and try it again? Just copy and paste it into the one you already have.
-TGates - Project Council
SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE
Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Posts: 31
Threads: 4
Joined: Sep 2015
Reputation:
0
Thanks: 13
Given 0 thank(s) in 0 post(s)
RE: xBilling [MODULE]
10-07-2015, 04:07 PM
Yes, i merge file .htaccess in panel
|