Search Results for '403'

    No search results were found in Documentation!

Results from the Forum
ronaldliive
tagDiv Member

Now i’ve noticed that Jetpack plugin isn’t working and when I try to reactivate it, it gives me an error:

Your website needs to be publicly accessible to use Jetpack: site_inaccessible
Error Details: The Jetpack server was unable to communicate with your site [HTTP 403]. Ask your web host if they allow connections from WordPress.com. If you need further assistance, contact Jetpack Support: http://jetpack.me/support/

It worked before when I deactivated everything. I did not change any settings. Any help or should I contact Jetpack support?

Alin [tagDiv]
tagDiv Staff

Hi,

1. I guess that you want these changes only for category’s pages, because you can change excerpt for module 2 from Theme Panel > Excerpt: http://screencast.com/t/ILsoSEbV6bc but this will affect also block 1 that use this module.
So you will need to hide excerpt using css code in Theme Panel > Custom Css: http://screencast.com/t/Den403FY9

.category .td_mod2 .td-post-text-excerpt{
display: none;
}

Result: http://screencast.com/t/lQql6pqC8r

2. For module 7 you have to make some custom modification, because is an extension of module 1. Please edit td_module_1.php add an extra class and remove excerpt code like this: http://screencast.com/t/h99qVRHRZyTj
Now please use css code with that class to hide meta and subtitle: http://screencast.com/t/ui1Y1Ode

.category .module7{
display: none;
}

Unfortunately this css(categories and subtitle) it will be applied also on module 1, so if you use module 1 to display articles on a category page, meta and subtitles will not be displayed also there.

Thanks!

Truefolder
Participant
#0

Hi,

I have a few more issues structuring the theme. Some features don’t seem to be working as they should.

1. Offset and unique articles do not work.

– 1a: Offset used on Block 2 (below the Grid), and set to 5 (to avoid showing Featured posts again), yet same articles in POPULAR block below the Grid still appear.

http://content.screencast.com/users/Truefolder/folders/Default/media/440d6432-f978-4e0e-ac15-e29f0f04d04e/offset-not-working-1.JPG
– 1b: Tried using “Unique Articles” feature, then it screws up the whole pattern, and latest articles aren’t the latest anymore, neither in Grid nor in the list of posts below. Just a collection of random posts instead.

Grid: http://content.screencast.com/users/Truefolder/folders/Default/media/94acf9ad-6cfc-4ff7-8a93-b7ab022f1157/latest-not-working-1.JPG

Latest: http://content.screencast.com/users/Truefolder/folders/Default/media/3fbe13f0-204a-4ad6-8423-403775704413/latest-not-working-2.JPG

Note: All categories are set appropriately to Latest, All categories, etc. I triple-checked everything. Also, “Popular” is not actually set to display Popular articles (if such feature even exists); it’s the “DON’T MISS” block, renamed.

2. In the backend when editing, when I select some Visual Composer and Theme specific features (such as “Show unique articles” option), it disappears once the page is updated, even if it’s selected. Basically, you need to select for those features to appear every single time you edit a page.

3. How do I enable to show Categories for all posts on the homepage? Currently, no setting is set to “Disabled,” so everything should be enabled, right? And the categories must appear on posts? Yet they don’t.

http://content.screencast.com/users/Truefolder/folders/Default/media/d1a67e2d-b9fd-45b2-bae5-a8b1a46fbd4a/category-1.JPG http://content.screencast.com/users/Truefolder/folders/Default/media/7fff5a87-4892-46f3-9250-44226a5e17bf/categories-2.JPG
Thanks!

Testing site: http://topdogtips.com/ (currently Unique Articles is disabled; Offset on Block 2 is still set to 5)

CDN, Caching, etc. disabled while testing.

Please advise.

Thank you.

Dean

lippil
tagDiv Member

You mean this section right?
If yes I already try this but it still shows error 403.
More information. This problem happened after I change my hosting.My older posts work fine.They can share with no error 403.But now I try to add new post and the problem appears.
I’m not sure if it’s about the .htaccess file or something?

Best regards,
Nattpaong k.

lippil
Participant
#0


Hi, Support team

I don’t know how to fix this. When I try to use facebook button on the bottom of the page and try to share the article it shows error 403. It appears on my new post ,every new post. The old post works fine.
Do you have any idea how to fix this?

Best regards,
Lip

simchris
tagDiv Member

Additional .htaccess optimizations for Apache servers.


