[MODULE] xBilling
RE: xBilling [MODULE]
(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.
Reply
RE: xBilling [MODULE]
(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.
Reply
RE: xBilling [MODULE]
(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.
Reply
RE: xBilling [MODULE]
(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
Reply
RE: xBilling [MODULE]
his API key was there, I removed it for obvious reasons Wink
-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
Reply
RE: xBilling [MODULE]
Please help me!thank all
Reply
RE: xBilling [MODULE]
Where is that .htaccess file located? That is NOT the original /etc/sentora/panel/.htaccess file! It is missing all of the Sentora definitions Huh 

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
Reply
RE: xBilling [MODULE]
(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 Huh 

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
Reply
RE: xBilling [MODULE]
Confused
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
Reply
RE: xBilling [MODULE]
        Yes, i merge file .htaccess in panel
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
[Request] BoxBilling api module. cyber1995 4 15 ,474 10-23-2021, 05:29 AM
Last Post: sparkrack
Module Repo Beta Chris L 3 8 ,972 08-13-2021, 02:32 AM
Last Post: Chris L
Cloud module repo spoonman 0 3 ,198 02-28-2021, 01:34 AM
Last Post: spoonman

Forum Jump:


Users browsing this thread: 1 Guest(s)