Jump to content

[SOLVED] how to write this in .htaccess?


bilis_money

Recommended Posts

i tried this one below,

 

php_value session.save_path '/public_html/joomla/tmp'

 

and it doesn't work.

 

any little help please.

php_value or php_flag directives will only work within a .htaccess file if the web host has enabled the use of .htaccess files and that PHP is running as an Apache Module. If PHP is running under CGI then those directives will not work. To check whether your host has PHP setup as an Apache Module create a new file call it test.php and add the following code:

<?php phpinfo(); ?>

Upload it to your host and then run it. Look for the line that begins with Server API. To the right of it will state whether it is running as CGI or Apache x.0 Module (x representing Apaches Version number).

 

Also check with your host whether you can use .htaccess files.

 

If you host has disallowed the use of .htaccess file OR that PHP is not running as an Apache Module then you cannot change PHP configuration through .htaccess files. In stead you will have to resort to chigley's suggestion for using ini_set.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.