Hello gowgowpr,
Check your system status parameters to be increased according to our documentation from here -> https://forum.tagdiv.com/system-status-parameters-guide/
Thanks.
Hi,
Those would be the number one cause of issues with the composer, the requirements
– https://forum.tagdiv.com/requirements-for-newspaper/
Additionally try deactivating all plugins as a quick test, leave only theme plugins active. Check if this has any effect.
In some cases the solutions from these topics worked for blank pages and other composer problems, you could give them a try if possible
– https://forum.tagdiv.com/topic/gray-page-tagdiv/
– https://forum.tagdiv.com/topic/javascript-error-td-composer-wont-load/
Le us know the results of these suggestions.
Where can I find this .htaccess file?
Thanks in advance!
Hi,
@christiancruzc I found some guides you can follow and try to locate it
– http://www.wpbeginner.com/beginners-guide/why-you-cant-find-htaccess-file-on-your-wordpress-site/
– https://www.shoutmeloud.com/how-to-edit-your-wordpress-htaccess-file.html
– https://www.greengeeks.com/tutorials/article/tips-on-finding-your-wordpress-htaccess-file/
If you are having problems finding it or creating it, it would be better to contact your hosting provider for assistance.
Thanks
Where exactly should I try adding the following lines to my .htaccess file to try and fix the white screen appearing when trying to use TagDiv Composer?
<IfModule mod_substitute.c>
SubstituteMaxLineLength 10M
</IfModule>
My .htaccess file looks like this:
# BEGIN GD-SSL
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_USER_AGENT} ^(.+)$
RewriteCond %{SERVER_NAME} ^cubanarts\.xyz$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Header add Strict-Transport-Security “max-age=300”
</IfModule>
# END GD-SSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase //
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . //index.php [L]
</IfModule>
# END WordPress
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase //
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . //index.php [L]
</IfModule>
# END WordPress