Many Drupal programmers, Drupal site admins and Drupal site users have encountered errors similar to "PDOException: SQLSTATE[HY000]: General error: 1364 Field 'users' doesn't have a default value: INSERT INTO {node} (vid, type, language, title, uid, status, created, changed, promote, sticky) VALUES ..." in their Drupal site. If you are facing the same situation in your Drupal site then read on to find out the solution.
Technical Blog
Many Drupal programmers, Drupal site admins and Drupal site users have encountered errors similar to "The selected file /tmp/file*** could not be uploaded, because the destination ***/***.*** is not properly configured." in their Drupal site. If you are facing the same situation in your Drupal site then read on to find out more.
The default method of changing a Drupal theme using the graphical Admin interface is familiar to most Drupal users. However a Drupal user is limited to changing only one theme at a time using this method and it is also slightly time consuming. What if you want to enable more then one theme at a time? Drupal provides a quicker way to change the theme using the bash command line. Read on to know how to enable multiple Drupal themes using the bash command line
If your Drupal website is delivering content to other third party sites through web syndication mechanisms like the RSS feed you need to purify the HTML markup before delivering it to them to prevent an XSS attack on those sites through your feeds. Read on to know how to programmatically purify the contents of your Drupal website's feed .
In one of the Drupal projects I worked on I happened to notice a Javascript error message " ReferenceError: CKEditor is not defined " which caused a number of issues in the normal working of CKEditor. If you are facing the same error message when using CKEditor in your Drupal site and want to know how to fix then read on.
We may face a situation in our Drupal site utilizing Ubercart where we need to change the product shippable property during the checkout process. If a product can be shipped freely to certain locations we need to set the Shippable property to false programmatically in the Ubercart checkout process. Read on to know how to change a products shippable property during the Ubercart checkout process.
Many Drupal programmers, Drupal site admins and Drupal site users have encountered the
"Notice: Undefined variable" error message in their Drupal site. If you are facing the same situation in your Drupal site then read on to find out more.
Many Drupal programmers, Drupal site admins and Drupal site users have encountered 403, 404, 406, 500 or "Page not found" errors when submitting content with specific phrases. If you are facing the same situation in your Drupal site then read on to find out more.
Many Drupal programmers, Drupal site admins and Drupal site users have encountered the error message - "MySQL: "Warning: MySQL server has gone away" on their Drupal site. If you are facing the same situation in your Drupal site then read on to know the fix.
Many Drupal programmers and Drupal site admins have encountered a situation where two functions have the same name. If you are facing the same situation in your Drupal site then read on to know the fix.
Many Drupal users have encountered a situation where a module and a theme have the same name in their Drupal site. If you are facing the same situation in your Drupal site then read on to know the fix.
Many Drupal users have encountered a "Fatal error: Allowed memory size of X bytes exhausted (tried to allocate Y bytes)..." error message in their Drupal site. If you are faced with an error of a similar type in your Drupal site then read on to find out more about the issue.
Many Drupal users have encountered a message similar to Fatal error: Cannot redeclare getnodecount() (previously declared in /var/www/sites/site.org/htdocs/includes/common.inc(1685) : eval()'d code:3) in /var/www/sites/site.org/htdocs/includes/common.inc(1685) : eval()'d code on line 9" If you are faced with an error of similar type then read on to find out more about the issue.
Many Drupal users have encountered a "Fatal error: Call to undefined function" error message in their Drupal site. If you are faced with an error of a similar type in your Drupal site then read on to find out more about the issue.
Many Drupal users have encountered a "Fatal error: Unsupported operand types in common.inc" error message in their Drupal site. If you are faced with an error of a similar type in your Drupal site then read on to find out more about the issue.
Many Drupal users have encountered a situation where two or modules in their site have the same third party library. If you are faced with an error of a similar type in your Drupal site then read on to find out more about the issue.
Many Drupal programmers have received a function got declared inside of another function error when writing code for Drupal. If you are facing the same situation when coding for Drupal read on to know the fix.
Many Drupal users have encountered a message similar to "Fatal error: Cannot redeclare system_requirements() (previously declared in /modules/system/system.install:12) in /modules/modules/system/system.install on line 299". If you are facing an error message similar to it in your Drupal site then read on to find out more.
If we want to run more than one site using a single Drupal installation we can use the multisite feature of Drupal. This multisite feature will allow us to share the core, contributed modules and themes among several sites. Nevertheless each sites has its own database and configuration. Read on to know how to setup a multisite Drupal installation in your localhost.
Many Drupal users wanted to know how to redirect a node-edit form to a custom page after submission in a Drupal 7 based website. If you want to know how to redirect a node-edit form in your Drupal site to a custom page after the form has been submitted then continue reading.