we want users to be able to upload an instance of a certain content type themselves using a form. Content type contains text, images and should be linked to the user uploading it. We've got the Profile2, account profile and IMCE modules installed but we can't seem to find a module that lets users upload a content type. Is this even possible, if not what are possible alternatives? thanks.
drupal: let users upload content type
164 Views Asked by RobSeg At
1
There are 1 best solutions below
Related Questions in DRUPAL
- Drupal image styles DivisionByZeroError
- Drupal: MQLSTATE[42000]: Syntax error or access violation: 1142 INSERT command denied to user when accessing any page with a form
- How can I add taxonomy to uploaded files through an api in Drupal 10
- How to retrieve taxonomy term name in url instead of id in a drupal view?
- Save button not displaying in drupal 9
- how to do ajax callback in custom block, which will fetch records from database dynamically in Drupal 10?
- Why are my form fields, built using Drupal Next.js Webforms, not displaying the Help Text?
- Multiple replacement / substitute NGgram string SOLR 8.6
- Drupal 9 Bartik (default theme) carried over from old Drupal seems to have previously worked but no longer renders HTML properly
- Getting no State error with simplesamlphp library v 2.13
- Using the Drupal Cache API for Drupal Entity Caching
- drupal version issue drupal 8 to drupal 10
- Why does my pure CSS parallax scrolling stop working on completion of page loading in Drupal 9
- Getting the value from a multi-select list PHP in Drupal site
- Parent menu link opens children when clicked, instead of going to link (Drupal)
Related Questions in UPLOAD
- Curl URL syntax for uploading files
- How to upload files to MediaWiki APIs in Rust?
- Trouble uploading with playwright
- Kendo Ui Angular File Upload
- Get 5 images with preview and delete using jquery
- how to analyse a project in sonarcloud
- Gzip compression for HTML form upload?
- Poco HTTP upload file, HTTP header written in file
- Upload .tex File to Overleaf
- Upload multiple pdf issue on jenkins with java selenium
- How can I upload a tar.bz2 file to Openstack Swift Object storage container using Python Swift Client?
- Fb2 UploadedFile mimetype on different OSes not the same
- Asset validation error on App Store upload
- Why uploading a file is so slow?
- dronekit can not download mission with serial or usb connections
Related Questions in MODULE
- (in promise) TypeError: NetworkError when attempting to fetch resource
- Cannot load modules/mod_dav_svn.so into server
- Not reading the function in a JavaScript Module file, by calling onclick in the html document
- Adding Modules to a Namespace using IIFE
- Preparing metadata (pyproject.toml) ... error
- I want to understand modularity in java. When compiling my app I have a ResolutionException
- ModuleNotFoundError: No module named 'src' while importing logging
- Nest.js can't resolve dependencies of the external library's Reflector dependency
- Npm build error: "Module not found: Error: Can't resolve './component/intro' in
- problemas con los CORS en .net core 7 y angular 15
- how can i fix this :ModuleNotFoundError
- A given package is installed but spyder won't see it
- Should I even continue trying to import a module from the parent package?
- Linking errors with includes in C++ nested modules
- Export and create package of c++20 modules
Related Questions in DRUPAL-CONTENT-TYPES
- "Fatal error when title field is empty(Integrity constraint violation)"
- I have few blogs on WordPress, which I want to upload those blogs into Drupal 9, what are the I have to do so
- Drupal 9: Get rendered view within Content type
- How do I store content in Drupal 9 about wrestlers and their entrance themes in such a way that a theme entry can be "borrowed" from another wrestler?
- Exporting Content Type Data from Drupal 7 Database
- How do you configure views block based on node reference in Drupal 8/9?
- Display list in table or grid format in drupal
- Drupal 8 hierarchy of content types with taxonomy as parent
- Use custom content type as field in another custom content type field in drupal 8
- How to make a Drupal Commerce configuration entity revisionable
- how can i slove the given issue while not disturb the built site in drupal
- How to customize/style/theme the output of a custom content type in Drupal 8?
- How to navigate the URL after booking page in Drupal 7
- Drupal 8 - Admin - Content Types - Manage form display - Fields groups, labels, headers
- fields of content type show as sidebar menu in drupal
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
When you say "upload content type", I'm guessing you mean create a new piece of content of a certain type? To create a new content type, CCK is a good choice. CCK will allow you to add a variety of different fields to a type of content that users can add. After you install CCK, you can add fields by visiting admin/structure/types and clicking the "Manage fields" link for the desired content type. You then have to be sure that the user belongs to a role that can add/edit that particular type of content (managed with permissions at admin/people/permissions. This is assuming you're using Drupal 7. Now when users go to add this new type of content, they will be presented a form with the fields you configured using CCK.