Cannot add or edit Joomla contacts from the administration - joomla

In the administration side, in my components, and on the contacts page, I cannot edit the contacts (add or save or close). The page is struck - all that I have to do is close the tab.
I tried in changing the permissions level too, but the issue remains the same. Please suggest to me some ideas.

Different solution: simply disable the osolcaptcha plugin while editing contacts. Most likely, contacts will not have to be updated very often.

Probably, it's too late but anyway...
I had the same problem - the page just froze every time I tried to save or just close the contact page. In my case the problem had been caused by osolcaptcha plugin that intercepted any submits to form with id="contact-form". So my solution was to make different ids for admin area and for my web-site's contact us page.

Related

Remove domain from reCAPTCHA service

I signed up at https://www.google.com/recaptcha/admin when I was setting up a forum page at mysite.com/forum but the method I used added a badge to the bottom right of every page on my site.
The badge looks like this right here.
I dislike the badge and my mobile users are very frustrated about it.
In an effort to remove it, I clicked the trash icon to delete my domain from the reCAPTCHA Admin Console area on Google. Two days later and it hasn't gone away.
I don't even use the forum anymore, yet somehow Google is able to insert an iframe onto every page of my site for some kind of invisible reCAPTCHA.
I didn't add any code to my site. I don't understand how they are doing this. It even shows on Firefox. When I search for how to remove the badge, I only see CSS solutions.
I do not want a CSS solution. I want it permanently gone. As if I never added my domain to their service. Maybe there is a specific amount of time before their service knows I deleted my domain from it?
My site uses Cloudflare and on the first visit you see the badge. Note that I am NOT talking about the challenge page.
How do I remove the "protected by reCAPTCHA" badge without using CSS?
remove
reCAPTCHA
من ال login
from cpanal

Session in MVC 3 for storing text in a textbox

I am new to programming, especially to MVC. I have designed a blog in MVC 3 ASP.NET for a client. The blog also have user account for admin for content management.
Once logged in, Admin can create new post. Sometimes the post can be long text. Therefore, I want to create a session to temporarily save the content within the text box as the user types it in automatically. Once the user click the submit button, the sessions ends and the text will be permanently saved.
This allows the users to leave the post half way through, come back and carry on from where they left. Also, if the browser close accidently, the user does not loose the text already typed in.
I have been trying find tutorial on this, but was unable to find a useful tutorial so far.
Any help, or point to useful tutorial would be greatly appreciated.
Thanks
It sounds like you need some sort of autosave feature. One option is the Sisyphus.js jQuery Autosave plugin that saves the form state in LocalStorage. No changes to your server side ocde is needed, so it should work for any existing ASP.NET MVC application.
https://github.com/simsalabim/sisyphus

profile picture upload laravel & foundation framework

I have a registration form completed and would like to add a profile picture upload. Once the user clicks the browse, he can select the photo. Then he clicks ok/apply/ok and then the photo is reflected in the thumbnail area without page refreshing.
Once the user is happy with all fields input he can submit the form and with it the photo of course.
Anything that does this exists out there already? If not, please provide guidance on how to establish this feature.
Thanks,
I'm not aware of a ready made solution for this but there probably is something :-)
However, with Laravel this is beautifully simple. You've tagged your question ajax but I'll answer this assuming you're going to use an old fashioned server round trip (i.e a form submit).
1) In your template, add a file element to the form. http://laravel.com/docs/html#file-input
2) Add some javascript to the page that detects when a file is selected and shows the preview. Extensive tutorial here: http://www.html5rocks.com/en/tutorials/file/dndfiles/
3) In your controller, handle the file using the Input facade. http://laravel.com/docs/requests#files

Google Docs spreadsheet form / permissions

I have a Google Doc spreadsheet, which I created a native Form for. I copied the form code, and integrated it into my own page here.
This form was working until I gave the website owner permission to view the spreadsheet.
Since then, when we hit submit, it takes us to the native form page, and does not insert form data into the spreadsheet. (You're welcome to test the form.)
Should providing viewing permissions to the spreadsheet break my own version of the form?
Did you set permissions via docs.google.com? If so then no it should not have changed anything. I got all the way through the form to "Attending
Your response has been recorded." Is this what you are getting as well or do you have a backend error?
If it is not a backend error and I was able to get somewhere you couldt I would suggest clearing your browser chache and possibly resetting your router as sometimes they hold a cache of older versions of a website.
Did the current form of yours manage to work this before? I mean. It is shown that in the native form the questions are text boxes. While in your GUI form, it had radio buttons and check boxes, since you are calling the native post back url?

Facebook Like-button comment box event subscribe

Long story short;
I have facebook Like-button on my website with comment box enabled.
I need to refresh current page every time user clicks like button (likes or unlikes my content).
I can achieve this with event.subscribe and edge.create / edge.remove events but the problem is that user should be able to post comments with like-clicks, too.
Currently this works fine with like-clicks only but the edge.create / edge.remove event executes in a few seconds after user has clicked like button and therefor not giving user enough time to write her comment in the comments box and post it.
I've tried comment.create and comment.remove events, but they're not firing at all when the comment is posted and because of that the page just won't refresh at all.
So the problem is;
Does anyone know how I can execute page refresh when user posts comment with like-click via the comment box that is integrated with like-button?
Any help would be appreciated! Thanks!
After struggling with this same problem for a while, and not being able to find a solution, I decided to go another approach.
While I see value in the Comments Box, I also see it as not very good design to have a Comments Box appear seconds before the page redirects/refreshes. So... with a little CSS you can hide the Comments Box, which might be a good option for you until Facebook makes Subscribing to a Like Comment Post, or Close of the Comments Box.
.fb_edge_comment_widget {
display: none !important;
}

Resources