The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
43 views

How do I update Drupal 7 Core with only security patches?

I have a old Drupal 7 installation and I would like to update my Drupal 7 to the latest release, but I know for a fact that some of my custom module will break on the latest update. All I want ...
0
votes
1answer
35 views

Patch a module loaded by a distribution

I am trying to make an installation profile that inherits the commerce kickstart distribution. In order to get this to work, I need to apply a bunch of patches through drush make. First I have to ...
1
vote
1answer
33 views

Commit doesn't show up in profile on Drupal site

I submitted my first, (and very small patch) here, by following the instructions here. It looks like the patch worked, but when I look at the Commits tab of my profile, I don't see any entries. When ...
0
votes
0answers
87 views

Problem with applying patches with Cygwin: can't find file to patch at input line 5

I use Windows, and need Cygwin to execute some vital commands for patching. So, when I type: $ patch -p0 < bugfixer.patch Cygwin outputs: can't find file to patch at input line 5 Perhaps ...
9
votes
2answers
131 views

How do you contribute patches to Drupal core?

What is the proper process to contribute patches to Drupal core? Let's say I find a bug in Drupal core, fix it, and create a patch. How do I submit it? If the bug is in Drupal 7, do I have to also ...
2
votes
3answers
70 views

Overriding contributed module functionality

Every so often, I need to make a little hack to a contributed module to add a bit of needed functionality, usually something specific to the project that the module maintainers probably would not want ...
1
vote
3answers
630 views

Feeds: use custom field as unique field for mapping

I am using D7, Feeds, XPath Parser. For mapping, I need to use a custom field as the unique field. I am retreiving data from booking.com and the unique value their is the hotel id, so i need to save ...
0
votes
1answer
30 views

Why is my patch failing a test?

When a patch fails testing because it doesn't apply, and the error reads "Ensure the patch applies to the tip of the chosen code-base." what does this mean?
0
votes
1answer
32 views

Save patch changes after module upgrading

Am I need to apply patch after every module upgrading? I had a patch, I changed manually handler of views module but yesterday after upgrading Views module I lost all my changes. Is it possible to ...
0
votes
0answers
72 views

Automated test of Workbench Moderation fails to set state to published

I'm writing a test for this patch. My test is meant to create two users, create a draft as editor, and then moderate it as moderator. At the end I will compare the putative draft author before and ...
4
votes
1answer
36 views

detect patches and custom code in core and contrib of an installation [duplicate]

Possible Duplicate: Finding modified modules I've been given a 3 years old Drupal 6 installation. I'm afraid that the original developer has hacked the hell out of core and many contrib ...
1
vote
1answer
61 views

What am I doing wrong in applying patch?

HI im trying to us this patch http://qa.drupal.org/pifr/test/298933 Save the patch file to the root directory of feeds module sites/all/modules/feeds/ Then apply the patch by using git bash ...
0
votes
0answers
52 views

update patch for ubercart from 2.4 to 2.10

I found a patch http://www.ubercart.org/forum/ideas_and_suggestions/4582/price_adjustments_multipliers#comment-54763 using that mysql and the patch from #22 but this patch is from ubercart 2.4 and I ...
0
votes
1answer
1k views

How to install a patch to drupal 7

I recently exprience one problem that requires a patch. I downloaded that file .patch, but have no idea how properly to install that to my hosted website. Thanks in Advance!
3
votes
1answer
128 views

How to manage version control for patched contrib modules?

I got some great feedback regarding patching contrib modules. Is there a good way to keep track of patches to contrib modules? For example, let's say I create a patch for a contrib module and submit ...
5
votes
2answers
74 views

What does test status postponed for a patch on d.o mean?

I've added a patch for the rules module. The patch detail page says the test status is postponed. What does that exactly mean? Is there anything I should do to get the patch tested?
6
votes
2answers
2k views

How do I apply a patch file?

I downloaded a patch file from mailhandler module and need to apply the changes in order to fix the problem of pop3 accounts not deleting emails after download (import). However, I have never applied ...
0
votes
2answers
639 views

Cygwin Patch fails

I have failed to get my first patch to implement. I loaded cygwin, maneuver to the directory, and enter patch -p0 < ThePatchName.patch Cygwin returns bash: patch: command not found I searched ...
5
votes
1answer
104 views

What does testing a patch mean?

In drupal.org issues when someone creates a patch, in attachment table there is a column named Test result which has a value like FAILED: [[SimpleTest]]: [MySQL] 32,869 pass(es), 2 fail(s), and 0 ...
2
votes
3answers
2k views

Applying a patch doesn't work

I'm having trouble with applying a patch for a Drupal module. I thought it was as simple as using "git apply thepatch.patch," but when I do this in the main directory that holds the .git directory, I ...