Title: hennot's Replies | WordPress.org

---

# hennot

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Can only edit the page which is currently set as the homepage](https://wordpress.org/support/topic/can-only-edit-the-page-which-is-currently-set-as-the-homepage/)
 *  Thread Starter [hennot](https://wordpress.org/support/users/hennot/)
 * (@hennot)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/can-only-edit-the-page-which-is-currently-set-as-the-homepage/#post-13330033)
 * I solved this.
 * Initially I was missing `$args` part after `index.php` from Nginx `try_files`
   directive. I had
 *     ```
       location / {
           try_files $uri $uri/ index.php;
       }
       ```
   
 * Googling the symptoms led me to this thread:
    [https://wordpress.org/support/topic/cannot-edit-_published_-pages-with-elementor/](https://wordpress.org/support/topic/cannot-edit-_published_-pages-with-elementor/)
 * The first reply was from the OP who claimed that he had solved the problem. He
   had added $args after /index.php but he must have typed the solution, not copied
   it, because he missed a question mark.
 * I simply copied his answer but it did not work but I didn’t scroll down to read
   that another person had written a follow up about the missing question mark.
 * Anyway, instead of the question mark, I used $is_args variable which injects 
   the question mark only when $args is not empty:
 *     ```
       location / {
           try_files $uri $uri/ /index.php$is_args$args;
       }
       ```
   
 * This issue occurred when I moved the site from a shared hosting using Apache 
   to my own VPS using Nginx.
    -  This reply was modified 5 years, 9 months ago by [hennot](https://wordpress.org/support/users/hennot/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Elementor Website Builder - more than just a page builder] Can only edit the page which is currently set as the homepage](https://wordpress.org/support/topic/can-only-edit-the-page-which-is-currently-set-as-the-homepage/)
 *  Thread Starter [hennot](https://wordpress.org/support/users/hennot/)
 * (@hennot)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/can-only-edit-the-page-which-is-currently-set-as-the-homepage/#post-13324581)
 * So I am experiencing this issue: [https://docs.elementor.com/article/184-cant-edit-with-elementor#panelgray](https://docs.elementor.com/article/184-cant-edit-with-elementor#panelgray)
 * Things that I have done in attempt to resolve the issue:
    – Set memory_limit 
   = 512M in /etc/php/php7.4/fpm/php.ini – no effect – Set define( ‘WP_MEMORY_LIMIT’,‘
   256M’ ); in wp-config.php – no effect – Disable all other plugins – no effect–
   move all files away from the webroot directory and rename the database and then
   unpack latest wordpress to the folder, basically start from the clean slate and
   only installing Elementor plugin and Astra theme. – no effect

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