Google Sites - Using Forms - form-submit

I am building a Google Sites page with a simple form in which you can upload attachments. How would I go about having users fill out a form and attach a .jpeg that would automatically add the new jpeg file to the home page?
Thank you!

There is no way you can attach a .jpeg file to a google form, i am on similar project.
BUT! You can make a special form created by HTML and JavaScript, where you can add the file submit button. It took me days before i got it but to help you i show you where i started:
Google Forms file upload complete example
It is an asked question about similar topic.
http://www.labnol.org/internet/receive-files-in-google-drive/19697/
This is the page, where i finaly understood what is going on.
Just by the way. You will have to do a lot more scripting than that. This are only ideas where to start. I am working now on the uploading to the google site.
If you have anymore problems, please contact me. I can show you the source codes i am working on right now.
Have a nice day and good luck with sripting ;)

Related

Get image from URL - Power Apps

I'm building a simple app, which shows news from different websites, e.g. https://techcrunch.com/2020/07/28/transferwise-five-unicorns/
My source is a database with news URLs.
Each article comes with an associated image. I do not have a URL of the image, only URL of news itself.
My question is, how can I get the associated image to appear in my Gallery? Is there a function I could use?
Here is an effect I'm trying to achieve:
Help please,
Thanks!
Maciej
Ps. I know it is possible, as all rss readers (like Feedly) or even SharePoint news webpart easily pull image just from provided link.. but how?
Are you unable to copy the image path and manually input it into where you want it to go?

How to Change Search Text that Google shows for my Joomla Site

Hi I have built a joomla search that has been live for a couple of months and is working completely fine. One of the things that I came across last week is when i search in Google for 'MyCompany' then this brings up the link for my site, but underneath the link rather than a brief text about the company all i see is the banner image names that have been used on the site.
Unfortunately I have never really dwelled into the SEO side of the website but would really like to know what I need to do on the site to get this fixed, would really appreciate it if somebody could please advise.

Google forms - Get a custom form with many pages

I spent the last two hours searching on the Internet how to solve my problem but no one seems to experience this issue.
As many of you know, we can create a form on Google Forms Tool, then get source code and apply it to our own website giving us the ability to customize it.
My problem is: My form is really big so I separated it in different pages (I inserted "page break") and it is working.
But when I go get the source code, apply to my site, and I click "continue" it goes directly to google again...
Is there any way I can solve this?
I tried embed code but then i have another problem: I can't style it with css!!
Thank you, hope you guys can help me :)

Asp.Net MVC 3 Free Text Editor with File Upload

I spent all day yesterday looking for a text editor for my Asp.Net MVC 3 application without any joy. What I am looking for is a text editor that I will use to allow a user to add a news story. Therefore, it would be nice if when using the editor the user, as well obviously adding text, could embed an image by hitting an image icon and browsing to their local drive. And also to highlight text, ie 'Further Info', and be able to link to a document which they can also upload.
I know you might think reading this that there are loads of tutorials etc on the Web that already explain that, but after a full day of researching yesterday I have not been able to find any. Either the documentation is for asp.net Web Forms, or PHP etc, but I can find hardly any info on how to implement this for MVC.
I know that the likes of CKEditor and TINYMCE are availble, but I can find no information on how to implement these to my requirements stated above.
If anyone knows of any tutorials or even any alternatives that I could use it would be very much appreciated.
This might be what you are looking for. A solution for tinymce: http://www.xdevsoftware.com/blog/post/TinyMCE-Image-Upload-Plugin-for-ASPNET.aspx

Embed Powerpoint viewer on a web page (PHP)

I am building a PHP application where the user upload Powerpoint files. I want the other users to view it online instead of downloading. (Using a third party apps like google docs might be a little cumbersome for the users) Is it possible to write a powerpoint viewer code in PHP?
You could automate the process of using google docs with php.
Google provides a ppt viewer that can be embed into webpages using the following code
<iframe src="http://docs.google.com/gview?url=http://www.domainname.come/presentation.ppt&embedded=true" style="width:550px; height:450px;" frameborder="0"></iframe>
Now im assuming php handles the uploads your users make, thus it would be easy to find the url to the specific ppt file. You could store this url either in a variable or a database, fetch it when needed and place it in the code above.
I hope I have been able to explain the logic im trying to apply, do let me know if you need more specifications.
I suspect it would be much easier to reduce the powerpoint slides to .PNG files, and build a simple PHP script to cycle through the images.
You want to re-write Powerpoint in PHP? I'm gonna say... very difficult at best. There are, however, tools out there that make your life easier. Also, there's a "Save as web page" option in Powerpoint, so maybe you could have your uploaders save the powerpoint as a web page, and upload that output, which I would imagine would be pretty easy for you to subsequently put up on the web.
Alternatively, if you're feeling more ambitious, you could read up on the Google docs APIs, and possibly create a portal to upload to Google docs for the contributors, and view Google docs for your visitors. Your PHP frontend could leverage the power of Google docs, but eliminate the cumbersomeness (I'm kind of surprised that's a real word).
"Is it possible to write a powerpoint viewer code in PHP?"
Yes. Unfortunately, if you are asking this question, you probably won't be able to do it yourself.
If you want to try it anyways, here's a good place to start:
http://msdn.microsoft.com/en-us/library/cc313106(office.12).aspx
Or you can look for a library that does that. They are probably out there, just Google it.
EDIT: Found one here:
http://phppowerpoint.codeplex.com/
Powerpoint files can be embedded on a webpage using the API provided by Microsoft.
<iframe src="https://view.officeapps.live.com/op/embed.aspx?src=https://yourdomainname.com/your_powerpoint_file.pptx" width="100%" height="565px" frameborder="0"> </iframe>

Resources