Chapter 8 : F.A.Q.
<< Ch 7 : Admin Settings | Up | Ch 9 : Advanced >>
As admin, open the Settings window. You probably see a Logs tab but nothing listed inside of it. If so, there is probably a write permission missing — the “logs” folder is created inside the “server” folder. Thus the /path/to/install/server/ folder should be writeable.
8.2 My file upload size is limited, how can I change this?
File upload size limit is not an AjaXplorer limitation, but a server configuration for PHP. If on a shared host, it is unlikely that you can access this configuration. If you are on your own server and can edit the PHP configuration file (php.ini), please have a look at the upload_max_filesize instruction on the PHP website.
8.3 I created a repository but cannot see it?
This often happens if you have created a repository but not granted access to this repository for each user. Logged in as admin, open the Settings window, Users Management tab, and give read/write access to the newly created repository to whichever user you want.
8.4 How do I create user-specific repositories accessible only to them?
As admin, open the Settings window, click Create Repository and in the Path form, use the AJXP_USER keyword to create a path that will be adapted to each user. For example, use the following configuration:
Repository Label : “My Files”
Driver : File System
Path : “AJXP_INSTALL_PATH/files/AJXP_USER”
Create : “Yes”
Recycle bin folder : “recycle_bin”
(Each user will have their own unique repository and the admin can view them when browsing the Default Repository packed with AjaXplorer.)
8.5 I want to develop my own extensions but the JavaScript and CSS files are unreadable?
Change the $JS_DEBUG variable to true in the file index.php at line 72. After doing so, AjaXplorer will load all JS files and CSS files separately, instead of the big compressed file used normally.
8.6 How to add a custom header/footer to the GUI ?
The following files located at your_install_path/client/html/ control the header/footer GUI:
- usertemplate_top.html
usertemplate_bottom.html
To edit those files, uncomment it’s contents (remove <!– and –> marks) and add your own HTML code inside the div tags. Using those div tags is crucial for alignment in the GUI and resizing functionality. When finished editing, save the file and reload (F5) your browser — the changes should now appear.
8.6 Everything is working fine except that my downloads are all corrupted! What can happen?
In some case, we have detected problems with the gzip encoding and some browsers. Since AjaXplorer 2.3.8, there is an option in the configuration file (server/conf/conf.php) that allow you to disable gzip encoding :
Replace the line :
define(’GZIP_DOWNLOAD’, true);
By
define(’GZIP_DOWNLOAD’, false);
This may solve the problem. If not, please contact us via the forum!