drupal vulnerability

Alibabacloud.com offers a wide variety of articles about drupal vulnerability, easily find your drupal vulnerability information here online.

Quick deployment of nginx, php-fpm, and drupal in CentOS 6.3

Everything is based on the principle of simplicity, yum/rpm, and never compiled manually :)The deployment environment is based on the CentOS 6.3 x86_64 system.0. Preparations # Update yum [root @ imysql ~] # Yum-y update [root @ imysql ~] # Yum install libaio-devel.x86_64 # drupal 8.0 requires curl module [root @ imysql ~] # Yum install curl-devel [root @ imysql ~] # Yum-y install libpng-devel libjpeg-devel freetype-devel gmp-devel libxml2-devel 1. In

Php file upload form from drupal code

Today, we will share with you how to compile php file upload code based on specific code examples and detailed annotations, which is suitable for beginners of php. Drupal Example of drupal file upload form The code is as follows: Function upload_form (){ $ Form = array (); // If this # attribute is not present, upload will fail on submit $ Form ['# attributes'] ['enablesype '] = 'multipart/form-data '; $

Create your own hooks for Drupal module development

Drupal's hook system allows interaction with modules and changes the logic of other modules, or even changes the core logic of Drupal. This is a very simple system, and even allows third-party modules to create their own hooks. In general practice, there are two types of hooks you may want to create, one is the content modification class hook, the other is the interception class hook. The hook of the mo

Migrate a blog from wordpress to Drupal real-time recording

be migrated.A small problem is that wordpress comment migration is a problem. It may be because wordpress has enabled the plug-in to block spam comments (just speculation, there is not much time to dig into the cause ). Because there are not many comments on this site, I don't care too much about it. I will manually make up for it.2: Drupal blog website configuration.Required modules include views, back to top, text resize, flippy, and customerro

Various login boxes that Drupal may implement

Today, we are going to discuss the various implementation methods of the drupal login box, so that you can use your imagination to the fullest extent!1. Block modeThis is the most classic implementation method. drupal comes with it! You can modify the block location, style, and so on.Or put it here.2. Log in through the custom form pageThe implementation method is as follows:This is a case study of Midlevel

Daily operation and maintenance experience of drupal site

page download module compressed package, page address https://www.drupal.org/project/baidu_analytics2, and then install the module to their own drupal website, the specific operation method can refer to the fourth class of the "how to add modules and themes" http://www.drupalla.com/node/31373. After the module is installed, you can enable it. In this way, you can enter the management background to set up the Baidu analysis module. Access Me

How to store node content in Drupal

You will be surprised when you look at the node table in Drupal. that is because you can not find the content field which is used to store the content. in fact, Drupal uses field API to store the content. frankly speaking, this is a good design and one of Drupal's advantages. you can understand node as the base table and it can be extended in other tables. In the following, I will use Blog module to make in

Python crawler Combat (1): Crawl a list of Drupal forum posts

1, Introductionin the the Python Instant web crawler project: Definition of content extractor we've defined a generic Python web crawler that expects to save more than half the programmer's time through this project. This article will use an example to explain how to use this reptile. We will crawl collection of old forum, is a use Drupal forum. 2, Technical points we are saying in multiple articles: Save the programmer time. The key is to omit the ti

Method for configuring Nginx php-fpm Drupal in CentOS 6.3

virtual host, as well as Drupal's rewrite rule configuration, simple and fast.Start test After each modification of the configuration file, remember to perform the following command to test the correctness of the configuration file: The code is as follows Copy Code [Root@imysql ~]#/etc/init.d/nginx configtestNginx:the configuration file/etc/nginx/nginx.conf syntax is OKNginx:configuration file/etc/nginx/nginx.conf Test is successful After confirming that

Solution for adding modules in Drupal with inexplicable errors (often when many modules exist)

The status is as follows:1. After clicking the "warranty" button, the page cannot be displayed normally and a blank page appears;2. Refresh the page and send out the items in the navigation that are no longer available. You cannot click the items that still exist to enter the normal page.After multiple tests, no problems are found. After multiple reinstalls and tests, an error page is displayed: "drupal Maximum execution time of 30 seconds exceeded da

Drupal Simplified Chinese Language Pack Installation tutorial _ php instance

This article describes how to install the Drupal Simplified Chinese Language Pack. This article describes how to install the Drupal Chinese Language Pack. For more information, see http://localize.drupal.org/translate/downloadsto download the latest drupal6chinese Language Pack. Go to admin> site building> modules [admin/build/modules] to enable the Locale module. Go to admin> site configuration> langua

Install lighttpd + php + mysql + Drupal In Debian

Install lighttpd + php + mysql + Drupal In Debian-Debian information for the Linux release. Source: http://www.phecda.org/200803/install_lighttpd_php.html Setting up a website in Linux is not difficult, but it is simpler In Debian. Linux uses Debian and http server software uses lighttpd. It is a lightweight server software. Today, many cool stations have it. php is used for dynamic languages and mysql is used for databases, CMS uses

Open-source program nginx rewrite rules/CI/yii/CakePHP/Symfony/wordpress/Drupal

;Log_not_found off;Expires Max;}Location ~ \.php$ {Try_files $uri = 404;Fastcgi_split_path_info ^ (. +\.php) (/.+) $;#NOTE: should have "cgi.fix_pathinfo = 0;" In php.iniInclude Fastcgi_params;Fastcgi_index index.php;Fastcgi_param script_filename $document _root$fastcgi_script_name;# fastcgi_intercept_errors on;Fastcgi_pass 127.0.0.1:9000;}Location ~. *\. (gif|jpg|jpeg|png|bmp|swf) ${Expires 24h;Access_log off;}Location ~. *\. (JS|CSS) ${Expires 24h;Access_log off;}

How to configure and use the Memcache hash policy in Drupal

Memcach is a powerful tool for improving the performance of web applications and Drupal applications. Recently, Memcache has been used to find many minor problems. Therefore, the author has summarized several issues for your reference.1. Differences between Memcache and MemcachedThis is a historical issue, but in short, the name is even better!Therefore, memcached is recommended.In addition, memcached has many new features, including getMulti/setMulti

Drupal custom localization tutorial

Here we will talk about the custom Chinese version of drupal, but there are still many characters that do not contain Chinese characters, which may come from a third party or do not need Chinese characters. At this time, we need to customize it ourselves.For example, I added a saved draft on the editing page, which is not conceptually different from the saved draft. Because they need to review the post, they need to submit it again, it is difficult to

Use Drupal Form Hooks to customize the Form

The Hooks (hook) that is most commonly used in Drupal usage or development is hook_form_alter. The content creation, contact form, Menu, and, form hooks are used for user registration.Drupal Form HooksThe hook in hook_form_alter is directly replaced with your module name. The code is as follows:Copy code /*** Implements hook_form_alter ().*/Function custom_form_alter ( $ form, $ form_state, $ form_id ){Switch ($ form_id ){Case 'user _ profile

Drupal, what's the deal?

Drupal $Id $ ? /** ? * @file ? *administration page callbacks for annotate module. ?*/ ? /** ? *form Builder. Configure annotations. ?* ? * @ingroup Forms ? * @see System_settings_form (). ?*/ function Annotate_admin_settings () { ?//get an array of node types with internal names as keys and ?//"friendly names" as values. ?//e.g.,array (' Page ' = ' page ', ' story ' = ' story ') ? $options = node_get_types (' names '); ? ? $form [' annotate_node_typ

Drupal progress bar

Introduction: This is a detailed page of The Drupal progress bar. It introduces the knowledge, skills, experience, and some PHP Source Code related to PhP. Class = 'pingjiaf' frameborder = '0' src = 'HTTP: // biancheng.dnbc?info/pingjia.php? Id = 340018 'rolling = 'no'> Drupal has a built-in batch tool with a percentage progress bar showing the operation progress. The usage is as follows: Batch_set (b

Drupal and Module

The Module dependency of Drpal is quite high. Therefore, when developing a Module, make sure that a common Module has been installed. The following uses Drupal7 as an example to summarize common modules: Drupal 7 Core already contains commonly used modules such as image and kipde. Other required modules: Views (http://drupal.org/project/views) (Http://drupal.org/project/ctools) Http://drupal.org/project/panels (Panels) Editor WYSIWYG Provides s

Specifies the path for the Drupal imce module to store images.

If you use imce in Drupal to upload images, by default, imce throws an image into the Directory Sites/default/files/U % UID (% uid indicates the user ID ). It is not ideal to put images in this way. As the site creation time increases, the number of images will inevitably increase. It is difficult to manage images in a folder. We can make certain settings in imce to customize the storage path. From the Drupal

Total Pages: 15 1 .... 11 12 13 14 15 Go to: Go

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.