This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

acidfree content create issue

Hi,
i installed acidfree module.
after installation when i start to create the content this throws like below:

********************************************************************
Call to undefined function _image_build_derivatives() in D:\newwamp\www\drupal-4.7.0\modules\upload_image\upload_image.module on line 164
********************************************************************

Need your help.......

no button in browser and TinyMCE editor handling error

hi to all,
i m new to drupal.....i installed drupal 4.7.3 ..after that..i try to develop a site...
ater that i found..
==>page.tpl.php and style.css is one way to develop
==>mytheme.theme and style.css is another way to develop (in php template engine)
is it correct?
now..i m creating a content...i want to manipulate a content..and add a image to the content..
for that editor is need... so i try to user editor...tinymce,.....

===============================
for uploading a image i install...imce.module (imce4.7.x) but..the button not in my browser....
for that what is the solution..?
===============================
after that.....we ..install image.module,img_assist.module,tinymce.module....
in this..image and img_assist is working ...
but...
tinymce is working...
(main) tinymce(2_0_6_1)--->docs,jscripts,examples,tinymce(4.7.x)...avaiable...
in inside tinymce(4.7.x) contain..install.txt, plugins,tinymce.module.....like...

now...in admin..-->settings..i try to set the tinymce ...i got follwoing error
Could not find the TinyMCE engine installed at modules/tinymce/tinymce/tinymce/. Please download TinyMCE, uncompress it and copy the folder into modules/tinymce/tinymce.
in this settings i m able to create a profile.....but i got this..error...
what is the solution...for this...
i saw the forum..but...i didn't reach...

How to duplicate a 'upload' module?

I need to have two separate upload section in my form. But upload module can only provide one. How can I duplicate it? I have tried to read the source code but it is really a little hard for me.

thanks

Modifying search index

It seems that there's a pairing between a node's view and it's indexing.
You may add new data to the index easily, through the 'update index' hook but I think you can't modify data present in the node's view, which is included in the index by default, and cannot be removed. Node module's node_update_index hook calls the view hook and adds the result to the index. You may override this by implementing hook nodeapi 'view' but this will change the node's view.

Why do I need some fields to be viewed but NOT indexed? A good example is the CCK nodes. CCK view includes node's field labels and texts, and I don't want the labels to be indexed, just the texts. But of course, they should be part of the view output.

So my question is... how can I separate a node's view from its indexing so that the view isn't always included in the index?

There might be a solution for this (without patching core modules), but I don't know... the simplest thing I came up with is adding a flag to hook nodeapi('update index'), telling the hook caller to rewrite the index with the hook's result instead of appending it to the index previously build based on hook view.
I'm referring to the node_update_index() function, in node.module (this is the original code, I haven't done anything yet):
<?php
// Get node output (filtered and with module-specific fields).
if (node_hook($node, 'view')) {
node_invoke($node, 'view', false, false);

Site Reviews module?

I just wanna ask if there is available module like this one, Site Reviews module?

Thanks.

How can I limit the attached files amount in upload module

in the settings I just found I could set the size of file(s). Is there any way to set the files amount?

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions