A very odd thing thing has begun happening since yesterday, but it IS a dealbreaker.
I've been customizing a theme (using almost purely CSS) and the process has gone well. But now that I am ready to begin reorganizing my blocks for the new theme, I'm encountering a serious problem.
When I click the "Save Blocks" button on /admin/build/block Drupal sends me to /search/node without an error instead of saving! The same thing happens when I attempt to "Save Block" in the "configure" area for that block.
Does anyone have a clue why this might be happening?
The only thing I can think of that might be of consequence is that I "hardcoded" the search form at the top of the theme (easier than try to make a position for a block). Here's the code for that, if it matters:
<form id="search-block-form" method="post" action="/search/node">
<div><div class="container-inline"><div class="form-item">
<input type="text" class="form-text" title="Enter the terms you wish to search for." value="" size="54" id="edit-search-block-form-keys" name="search_block_form_keys" maxlength="128"/>
</div>
<input type="submit" class="form-submit" value="Search" id="edit-submit" name="op"/>
<input type="hidden" value="652cbefab2034310589ece72b0b023df" id="edit-search-block-form-form-token" name="form_token"/>
<input type="hidden" value="search_block_form" id="edit-search-block-form" name="form_id"/>
</div></div> And help is greatly appreciated as I am on a fairly tight schedule.
-Garrett
Comments
Also
I should also mention that this same theme was symptom free for the first couple changes I made to the blocks (just changing positions).
Ok... looks like I fixed it already
Guess I posted prematurely! Although, maybe this isn't the correct course of action:
It looks like I was missing a
</form>at the end of my "hardcoded" search bar. So, I added it and now the rest of my form buttons are working right again (including my "Save Blocks").Well, if anyone is as stupid as I am, maybe this post will help them.
-Garrett
I was also that stupid
Thanks. Good tip. I did the same thing.
im a rookie but... in what
im a rookie but... in what file should i bee looking for this code?