SmartFAQ is developed by The SmartFactory (https://www.smartfactory.ca), a division of InBox Solutions (https://www.inboxsolutions.net)

Does XOOPS require write access to the server?
Yes, XOOPS requires write access to the server.

Like many CMSs, XOOPS uses a caching mechanism to temporarily store compiled pages. The benefit of this is increased speed. The downside is the requirement of being able to write to disk.

The 3 folders that are recommended to have write access are
cache/
templates_c/
uploads/


The cache/ folder stores your compiled admin menu (2.0.x branch) as well as any module cache you configure.

The templates_c/ folder stores your compiled theme as well as Smarty templates for XOOPS and any third-party modules you've installed.

The uploads/ directory stores files, like avatars, that you have uploaded to the server through the XOOPS admin or third-party modules.

If your web hosting provider does not allow scripts to write to disk in your web root, but has defined a directory outside of the web root where temporary files can be written, if they are running a *NIX operating system, you can use the following commands to create a symbolic link (think shortcut) to the directory where your scripts have write access.

//First, make the directories you will link to
mkdir /path/to/writable/folder/cache
mkdir /path/to/writable/folder/templates_c
mkdir /path/to/writable/folder/uploads


NOTE: It would be a good idea to create a folder using your name inside the designated writable folder, then create the cache, templates_c, and uploads inside it. This will help avoid any confusion and/or security issues if another user needs to install XOOPS on the same server.

//Change directories until you are in your XOOPS root directory
cd /path/to/your/xoops/install

//Now link the writable folders to your XOOPS install
ln -s /path/to/writable/folder/cache cache
ln -s /path/to/writable/folder/templates_c templates_c
ln -s /path/to/writable/folder/uploads uploads


If you do not have shell access to your hosting provider's server, you could also contact the Adminitrator of the server and request that they setup the symbolic links for you.


The comments are owned by the author. We aren't responsible for their content.


Login

Who's Online

181 user(s) are online (1 user(s) are browsing XOOPS FAQ)


Members: 1


Guests: 180


heyula,

more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Did you know ?

You can 'bump' an unanswered question to the top of the forum.

Random question

How do I change a theme?