Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
297 views
in Technique[技术] by (71.8m points)

Drupal 7 "post_articles" module missing

I am trying to start a Drupal 7 website. I was provided with a folder containing a Drupal installation, and was to move it to a server with a database supposedly for that installation.

Upon me doing so, Drupal gave me several errors regarding missing modules. After manually installing most of the missing modules, I am left with a single error, which is

User warning: The following module is missing from the file system: post_articles. For information about how to fix this, see the documentation page.

I am unable to find the post_articles module on the Drupal website or anywhere else, and am at loss how to proceed.

question from:https://stackoverflow.com/questions/66053160/drupal-7-post-articles-module-missing

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It's not a contrib module so you cannot get it from drupal forge, otherwise to unlock your situation you can disable module by query into your database :

UPDATE system SET status=0 WHERE name='post_articles';

But it can be a dependency of another module so be careful when you're disabling module with this way.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...