# END WordPress

AddType text/javascript .js
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-ttf .ttf
AddType application/x-font-opentype .otf
AddType application/x-font-woff .woff

# BEGIN Expire headers
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
ExpiresByType image/x-icon "access plus 2500000 seconds"
ExpiresByType image/jpeg "access plus 2500000 seconds"
ExpiresByType image/png "access plus 2500000 seconds"
ExpiresByType image/gif "access plus 2500000 seconds"
ExpiresByType application/x-shockwave-flash "access plus 2500000 seconds"
ExpiresByType text/css "access plus 700000 seconds"
ExpiresByType text/javascript "access plus 700000 seconds"
ExpiresByType application/javascript "access plus 700000 seconds"
ExpiresByType application/x-javascript "access plus 700000 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
ExpiresByType font/truetype "access plus 2500000 seconds"
ExpiresByType font/opentype "access plus 2500000 seconds"
ExpiresByType application/x-font-woff "access plus 2500000 seconds"
ExpiresByType image/svg+xml "access plus 2500000 seconds"
ExpiresByType application/vnd.ms-fontobject "access plus 2500000 seconds"
</IfModule>
# END Expire headers

# BEGIN Cache-Control Headers
<IfModule mod_headers.c>
<filesMatch "\.(ico|jpe?g|png|gif|swf)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(css)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(js)$">
Header set Cache-Control "private"
</filesMatch>
<filesMatch "\.(x?html?|php)$">
Header set Cache-Control "private, must-revalidate"
</filesMatch>
</IfModule>
# END Cache-Control Headers

<IfModule mod_headers.c>
    Header unset ETag
</IfModule>
<IfModule mod_alias.c>
RedirectMatch 403 /xmlrpc.php
</IfModule>

All of this “obviously” goes AFTER the WordPress elements generated when WP is setup.

  • This reply was modified 11 years by simchris.
Alin [tagDiv]
tagDiv Staff

Hi,

Please try this without any plugins active and also make sure you empty cache as well and see if it works.
The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Please make sure that you don’t have errors in console while saving the settings on the Theme Panel, usually it displays a 403 or 404 error. Use Chrome, click right and choose Inspect like this: http://screencast.com/t/ajQ8B1AV

Thanks!

Lucian
tagDiv Staff

Hi,

Sorry for the delay!
Please also make sure you empty cache as well and make sure the theme actually saves settings. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file which I noticed you also get . Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned.
Hope this helps! Please let me know how it goes!

Thanks

AaronTaylor
Participant
#0

My google webmaster tools for my website: http://www.equestrianempire.com is having a server error that says:

Server Error 500: wp-content/themes/Newspaper/

I am hosting with WP-ENGINE and they have told me that the error is a 500 error and upon looking at my apache error log, they have found the following:

