Quantcast
Channel: Topic Tag: forbidden | WordPress.org
Viewing all 689 articles
Browse latest View live

Mailgun API (Forbidden)

$
0
0

I’ve connected WP Mail SMTP correctly on most all my sites. Lately, however, I’ve had several sites fail to properly connect to Mailgun via API. I encounter the following:

Versions:
WordPress: 5.2.2
WordPress MS: No
PHP: 7.3.4
WP Mail SMTP: 1.5.2

Params:
Mailer: mailgun
Constants: No
Api Key / Domain: Yes

Debug:
Mailer: Mailgun
Forbidden

I can add the observation that all of the sites encountering this are ones that I have migrated to new servers (though, in the same Digital Ocean environment). I expect either something is improperly configured on my server, or the Mailgun API has somehow cached the old IPs connected with my domain and are not properly communicating. Any assistance would be greatly appreciated! Thanks!


SUCURI: SiteCheck error: Unable to properly scan your site. 403 Forbidden

$
0
0

Hi,

Most of my sites work fine — two do not. Both of those sites are a) recently created, and b) separately rooted in WHM accounts. So, I’m sure I have them set up differently in some way.

I did a lot of Googling, and I tried an external SiteCheck run (https://sitecheck.sucuri.net/?fromwp=2&json=1&scan=example.com).

Can anyone give me some tips for finding out exactly where Sucuri gets the 403?

Thank you!

Adding to cart redirects to 403 Forbidden

$
0
0

Hello, I am not entirely sure when this flow has stopped working, but currently we cannot add products when the selected option is not the first default one. After selecting an option and clicking on Add to Cart, the page redirects the user to a 403 Forbidden.

Steps to reproduce:

1. Open the webpage https://lepetitatelier.ro/produs/set-party-bear/
2. On the ‘Selecteaza Optiunea’ (select option) field, select any besides the first option
3. Click on ‘Adauga in cos’ (add to cart)

I have tried disabling the security plugins, updating the theme, and all existing plugins and it doesn’t work.

403 Error on Admin Page

$
0
0

Hi All –

I’ve found myself to be unable to login to my admin page because of a 403 error. The help tutorial that I found (below) mentions that this can happen on a login page, but then doesn’t explain how to fix it! I can’t get in to the site to deactivate my plugins.

I don’t have much experience with WordPress (added to my job description just a few months ago), so I really have no idea where to start here.

https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-403-forbidden-error-in-wordpress/

Thanks!

Server Error 403 Forbidden

$
0
0

I have followed this guide:
https://wpmailsmtp.com/docs/how-to-set-up-the-gmail-mailer-in-wp-mail-smtp/

but when I try the last step “3. Grant Permissions and Send Test Email
and click the button “Allow plugin to send emails using your Google account
and then click the Google button “Allow
it should send me back to my WP-admin page, but I get an error “Server Error 403 Forbidden. You do not have permission to access this document.

403 Forbidden on Submit

$
0
0

Hi,

I have an issue with submitting simple forms.
When the submit button is pressed, submission doesn’t work. Instead a 403 »Forbidden« error shows up.

I already re-configured the directory and file access and renewed the htacces-file on the server.

What could be the problem?

Thanks in advance!

Forbidden. Please enable javascript

$
0
0

Hi…

I have recently installed the woocommerce waitlist plugin which is refusing to work and always gives the message *** Forbidden. Please enable JavaScript. ***

I have tried x3 browsers all with default settings and a check to ensure java enabled, on three devices, using two different WiFi connections. So 18 variations in total. All scenarios result in the same message.

Grateful for your advice on how to resolve.

strange IP often changes – 403 Forbidden

$
0
0

Hello,

Since 2 weeks I meet one problem with the IP address recognition of ITheme Security. My real IP is 88.213.xxx.xxx but ITheme find 51.254.xx.xxx when I add it in white list. The IP that ITheme find change often as this https://www.dropbox.com/s/dilwatmg8y0yw2b/20191120_IP%20via%20ITheme%20Security.jpg?dl=0
D . So, I often not reconize by ITheme and I fall on this page https://www.dropbox.com/s/5cr7diqe3vmneq1/20191121_IP_error%20message%20Forbidden.jpg?dl=0

Do you know what ?

Thanks


Error 403 Forbidden when Save plugin configuration

$
0
0

Hi,
Using the last updated version 13.1.2.3
Issue in WP Panel > Youtube Free:
when I click on “Save” it
goest to pag.
https://www.sturialeproctologia.it/wp-admin/admin.php?page=youtube-my-preferences
with err message:
“403
Forbidden
Access to this resource on the server is denied!”

So I can config plugin once when I upgrade it because it start automatically a wizard config, and it’works (once a time).

Can you help me?

Thank you

403 Forbidden error with Ajax and PHP in WordPress plugin

$
0
0

Hello,

I’ve stumbled on the “403 Forbidden error” for which many explanations/solutions can be found in many places on the net.
However, I struggle for several hours for solving this error in my situation : inside a WordPress plugin.

I have a WordPress plugin, let’s call it “foobar”, that processes a shortcode.

My plugin’s php file, foobar.php, builds and returns at some point the Javascript code:

$myvariable = '
$.ajax({
 url: "'.plugin_dir_url( __FILE__ ) .'myPHPFunction.php",
 '.type: "post",
 success: function(response) { console.log("return from myPHPFunction.php:"+response); },
 error: function(xhr,status,error) { console.log("status="+status+",xhr="+xhr+",errth="+error);}
 });';

return $myvariable;

The myPHPFunction.php file is in the same directory as the plugin’s.

myPHPFunction.php is very powerful : 😉

<?php
    echo "abcd";
?>

When I open a page containing the shortcode, it builds and runs the Javascript and I get in the browser console :

status=error,xhr=<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /wp-content/plugins/foobar/myPHPFunction.php
on this server.</p>
</body></html>
,errth=Forbidden

I’ve checked the following:
– myPHPFunction.php has chmod 777
– All other plugins deactivated

If it is due to any rule in my .htaccess, I don’t know what to check..
I have tried to include myPHPFunction.php with a:

include(plugin_dir_path( __FILE__ ) .'myPHPFunction.php');

but it didn’t change anything..

Note that when I run the generated Javascript in an HTML page at the root of my website :
(excerpt)

        <body>
            <script type="text/javascript">
                jQuery(document).ready(function($){
                                       $.ajax({
                                              url: "myPHPFunction.php",
                                              type: "post",
                                              success: function(response) { console.log("return from myPHPFunction.php:"+response); }
                                              });                                   
                                       });
                </script>
        </body>

myPHPFunction.php being also at the root, I get:

return from myPHPFunction.php:abcd

so it works.

That’s definitely the context of running the code from my plugin’s php page that makes the difference.

Any help appreciated..

At last, just in case..
I’m using MAMP 4.4.1, WordPress 5.3, PHP 7.2.1, Firefox 71.0 (64 bits) ..

Thanks.

Grant Permission with Google get Forbidden result

$
0
0

I think I have setup the OAuth access for Google correctly, though the steps in:

https://www.cloudways.com/blog/post-smtp-mailer-fork-of-wordpress-postman-smtp-plugin/?id=339490#step8

seem out of date. When I attempt to Grant Permission with Google, after logging into my Gsuite account I get this error:

Forbidden
You don’t have permission to access /wp-admin/options-general.php on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

Bluehost is my host.

Thanks in advance for your help.

Resume installation loop

$
0
0

After following the resume installation steps. When I click on any functions, the “ resume installation” pops up again and again.

I am using the latest version of WP, php, and Wordfence.

I use chrome and found that there is an error console code.

mydomain/wp-admin/admin-ajax.php?_fs_blog_admin=true 403 (forbidden)

You can check the error from this screenshot
https://ibb.co/PDKs92G

Wordfence installation is incomplete admin-ajax.php 403 (Forbidden)

$
0
0

Hello. I’m trying to install Wordfence security, after activating the plugin it immediately blocks admin-ajax.php, because of this I can not complete the installation.
I enter my email, agree to the terms of use, select YES to receive notifications, click continue and nothing happens.
Console error VM2691:1 POST https://mysite.com/wp-admin/admin-ajax.php 403 (Forbidden). I understand that this can be fixed by adding Wordfence security admin-ajax.php to the exception, but I don’t have access to the Wordfence security settings because I can’t complete the installation.
1. Disable all available plugins. – Did not help.
2. Complete removal of Wordfence security manually. – Did not help.
3. Complete removal using the Wordfence Assistant. – Did not help.
4. Change WordPress theme. – Did not help.
5. Cleaning the cache. – Did not help.

https://imgur.com/K1dYZyt

When Wordfence security is active, admin-ajax.php does not work in other plugins. When Wordfence security is not active, admin-ajax.php runs correctly in other plugins.

Unable to update or create event not allowed

$
0
0

Hello

The plugin All In One Event Calendar bas bien installed for months on our website.

For this New year 2020, we wanted to update event on Calendar through the setting link of the plugin but it’s failed because of the following error message :

Sorry, you are not allowed to access this page”

I checked the rights in the users tab and i am Admin.

Do you know what i can do to update event in the Calendar ?
How Can i restore role or permissions for this plugin ?

Thanks in advance.

403 Forbidden

$
0
0

Hello everyone!

I have installed the plugin in my site for like 6 months. But recently the site block or something like that an speciphic user. I assume that it block his IP.

I ask for the user IP and this one doesnt match with any of the IP that my site have in the list of banned IPs

The error:

Forbidden

You don’t have permission to access / on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

If i deactivate the plugin this user can enter perfectly to the web.

How can I fix this?

Thank you!


Error 403 forbidden. check console output for debugging information

$
0
0

Hello,

error message : Error 403 forbidden. check console output for debugging information

I’m trying to add some translations to a website i’ve made, a while ago i had no problems with using Loco Translate but now i keep encountering this same problem on allot of wbesite’s that i created, can someone help me out with this?

Console :
Status 403 “Forbidden” (text/html; charset=iso-8859-1 199 bytes)
403 Forbidden
Forbidden
You don’t have permission to access this resource.

Forbidden You don’t have permission to access / on this server.

$
0
0

Forbidden
You don’t have permission to access / on this server.

Still have this issue … I have tried various trouble shooting

I’m missing out on collecting data for my website :'(

*** Forbidden. Sender blacklisted. Please enable JavaScript. ***

$
0
0

Hi

When I click ‘Details’ on certain items marked as spam, I see this text in red:

“*** Forbidden. Sender blacklisted. Please enable JavaScript. ***”

However, where does your plugin think JavaScript is disabled? As far as I know, it isn’t disabled.

Forbidden – You don’t have permission to access this resource.

$
0
0

Hi all,

Weird one. We’ve recently migrated our Multisite to a new server internally and now get this error when publishing edits to pages that have expanders on:

Forbidden

You don’t have permission to access this resource.
Apache/2.4.29 (Ubuntu) Server at elearning.bmh.manchester.ac.uk Port 443

I remove the expand tags with find and replace in textpad and it publishes fine.

Suspect we’ve got a security setting wound up too tight but I’ve no idea what.

Any clues?

Thanks.

403 Error when saving settings in WP-members

$
0
0

For others, thought this might help.
After trying various times to save settings in WP-members, I got a 403 Forbidden error each time when clicking the save button.

This is what I did to resolve:
In cPanel navigate to the Security Menu and enter ModSecurity module.
Disable it for your site. Log out of your wordpress admin site and back in… Voila!

Worked for me, hope it works for others.

Please note, I have another security plugin, so this might not be an applicable fix for everyone.

Regards

Viewing all 689 articles
Browse latest View live