Title: mark777's Replies | WordPress.org

---

# mark777

  [  ](https://wordpress.org/support/users/mark777/)

 *   [Profile](https://wordpress.org/support/users/mark777/)
 *   [Topics Started](https://wordpress.org/support/users/mark777/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mark777/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mark777/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mark777/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mark777/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mark777/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Fastcgi session problem plesk 9.2.2 and php 5.3.8](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/)
 *  Thread Starter [mark777](https://wordpress.org/support/users/mark777/)
 * (@mark777)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/#post-2295718)
 * Good stuff!
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Fastcgi session problem plesk 9.2.2 and php 5.3.8](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/)
 *  Thread Starter [mark777](https://wordpress.org/support/users/mark777/)
 * (@mark777)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/#post-2295716)
 * You need to check what permissions are set on /tmp/ and match them exactly in
   the session folder specified in your php.ini
 * r.g. dwxr-xr-xt maybe. Also try chown to apache.
 *   Forum: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
   
   In reply to: [Fastcgi session problem plesk 9.2.2 and php 5.3.8](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/)
 *  Thread Starter [mark777](https://wordpress.org/support/users/mark777/)
 * (@mark777)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/fastcgi-session-problem-plesk-922-and-php-538/#post-2295713)
 * Hi Azunoman,
 * Save the following in a page and call it something like testsession.php then 
   upload it to your site. Then visit the page. Then refresh the page. If sessions
   are not working the number will stay at 1. If they are working it will increase
   by 1 each time i.e. 1,2,3 etc..
 *     ```
       <?php
       session_start();
       if(isset($_SESSION['views']))
       $_SESSION['views']=$_SESSION['views']+1;
       else
       $_SESSION['views']=1;
       echo "Views=". $_SESSION['views'];
       ?>
       ```
   
 * This will allow you to test if the session is causing the problem. If it is make
   sure it has exactly the same permissions as /tmp/
 * You mention you needed to install mcrypt, make sure you have amended the path
   to the Mcrypt module in /etc/php.ini
 * Have you checked if mcrypt is installed correctly by using phpinfo()?
 * Hope this helps

Viewing 3 replies - 1 through 3 (of 3 total)