[Tue Jan 27 12:14:22 2015] [error] [client 72.173.87.182] Directory index forbidden by Options directive: /nas/wp/www/sites/aarontaylor/wp-content/themes/Newspaper/js/, referer: http://www.equestrianempire.com/rider-killed-by-horse-she-raised-since-birth/
[Tue Jan 27 13:58:32 2015] [error] [client 184.20.57.174] Directory index forbidden by Options directive: /nas/wp/www/sites/aarontaylor/wp-content/themes/Newspaper/js/, referer: http://www.equestrianempire.com/10-things-you-give-up-when-you-start-to-ride-horses/
[Tue Jan 27 15:43:16 2015] [error] [client 192.64.61.159] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 1544ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(1544) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(1544) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(UPDATE wp_postmeta SET meta_value = ‘549’ WHERE post_id = 1163 AND meta_key = ‘post_views_count’ /* From [www.equestrianempire.com/wp-admin/admin-ajax.php] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/includes/wp_booster/td_ajax.php:452] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(UPDATE wp_postmeta SET meta_value = ‘549’ WHERE post_id = 1163 AND meta_key = ‘post_views_count’ /* From [www.equestrianempire.com/wp-admin/admin-ajax.php] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/includes/wp_booster/td_ajax.php:452] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(UPDATE wp_postmeta SET meta_value = ‘549’ WHERE post_id = 1163 AND meta_key = ‘post_views_count’) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1799]\n#7 wpdb->update(wp_postmeta, Array ([meta_value] => 549), Array ([post_id] => 1163,[meta_key] => post_views_count)) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/meta.php:248]\n#8 update_metadata(post, 1163, post_views_count, 549, ) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/post.php:1959]\n#9 update_post_meta(1163, post_views_count, 549) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/includes/wp_booster/td_ajax.php:452]\n#10 td_ajax_update_views()\n#11 call_user_func_array(td_ajax_update_views, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(wp_ajax_nopriv_td_ajax_update_views) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin-ajax.php:95]\n, referer: http://www.equestrianempire.com/rider-killed-by-horse-she-raised-since-birth/
[Tue Jan 27 15:43:16 2015] [error] [client 192.64.61.159] [WPE Monitoring] Slow mysql_query() call was running query:\nUPDATE wp_postmeta SET meta_value = ‘549’ WHERE post_id = 1163 AND meta_key = ‘post_views_count’ /* From [www.equestrianempire.com/wp-admin/admin-ajax.php] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/includes/wp_booster/td_ajax.php:452] */, referer: http://www.equestrianempire.com/rider-killed-by-horse-she-raised-since-birth/
[Tue Jan 27 15:54:06 2015] [error] [client 204.101.161.159] Directory index forbidden by Options directive: /nas/wp/www/sites/aarontaylor/wp-content/uploads/, referer: bing.com
[Tue Jan 27 17:29:19 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 2685ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(2685) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(2685) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_bp_groups_groupmeta) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:19 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:30 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 1483ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(1483) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(1483) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_options /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_options /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_options) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:30 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_options /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:33 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 1586ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(1586) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(1586) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_bp_groups_groupmeta) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:33 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_bp_groups_groupmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:37 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 4033ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(4033) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(4033) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_bp_groups_members /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_bp_groups_members /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_bp_groups_members) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:37 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_bp_groups_members /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:37 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 7353ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(7353) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(7353) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_postmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_postmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_postmeta) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:37 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_postmeta /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:39 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 1629ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(1629) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(1629) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_ewwwio_images /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_ewwwio_images /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_ewwwio_images) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:39 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_ewwwio_images /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:39 2015] [error] [client 71.57.155.98] [WPE Monitoring] Stopwatch php.pod-3132.function.mysql_query.duration exceeded 1000ms. Was: 1636ms.\n#0 wpe\\measure\\LoggingStopwatch->logStackTrace(1636) called at [/nas/wp/www/common/production/measure.php:198]\n#1 wpe\\measure\\LoggingStopwatch->lap_ended(1636) called at [/nas/wp/www/common/production/measure.php:134]\n#2 wpe\\measure\\Stopwatch->lapstart() called at [/nas/wp/www/common/production/measure.php:152]\n#3 wpe\\measure\\Stopwatch->stop() called at [/nas/wp/www/common/production/statsd_monitoring.php(256) : runkit created function:19]\n#4 mysql_query(OPTIMIZE TABLE wp_term_taxonomy /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, Resource id #28) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1663]\n#5 wpdb->_do_query(OPTIMIZE TABLE wp_term_taxonomy /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/wp-db.php:1567]\n#6 wpdb->query(OPTIMIZE TABLE wp_term_taxonomy) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128]\n#7 optimizeTablesQuick(yes) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:528]\n#8 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php:76]\n#9 include_once(/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-admin.php) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize.php:76]\n#10 wp_optimize_menu()\n#11 call_user_func_array(wp_optimize_menu, Array ([0] => )) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-includes/plugin.php:496]\n#12 do_action(toplevel_page_WP-Optimize) called at [/nas/wp/www/cluster-3132/aarontaylor/wp-admin/admin.php:212]\n, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:29:39 2015] [error] [client 71.57.155.98] [WPE Monitoring] Slow mysql_query() call was running query:\nOPTIMIZE TABLE wp_term_taxonomy /* From [www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize] in [/nas/wp/www/cluster-3132/aarontaylor/wp-content/plugins/wp-optimize/wp-optimize-main.php:128] */, referer: http://www.equestrianempire.com/wp-admin/admin.php?page=WP-Optimize
[Tue Jan 27 17:33:18 2015] [error] [client 192.171.117.234] PHP Fatal error: Call to undefined function get_header() in /nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/index.php on line 6
[Tue Jan 27 17:34:36 2015] [error] [client 71.57.155.98] PHP Fatal error: Call to undefined function get_header() in /nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/index.php on line 6
[Tue Jan 27 17:35:09 2015] [error] [client 71.57.155.98] PHP Fatal error: Call to undefined function get_header() in /nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/index.php on line 6
[Tue Jan 27 17:36:34 2015] [error] [client 150.70.173.48] PHP Fatal error: Call to undefined function get_header() in /nas/wp/www/cluster-3132/aarontaylor/wp-content/themes/Newspaper/index.php on line 6

