When using phpcs -v --standard=Drupal on a drupal site with coder installed the only results I get are: Registering sniffs in the Drupal standard...
When I use any other standard (Pear, PSR, WordPress, Squiz, etc...) I get results.
Has anyone encournted this before?
Thanks.
Related
Im trying to use the Wordpress plugin TranslatePress however the French Version of the page https://fr.londonauto.autoverify.com/fr/backend-glitch/ doesn't seam to play well with the page content.
I cant see anything relevant to the issue in the console.
Works without issue in the english version - https://fr.londonauto.autoverify.com/backend-glitch/
Wondering if anyone out there has experience with this plugin that might be able to advise.
It's obvious that in the /fr/ lang you missing to load many-many files. Your total requests are 104 for this page and in the FR you load only 42. It's very strange problem and I think that it has to do with you htaccess file. Can you please describe your server options, like: Cache system, Webserver type, etc? Also post your redirect rules if you have nginx or apache
My website http://edmcginnis.net is down and showing the following:
Parse error: syntax error, unexpected 'namespace' (T_NAMESPACE), expecting identifier (T_STRING) in /home/content/94/11030494/html/wp-content/plugins/contact-form-7/includes/rest-api.php on line 15
I thought it was the contact form 7 plug-in so I disabled it via ftp. That didn't work so I updated the php to 8.0 and when that didn't work I disabled all plug-ins. Still nothing.
Can anyone help me get this site back online? I'm not really sure what to do next. Thanks
Revert all code back to how it was before it was broken, including PHP. Someone probably upgraded a PHP, WP, plugin, or accidentally edited line 15 of the CF7 rest api file. If you are unable to debug you may need to reset your code.
One last thing to remember is that if you have anything in your theme that relies on a plugin function to work it will kill your site too. Disabling plugins isn't always a good way to remove issues but it will identify them.
I'm currently trying to install a Wordpress website, and providing it through multiple languages. I've found a bunch of plugins to manage the translation.
But I'm still getting stuck to setup WordPress to be able to have http://www.mywebsite.com/en/ and/or http://www.mywebsite.com/de/.
I've found the language switch redirecting to the same page, with the correct subdirectory, but I got an error 404. It looks something should be enabled globally on Wordpress, or even changing the Apache configuration?
Thank you for your future help.
You can User this plugin for making multilingual you site.
As you can see from the image above. I am experiencing some sort of error message but i have no idea what it means.
I am using wordpress 4.1 with a default theme. Every time i tried to add a menu to the menu structure i get the following message:
Gateway Anti-Virus Alert
This request is blocked by the Firewall Gateway Anti-Virus
Service. Name: Mailer.S (Trojan)
Things that i have already tried:
Using different theme
Installing and re-installing wordpress
Delete everything and start from beginning
And none of this work!
Please help me.
Thank you
You probably got infected with malware, and a service running on your hosting is blocking some malicious code. At best you can contact your hosting provider and ask them how to resolve. Malware on a WordPress site is pretty common by using outdated plugins, themes or having insecure rights on folders and files.
It's pretty hard to get rid of, you have to search trough every file to check for malicious code and check every folder for files that shouldn't be there.
I have to extend an existing Drupal installation with a few features. I am working on a dump of our live system.
I want to search for a bug and install the above mentioned modules, after the installation some pages of the site are completely empty, except for a picture. Some other pages seams to still work as the whole page did before.
I am using the following versions of Drupal and third-party modules:
Drupal 6.19
Devel 6.x-1.24
Theme Developer 6.x-1.x-dev
Do you have any idea on what is going on?
Not sure the exact problem but add the code below to the top of index.php file so your site will show the exact error. php settings can hide these messages but we are going to show them for debug purposes.
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
// $Id: index.php,v 1.94 2007/12/26…
Note that the "//$id:" part is from the original file.
You can also try renaming the devel_theme folder to a temporary one to see if it works.
If you can give us some examples of pages(relative path) where you get this error, I think I can give more info.
Also, check watchdog and syslog to see any hidden errors if any.