Question related warning messages
0
votes
0answers
19 views
Unexplained warnings in Drupal 5 or Drupal 6
I had to work on a legacy system (which is either in Drupal 5 or Drupal 6), in which I had to make a new Theme.
What I did was, I made a duplicate (and renamed) of the entire folder of Drupal and ...
0
votes
0answers
31 views
How to unlink an active module from available-update-checks? [duplicate]
I am using a deprecated version of a module which I customized somehow.
How to exclude an active module it from "available updates" checks without breaking stuff? It's because I always get the ...
0
votes
0answers
137 views
Strict warning: Only variables should be passed by reference at eval() ..computed_field.module(466) : eval()'d code [closed]
This is warning message I got.
Strict warning: Only variables should be passed by reference at eval() ..computed_field.module(466) : eval()'d code
I think it's related to the code that I inserted ...
0
votes
1answer
654 views
Array to string conversion in DrupalDefaultEntityController->cacheGet()
I have a content type that has a multi-value taxonomy field. When I create a new item and select several values, I am presented with the following error
Array to string conversion in ...
1
vote
1answer
79 views
Including files in template.php. failed in some cases (when using some contrib modules)
In template.php, in theme__preprocess_page function, I am including files (as my template.php grew big, I decided to separate some operations for readability) like this:
function ...
0
votes
1answer
83 views
PHP Custom Form Render warning
I'm receiveing the warning
Strict warning: Only variables should be passed by reference in eval() (line 2 of D:\wwwroot\tixers\modules\php\php.module(80) : eval()'d code).
Everywhere I've looked ...
0
votes
1answer
108 views
print.module error - Warning: file_put_contents
I am using the print.module and dompdf to convert the PDF files. I am getting the following warning on my pages. How would I go about fixing this?
Warning:
...
5
votes
1answer
83 views
Got error while posting comment
I'm using "Unpublish comments with keywords" action. I've just noticed a PHP error on submitting any comment.
drupal_render() expects an array but comment_unpublish_by_keyword_action() calls it ...
0
votes
1answer
227 views
Cannot get dompdf to work [closed]
I have extracted the dompdf libraries folder to /sites/all/libraries
Re: 2. Edit dompdf_config.inc.php to fit your installation.
What exact changes do I need to make to this file???
Also, I am ...
0
votes
1answer
1k views
Warning: Invalid argument supplied for foreach() in element_children()
Warning: Invalid argument supplied for foreach() in element_children() (line 6370 of /home/mysite/public_html/includes/common.inc).
After disabling a couple of modules and saving the changes I am ...
1
vote
3answers
485 views
Hide error and warning in admin panel
I want to hide error and warning message from admin panel. I have checked the option None in admin panel for error reporting and still it showing error and warning messages in admin panel. let me how ...
1
vote
2answers
1k views
Memory warning message
I keep getting this error message:
Warning: require_once(): Unable to allocate memory for pool. in Database::loadDriverFile() (line 1742 of /home/site/public_html/includes/database/database.inc).
...
3
votes
1answer
243 views
Setting a Warning message in the Page.tpl.php file
I'm trying to set a warning message based on a PHP if statement in my page.tpl.php file. I can get a message out using $messages but I cannot using drupal_set_message(). Should I be using the latter ...