I have no made any changes or modifications to the code and I’m very unsure of what to do, as I do not understand PHP. Thank you!

Lucian
tagDiv Staff

Hi,

Sorry for the delay!
Please try this without any plugins active and also make sure you empty cache as well and make sure the theme actually saves settings. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know how it goes!

Thanks

acko_fon
tagDiv Member

This is in my errors in cpanel, maybe will help>

[Fri Jan 23 22:56:34.333856 2015] [:error] [pid 287451] (12)Cannot allocate memory: [client 74.125.40.23:52600] couldn’t create child process: /opt/suphp/sbin/suphp for /home/aktuelno/public_html/index.php
[Fri Jan 23 22:53:49.907189 2015] [:error] [pid 271908] (12)Cannot allocate memory: [client 77.28.65.51:51873] couldn’t create child process: /opt/suphp/sbin/suphp for /home/aktuelno/public_html/index.php, referer: http://aktuelno24.mk/
[Fri Jan 23 22:53:49.906964 2015] [:error] [pid 271908] (12)Cannot allocate memory: [client 77.28.65.51:51873] couldn’t create child process: /opt/suphp/sbin/suphp for /home/aktuelno/public_html/index.php, referer: http://aktuelno24.mk/
[Fri Jan 23 22:52:32.234782 2015] [:error] [pid 242706] (12)Cannot allocate memory: [client 213.135.187.20:51403] couldn’t create child process: /opt/suphp/sbin/suphp for /home/aktuelno/public_html/index.php

Lucian
tagDiv Staff

Hi,

Unfortunately yes, you can also use the page builder on post pages but we don’t recommend it as it could cause issues.
I have check your site and noticed that you have an 403 error when accessing the admin-ajax.php file: http://screencast.com/t/1UngD4NFjYx
This usually appears because the server security module blocks the access to admin-ajax.php file.
Contact your server administrator and explain the situation, as it’s requested many times the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

I have checked your site and noticed that the logo container is empty: http://screencast.com/t/CcyepQXxSFFg so please make sure you do this right (last section): https://forum.tagdiv.com/header/
I have also tested this using the latest theme version and haven’t had any issue of this type so you shouldn’t experience this also.
Please make sure that you use the latest theme version which is 4.6.1
Please try this without any plugins active and also make sure you empty cache as well and make sure the theme actually saves settings. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know how it goes!

Thanks

Lucian
tagDiv Staff

Hi,

I have also tested this using the latest theme version and haven’t had any issue of this type so you shouldn’t experience this also.
Please make sure that you use the latest theme version which is 4.6.1
Please try this without any plugins active and also make sure you empty cache as well and make sure the theme actually saves settings. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know and also provide your site’s URL!

Thanks

Lucian
tagDiv Staff

Hi,

I have also tested this using the latest theme evrsion and haven;t had any issue of this type so you shoiuldn;t experinece this also.
Please try this without any plugins active and also make sure you empty cache as well and make sure the theme actually saves settings. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know and also provide your site’s URL!

Thanks

Lucian
tagDiv Staff

Hi,

Please also check if other caches aren’t saved as well as the issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know and also provide your site’s URL!

Thanks

Gregory
Participant
#0

Hello and Happy new Year!!!

Google give me error on the follow URL – Googlebot couldn’t access the contents of this URL because the server had an internal error when trying to process the request

http://www.example.com/wp-content/themes/Newsmag/

It seems this page should be redirects on 403 forbidden right ?

For http://www.example.com/wp-content/themes/Newsmag/ we noticed that following errors in log files:

2015/01/02 01:18:13 [error] 17438#0: *149247786 FastCGI sent in stderr: “PHP message: PHP Fatal error: Call to undefined function get_header() in /var/www/example.com/htdocs/wp-content/themes/Newsmag/index.php on line 6
PHP message: PHP Stack trace:
PHP message: PHP 1. {main}() /var/www/example.com/htdocs/wp-content/themes/Newsmag/index.php:0”, client: 182.72.47.66, server: example.com, request: “GET /wp-content/themes/Newsmag/ HTTP/1.1”, host: “www.example.com”

Could you please check this issue ?

michaltakac
tagDiv Member

