Softaculous https://www.softaculous.com/board/index.php? <![CDATA[CookieAdmin 1.1.4 Launched]]> https://www.softaculous.com/board/index.php?tid=20501&tpg=1#p60300

Changelog :

1) [Pro Feature] Added Canadian French and Lithuanian languages

2) [Bug Fix] Improved Cookie handling for some rare cases based on user selected preferences.

3) [Task] Compatible with WordPress v6.9


CookieAdmin Pro is included for Free with the Softaculous premium license.

We are working on new features for the upcoming version.
Stay Tuned !


Regards,
The CookieAdmin Team]]>
Fri, 05 Dec 2025 15:03:01 GMT https://www.softaculous.com/board/index.php?tid=20501&tpg=1#p60300
<![CDATA[FileOrganizer 1.1.8 Launched]]> https://www.softaculous.com/board/index.php?tid=20500&tpg=1#p60299
We have launched FileOrganizer v1.1.8, this is a minor release
The change logs are as follows :-

1) [Task] Tested with WordPress 6.9.

Our team is working to improve the plugin, if you have any suggestions or feedback, write to us at support@fileorganizer.net

Regards,
FileOrganizer Team
]]>
Fri, 05 Dec 2025 12:50:43 GMT https://www.softaculous.com/board/index.php?tid=20500&tpg=1#p60299
<![CDATA[Softaculous 6.3.0 Launched]]> https://www.softaculous.com/board/index.php?tid=20499&tpg=1#p60298
1) [Bug Fix] Backups failed on older cPanel Versions. This has been fixed.

– Affected Systems: cPanel servers running WHM 118.0.15 and lower.

– Cause: A compatibility conflict involving PHP 8.1 and outdated ionCube v12.x loaders in cPanel’s 3rd party PHP binary with a change introduced in Softaculous 6.2.9 released on 2nd December 2025

– Resolution: This has been fixed and backups are now executing correctly on all supported versions.

We are working on new features for the upcoming version.
Stay Tuned !

Regards,
The Softaculous Team]]>
Fri, 05 Dec 2025 12:39:48 GMT https://www.softaculous.com/board/index.php?tid=20499&tpg=1#p60298
<![CDATA[How to enable virtualization in vps in virtualizor?]]> https://www.softaculous.com/board/index.php?tid=19466&tpg=1#p60297 Fri, 05 Dec 2025 07:08:44 GMT https://www.softaculous.com/board/index.php?tid=19466&tpg=1#p60297 <![CDATA[WordPress: Incompatibility between SQLite Object Cache and Softaculous Login]]> https://www.softaculous.com/board/index.php?tid=20415&tpg=1#p60296
Quote From : SamuelBerry December 4, 2025, 10:53 am
...  adjust the plugin's cookie handling logic to ensure it doesn’t conflict with login redirects or WP Cerber's cookie validation.

...

Let me know if you'd like further details on this approach!


Yes please! Object cache plugins don't do anything at all with cookies. They replace the core implementation of WP_Object_Cache with one that includes persistence. It's not clear, to me anyhow, what stale cached data interferes with the Softaculous login workflow.

Any wisdom you can offer would be great.]]>
Thu, 04 Dec 2025 20:35:35 GMT https://www.softaculous.com/board/index.php?tid=20415&tpg=1#p60296
<![CDATA[Questions on Webuzo User Account Backups]]> https://www.softaculous.com/board/index.php?tid=20498&tpg=1#p60295 Is the content of one compressed Full Backup from Backuply in a Webuzo user level account the same as the combined content of three separate backups for Home, Database, and Mail? In other words, do those three separate backups contain everything from the Webuzo user account and match what is included in one Full Backup and can the 3 backups be used to fully restore the Webuzo user account on a different Webuzo hosting server?

If you have already restored all three separate backups into a new Webuzo user account on a different server, and then two weeks later you import only the Mail Backup again because it has updated mail and updated mail accounts, will that new Mail Backup remove and replace all existing mail and mail accounts on the server with the data from the new Mail backup?

Is there any way to create a Full Backup that includes everything except email and email accounts in a single backup file?]]>
Thu, 04 Dec 2025 16:12:24 GMT https://www.softaculous.com/board/index.php?tid=20498&tpg=1#p60295
<![CDATA[Pagelayer 2.0.7 Launched]]> https://www.softaculous.com/board/index.php?tid=20497&tpg=1#p60294
The Pagelayer team has released version 2.0.7
The following is a list of changes :

