Dams59T
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't write or edit page or articles — timeoutAs I told before, I have a network (multisite) install.
The file is exactly as WordPress told me it should be after the network install, and what I have in Tools > Network configuration…
I did not change anything manually.Forum: Fixing WordPress
In reply to: Can't write or edit page or articles — timeoutI did not add any custom rules to the .htacess.
Here is my file:# BEGIN WordPress
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPressForum: Fixing WordPress
In reply to: Can't write or edit page or articles — timeoutTwo more things:
– I can use the Quick Publishing tool, and it works properly
– If I rename the folder /var/www/wordpress/wp-includes/js to js2 (so that there is no access to these files), the page load, but of course nothing is working (and I have actual 500 error for the loading of .js files). So, the problem is linked to these files, I need to find out why they won’t load.Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Sitewide tags and Featured Scroll PostsThank you for your help. I will see how I can manage to do this.