I added <?php comments_template(‘comments.php’, true); ?> into loop-single.php in my Newspaper-child theme:
http://gyazo.com/914cc684520a0dbc8027affd6827bb33

With disabled WordPress comments and “SEO Facebook Comments” plugin enabled, it looks like this:
http://gyazo.com/b481691f65690dad628340354cbec888

…and with this plugin, it inserts comments into database so it show comment count next to post title.

kevinpro84
Participant
Lucian
tagDiv Staff

Hi,


@flavourmag

I have checked your site and seems that the font is not loading on page because it’s blocked: http://screencast.com/t/uKZAb1v1ND
Please contact your host provider and explain this situation, they should give you more specific information about the cause of 403 Forbidden errors.

@cityslicker444

Please also provide your site’s URL so I can inspect this issue.

Thanks

saggel
tagDiv Member

lucian hi. i run optimise tool to reduse size images and i saw that! .

The theme makes 17 resizes images for any uploaded image! is this normal?

Optimized image: 2014/11/black-pearl-009.jpg
Full size – Reduced by 5.8% (13,5 kB)
black-pearl-009-83×83.jpg – No savings
black-pearl-009-345×225.jpg – No savings
black-pearl-009-700×458.jpg – Reduced by 0.6% (241,0 B )
black-pearl-009-80×52.jpg – No savings
black-pearl-009-700×357.jpg – Reduced by 0.8% (260,0 B )
black-pearl-009-100×65.jpg – No savings
black-pearl-009-100×65.jpg – No savings
black-pearl-009-326×159.jpg – No savings
black-pearl-009-326×235.jpg – No savings
black-pearl-009-326×406.jpg – Reduced by 0.9% (159,0 B )
black-pearl-009-700×357.jpg – No savings
black-pearl-009-1074×483.jpg – Reduced by 1.5% (853,0 B )
black-pearl-009-545×357.jpg – Reduced by 0.2% (42,0 B )
black-pearl-009-738×483.jpg – Reduced by 0.9% (403,0 B )
black-pearl-009-745×483.jpg – Reduced by 0.7% (313,0 B )
black-pearl-009-210×210.jpg – No savings
black-pearl-009-198×143.jpg – No savings
Elapsed: 2.014 seconds

Lucian
tagDiv Staff

Hi,

The adsesne ads work fine with the theme. The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify if this happens when you save settings in other cases in theme panel and also verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
Hope this helps! Please let me know!

Thanks

Lucian
tagDiv Staff

Hi,

We are sorry for the inconvenience! This usually appears because the server security module blocks the access to admin-ajax.php file. Try to verify the console for error while saving the settings on the Theme Panel, usually it displays a 403 or 404 error.
Contact your server administrator and explain the situation, as it’s requested many times during the a save the file it’s treated as threat so it’s banned. You can report false positives to your server administrator to remove it from the banned list.
You can also try this:

* http://screencast.com/t/MVBAYGfgepr
* http://screencast.com/t/yFJ0LFAvK

Also make sure you updated the theme to the latest version as we have adjusted this to make fewer requests so it might not happen again.
Please let me know!

Thanks

nesru
tagDiv Member

Dear Christopher,

You are helping me a lot. Many thanks for that.
Unfortunately i haven’t got a solution for the problem.

I managed to upload the theme via another domain wp dashboard.It worked. But i haven’t activated it. cos i don’t want to put it there. Newspaper theme is meant for another domain.
I tried to upload it via ftp. i put the file in public_html [wp-content/teheme]. when i try to go live, i see nothing.

i cant access or create wp login. http://www.awashpost.com/wp-admin.php returns 403 error.
i also tried http://www.awashpost.com/public_html&#8230; i get nowhere.

Can you plz solve this mystery? I want to know how to get to wp login so that i can upload the theme from there.

Thank you so much.
Nesru

Lucian
tagDiv Staff

hi,

Yes, unfortunately the speed booster plugin may cause conflicts in use with other plugins so empty all cache and also purge files if you use CDN, disable all plugins leaving active only the speedbooster plugin and visual composer and check for this again.
You can check your console on homepage to see the 403 error: http://screencast.com/t/0wm6n4TSUd
You should also consider updating your theme to the latest version 4.5 and check again for this.
Hope this helps! Please let me know.

Thanks

  • This reply was modified 11 years by Lucian.
Viewing 25 results - 951 through 975 (of 1,008 total)