1) [Task] Tested compatibility with WordPress 6.9.
2) [Bug-Fix] In some cases, after adding the templates widget, the page/post data in the PageLayer editor was not saved properly. This is fixed.
3) [Bug-Fix] There was some PHP warnings. This is fixed.
4) [Bug-Fix] Mobile breakpoints increased to 480px.

We will be launching many more changes in the upcoming version.
We would also like to thank the WordPress community as we have reached 400000+ active Pagelayer users.

Regards,
The Pagelayer Team
]]>
Thu, 04 Dec 2025 14:34:14 GMT https://www.softaculous.com/board/index.php?tid=20497&tpg=1#p60294
<![CDATA[Create & Manage Client firewall from WHMCS]]> https://www.softaculous.com/board/index.php?tid=19554&tpg=1#p60293
## **1. Understand the Setup**

WHMCS itself doesn’t directly provide firewall management, but you can integrate it with:

* **Server-level firewalls** (CSF, ConfigServer, iptables, UFW) via WHMCS modules or API
* **Cloud firewalls** (like Cloudflare, AWS Security Groups, or cPanel/WHM firewall) via API integrations

The goal: give your clients a **user-friendly interface** to configure basic firewall rules (allow/deny IPs, block ports, enable/disable services) without logging into the server.

---

## **2. Create a Client Firewall Module**

1. **Decide on firewall type:**

  * For Linux servers: CSF (ConfigServer Security & Firewall) is popular.
  * For cloud servers: APIs (Cloudflare, AWS, DigitalOcean, etc.) can handle rule changes.

2. **Develop a WHMCS module:**

  * WHMCS modules can use the **Server API** or a **custom PHP script**.
  * Provide functions like:

    * `createRule($clientId, $rule)`
    * `deleteRule($clientId, $ruleId)`
    * `listRules($clientId)`

3. **Add client area interface:**

  * Let clients **add/remove rules**, view blocked/allowed IPs, and see firewall status.
  * Use WHMCS hooks to fetch real-time server data.

---

## **3. Server-Side Configuration**

* **CSF / iptables / UFW:**

  * Ensure the firewall supports dynamic rule updates via scripts or API.
  * Configure a **dedicated API user or key** for WHMCS to authenticate.
* **Cloud firewalls:**

  * Ensure your API credentials have proper permissions (read/write).
  * Rate-limit API calls to avoid hitting provider limits.

---

## **4. Security Considerations**

* **Authentication:** Only allow clients to modify **their own rules**.
* **Input validation:** Make sure IPs, ports, and protocols are sanitized.
* **Logging:** Keep a record of all client changes for auditing.
* **Limits:** Avoid giving unlimited access—e.g., max number of rules per client.

---

## **5. Workflow Example for a Client**

1. Client logs into WHMCS → Client Area → Firewall Settings.
2. Adds a rule: allow 123.123.123.123 to port 22.
3. WHMCS module calls server API → updates firewall dynamically.
4. Rule shows as active in the client area.
5. Client can later remove or disable the rule; WHMCS syncs the change with the server.

---

## **6. Optional Enhancements**

* **Real-time status:** Show blocked/allowed traffic logs.
* **Templates:** Predefined rules for common services (SSH, HTTP, FTP).
* **Notifications:** Email clients when their firewall blocks suspicious traffic.
* **Tiered access:** Allow different firewall levels depending on client plan.

]]>
Thu, 04 Dec 2025 11:55:40 GMT https://www.softaculous.com/board/index.php?tid=19554&tpg=1#p60293
<![CDATA[WordPress: Incompatibility between SQLite Object Cache and Softaculous Login]]> https://www.softaculous.com/board/index.php?tid=20415&tpg=1#p60292 Thu, 04 Dec 2025 10:53:07 GMT https://www.softaculous.com/board/index.php?tid=20415&tpg=1#p60292 <![CDATA[Pushing staging site to live site]]> https://www.softaculous.com/board/index.php?tid=20428&tpg=1#p60291
The easiest fix is to update the installation details inside Softaculous:

Go to Softaculous → Installations.

Find your live WordPress install in the list.

Click the Edit (pencil) icon.

Update the Directory field to be empty so it points to /public_html/.

Save the changes.

After that, Softaculous should recognize the correct document root, and the staging push will target your actual live site instead of the old subdirectory.

If the install doesn’t show up in the list, you may need to import it again using Softaculous → Import Installations, but point it to the root this time. This will not overwrite anything — it just refreshes Softaculous’s records.

Once Softaculous knows where the live site actually sits, the staging push should work normally again.]]>
Thu, 04 Dec 2025 09:55:07 GMT https://www.softaculous.com/board/index.php?tid=20428&tpg=1#p60291