Joomla , forms with upload and custom field from inside the administration panel - forms

I want a plugin for joomla like jforms or chronoforms in order to make a form to upload videos along with other custom fields to db and manage them. The only problem is I want this functionality to be made from inside the administrator console and not to appear on a page at my site's frontend. My site does not have a login service , so I need to make the admin able to login to administration panel and from there to upload and manage videos.
Do you know of a plugin wich supports this functionality? Thank you in advance.

Found the correct plugin. It is fabrik. http://fabrikar.com

Related

Is it possible to copy a website with its plugin?

Is it possible to copy a website with its plugin? There's a site which I want to have. However, it's really too expensive to buy. As I said, is there a way to copy that website with its plugin?
Regards
yes it is possible. if it is WordPress website then copy everything and paste into server and change the Database setting in wp-config.php and also change the site url and home url in wp-option table.

Change Front page for anonymous user in sugarcrm?

What I Want ?
I want my sugarcrm site Look like a normal site like any other site. on which their is Home, About us, Contact us and LOgin options are their?
What I have done ?
when I see the url of my site it look like "localhost/crm/index.php?module=Users&action=Login" thats why I have created a custom module for contact us and home page. and try to fetch that links through passing url.
face Hurdle in it?
Whatever I pass The link over it that was only open when any user login into it. it does not open for Guest user.
Please give some Idea about it.
I have also try to chang the LDAP Authentication but I can`t understand the behaviour of LDAP authentication.
This isn't the answer that you are looking for, but SugarCRM is not a CMS but a CRM. It isn't meant to look and work like any other site. It is a business application. That being said there are always ways to manipulate the theme/layout to match your business' theme so that all your business apps have a similar theme for your organization's users. If you are looking at doing something with external users having access to SugarCRM I then highly advise using a portal that talks with SugarCRM via the API. There are Joomla, Drupal, and other 3rd party portal solutions that integrate with SugarCRM for this.

Passing user data from Connect With Facebook button into Modx profile fields

I've been trying to use the Connect With Facebook button on a Modx Revolution site. I've been following along with this guide here: http://edwardawebb.com/web-development/facebook-login-modx-sites.
So far, I have the button creating the new user, but it's not passing through the data from the Facebook profile to the Modx profile fields. In addition to that, I need a way to tell the user what their username is so they can login with that username if they chose to (as opposed to using the Connect with Facebook button again).
Here is what my snippet looks like that is creating the profile from the Connect with Facebook button: http://pastebin.com/jdf5zrA8
Eventually, I want to collect more user data than what's in there now, but I figured I would start simple for now. Since this is a bit more advanced than my skills are.
I appreciate any help.
I'm just about to release an extra for MODX Revolution which will do what you need - see http://www.hyper-typer.com/news/facebook-login-modx and http://www.github.com/freelancewebdev/fblogin - particularly the snippets in core/components/snippets.

Is it possible to enforce initial configuration of a page app?

I'm attempting to develop my first Facebook app that is designed to allow clients of our website to sell tickets to their events from their Facebook page as well as from our website. So when the administrator of a Facebook page adds our app as a page tab, I need to be able to find out who they are so I can load the relevant event data. There also needs to be additional include/exclude configurations and various other options, which will affect the behaviour of the app.
So my question is how is this situation best handled? When playing around with a basic sandboxed app, I seem to be able to just add the app directly to a page; there is no prompt for configuration, and I can't see any way of defining custom properties.
Is the 'edit_url' property the only way to achieve this? If so, is there a way of automatically directing the page admin to this link upon initial use?
Decoding the signed request recieved in your page will give you more insight.
From this you can retrieve page admins' UID's.
You'll need to manage the rest on your side...
In order to get the user id the user will have to grant your application basic permissions.
I'm currently doing a somewhat similar app and, just like Lix said, I used the signed_request variable to detect the page where the tab is installed. Then, based on the page's ID, I retrieve the proper content.
To also give your users an admin page, add a Page Tab Edit URL in your app configuration where you can redirect your users to a custom panel where they can edit their app.

How to add a link (Like, comment) at the facebook app wall post

I have a Facebook application where I am using it in Windows phone 7 application.
I am done with share on Facebook option through my mobile application. I want to add an extra link at the bottom of my application wall post (beside the like and comment links present)
How can I achieve this? Which setting need to be set in the application settings?
The docs for integrating share functionality are at http://developers.facebook.com/docs/share.
However:
We don't recommend the Share button
for new developers. If you aren't
already using the Share button, we
recommend you migrate to the Like
button and Open Graph protocol instead
of Share for sharing pages from your
website. The Like button is simpler to
user and is the recommended solution
moving forward.
Because this is implemented in HTML & JS with Facebook's own scripts you'de need to look at usingt a WebBrowserr control to embed this funcitonality on your page.