Softaculous https://www.softaculous.com/board/index.php? <![CDATA[Add markdown service to Softaculous , ie HedgeDoc/CodiMD?]]> https://www.softaculous.com/board/index.php?tid=19611&tpg=1#p58367
Thanks for the suggestion. We will check these scripts and let you know if we can add this in Softaculous.
]]>
Wed, 11 Sep 2024 03:52:35 GMT https://www.softaculous.com/board/index.php?tid=19611&tpg=1#p58367
<![CDATA[Close Account?]]> https://www.softaculous.com/board/index.php?tid=16213&tpg=10#p58366
Quote  September 6, 2024, 9:44 pm
I would like to delete my account please.
As per your request we have closed your account.
]]>
Tue, 10 Sep 2024 13:03:37 GMT https://www.softaculous.com/board/index.php?tid=16213&tpg=10#p58366
<![CDATA[Softaculous WordPress Remote Import Not Working]]> https://www.softaculous.com/board/index.php?tid=19616&tpg=1#p58365
There could be several reasons to this. We will need to review it by checking the logs.

Can you please open a support ticket with us so we can check this for you :
https://softaculous.deskuss.com/open.php]]>
Tue, 10 Sep 2024 12:59:52 GMT https://www.softaculous.com/board/index.php?tid=19616&tpg=1#p58365
<![CDATA[Wikimedia problem: Could not write the Configuration File LocalSettings.php]]> https://www.softaculous.com/board/index.php?tid=19617&tpg=1#p58364
Can you please check if you have enough disk space and inodes limit available ?

If any of the above limit is reached you might face this error.

If can you open a support ticket with us we can check this for you :
https://softaculous.deskuss.com/open.php]]>
Tue, 10 Sep 2024 12:21:03 GMT https://www.softaculous.com/board/index.php?tid=19617&tpg=1#p58364
<![CDATA[Stuck on downloading]]> https://www.softaculous.com/board/index.php?tid=19613&tpg=1#p58363
It could be possible that the download could fail if your server is unable to connect to Softaculous mirror servers to fetch the package.

Can you please open a support ticket with us so we can check this for you :
https://softaculous.deskuss.com/open.php]]>
Tue, 10 Sep 2024 12:19:30 GMT https://www.softaculous.com/board/index.php?tid=19613&tpg=1#p58363
<![CDATA[Wikimedia problem: Could not write the Configuration File LocalSettings.php]]> https://www.softaculous.com/board/index.php?tid=19617&tpg=1#p58362 I have installed WordPress and wikimedia many times before using Softaculous. Yesterday, when I was setting up a new Wikimedia site, I started getting an error saying "Could not write the Configuration File LocalSettings.php" and I could not install it. When I talked to my hosting provider, I was told that the problem was related to the Softaculous software. Does anyone have a similar problem or a solution for the moment?]]> Tue, 10 Sep 2024 05:29:23 GMT https://www.softaculous.com/board/index.php?tid=19617&tpg=1#p58362 <![CDATA[mod_rewrite?]]> https://www.softaculous.com/board/index.php?tid=19582&tpg=1#p58361
Sir, the rewrite module is enabled by default in webuzo.You can also check by executing this command: httpd -M | grep rewrite
If you are facing any issues with this please open a support ticket with us at: https://softaculous.deskuss.com/open.php

Let us know. ]]>
Mon, 09 Sep 2024 22:02:40 GMT https://www.softaculous.com/board/index.php?tid=19582&tpg=1#p58361
<![CDATA[Set up Webuzo server as SMTP?]]> https://www.softaculous.com/board/index.php?tid=19612&tpg=1#p58360 you can follow the link: https://www.webuzo.com/docs/how-tos/how-to-set-up-a-remote-smtp-server/  to set the smtp server in webuzo

If the problem persists, please open a support ticket with us at https://softaculous.deskuss.com.]]>
Mon, 09 Sep 2024 21:18:07 GMT https://www.softaculous.com/board/index.php?tid=19612&tpg=1#p58360
<![CDATA[Looking for someone who can config my Webuzo for me?]]> https://www.softaculous.com/board/index.php?tid=19614&tpg=1#p58359 Sir, you can enable varnish on your server and check.You can install Varnish from Webuzo Admin Apnel > Apps > Install an App wizard.
Let us know.
]]>
Mon, 09 Sep 2024 21:07:55 GMT https://www.softaculous.com/board/index.php?tid=19614&tpg=1#p58359
<![CDATA[decimals for resource pricing]]> https://www.softaculous.com/board/index.php?tid=17595&tpg=1#p58358
Quote From : radwebhosting July 29, 2024, 3:19 pm
Quote From : fhcardoso June 25, 2024, 4:33 am
Quote From : radwebhosting April 24, 2024, 3:47 pm
I also agree since the resources are calculated in 1 GB integrals at hourly integrals. In USD, a 10GB storage would be $7.30/mo when based on the least possible assigned cost $0.001 during a month that has ~730 hours.

Now, we would much prefer to charge our users less for this amount of disk.

I imagine there might be other currencies also, where 3 decimal places is unsuitable.


I created my own solution by changing the template and the database. Let me know if you are interested, I can share it with you.


Sorry for late response. Yes, it sounds very interesting and would like to know more



I'm sorry for taking so long to respond, but I hadn't seen your response.


The solution is very simples and work fine:
MAKE BACKUP OF FILES BEFORE DOING THIS.

Code
**** CHANGE THE DATABASE VIRTUALIZOR
ALTER TABLE `usage` CHANGE `h_used` `h_used` DECIMAL(10,6) NOT NULL DEFAULT '0.00' COMMENT 'The estimated amount that will be charged for the VPS';
ALTER TABLE `pricing` CHANGE `h_rate` `h_rate` DECIMAL(10,6) NOT NULL, CHANGE `m_rate` `m_rate` DECIMAL(10,2) NOT NULL, CHANGE `y_rate` `y_rate` DECIMAL(10,2) NOT NULL;

**** "ADMIN TEMPLATE CHANGE TO ALLOW STEP=0.000001"
sed -i 's/step="0.001"/step="0.000001"/g' /usr/local/virtualizor/enduser/themes/default/admin/resource_pricing_theme.php
sed -i '/prow += "<input type=\\"number\\" step=\\"0.001\\" class=\\"form-control\\" name=\\""+ratetypes\[i\]/ s/step=\\"0.001\\"/step=\\"0.000001\\"/' /usr/local/virtualizor/enduser/themes/default/admin/addplan_theme.php
sed -i '/prow += "<input type=\\"number\\" step=\\"0.001\\" class=\\"form-control\\" name=\\""+ratetypes\[i\]/ s/step=\\"0.001\\"/step=\\"0.000001\\"/' /usr/local/virtualizor/enduser/themes/default/admin/editplan_theme.php
]]>
Mon, 09 Sep 2024 19:29:30 GMT https://www.softaculous.com/board/index.php?tid=17595&tpg=1#p58358