Application logo missing from OneDrive application settings page - onedrive

I have integrated Microsoft One Drive cloud service to one of my web applications through the REST API.During the time I registered my applications with One Drive through the Application Settings page, I had uploaded application logo's for each of the application which I had registered. But right now when I open it after some days , I find that the logo's which I uploaded for few of the applications are missing while for few, its present as it is. For few applications, it just shows 'Image of a 48 by 48 logo' message in place of the logo. This is kind of weird because I had uploaded the same logo for all the applications initially. Also, when I inspect that image element I find the src attribute for the image has some different location internal to Microsoft and my image is not present there. Even if I try to upload the same image again, it just saves the changes but doesn't show the image there. Can someone help me out with this?

Thanks for this report. We found an issue with some of the icons and it should now be fixed. Your URL works now.

Related

media folder suddenly empty

I'm trying to upload some images in my wordpress backend, but it fails every time. It could be permission issues because I have had trouble with that earlier in the project. But the weirdest thing is that I see on my server that the media folder is suddenly empty, while all the media in the wordpress backend is still there and the website is running fine. Anybody got an idea how this could have happened?
Try to edit one of the picture in the media on admin dashboard, there will be a text field titled 'File URL' on the right side.
Paste that into address bar and see if the browser loads it correctly. If yes then the problem is on the folder permission (or you might have opened the wrong directory), if not, you might wanna try to clear the browser cache or use another platform to open it.
Hope it helps!

How to bypass red5 demo page on start up?

At present, I start up red5 in linux command line ./red5.sh and it runs the script. Then I go to http://localhost:5080 demos page to set up my camera and audio input and all works fine in testing the stream both on demo page and in swf of my webpage.
Question is, do I need to include some java and/or action script for the swf player to
bypass the red5 demo page so I can directly connect my input and stream in the code of the page? Also so only logged in webpage viewers can connect?
Overall wondering if there is a way of hiding the server stream from anyone not logged in to view it on my site? I understand in webapps folder somewhere there is the hosts list of IP but it would be impossible to know the IP of the viewers as opposed to unwanted viewers or bandwidth stealers.
I am trying to set up a site for poetry readings and make it so readers can record live to my server and then logged in viewers can view from my website. I am trying to figure out whether I must have that red5 page open and if that doesn't pose some kind of risk.
Found my own way of doing this just by removing and renaming files and folders.
If you go to usr/local/red5/webapps here lies all the directories for viewing when you go to default port 5080 so I simply installed the applications I needed and then took everything out of there except those applications I wanted and needed to run. I took out all and placed it in a folder in /var directory named it red5_movedstuff in case I want access to further applications later on.Then I renamed the applications I am using in webapps folder and kept admin folder to access them but I renamed my applications and had to importantly rename also in WEB-INF for each application name change.
Now if someone goes to myip:5080 they get a blank page and by changing names of applications I've hidden my directories beyond that including list of streams.

Why might CorelDraw's publish to pdf feature produce different size files depending on which group the executing user account is in?

As part of a project I am developing a web service to convert CDR files to PDF. I am using c# to trigger CorelDraw's publish to PDF feature. The conversion is run as a command line utility called by the web service.
I am hosting the web service in IIS. I have created a user account for the website's application pool in order to be able to run CorelDraw (I was unable to get it to work with the default application pool and configuring DCOM).
I am getting PDF files of different sizes depending on whether I manually log in to the account and run the conversion program or trigger it through the web service from another machine. I seem also to get different file sizes depending of whether the application pool account is in the users or administrators group.
Can anyone suggest why this might be happening and what I can do about it?
pdf files sometimes have partial or complete typeface (font) data embedded in them. Maybe access permissions to the font source are different for the different credentials you're using and Corel is leaving them out if it doesn't have access to them.
In Adobe Reader, right click, choose Document Properties, and look at the Fonts tab. Check both the bigger and smaller pdf files, and see if they have same set of font data loaded.

Image not displaying in image control

I'm showing an image in image control. For that I have created File Upload control of TextBox and button. And storing image in projects Images folder.Image is uploading very well. But it always needs to include in project then only I'm getting image displayed. Is there any solution to overcome this problem?
Be aware that the Silverlight application is running LOCAL in the user's browser. It cannot (easily) access files on the webserver that you upload. Files you include in the project work because they are compiled into the dll which is downloaded to the browser.
To dynamically access files uploaded to the server you need to implement some kind of WCF service to send it back. I don't know if you can easily "download" a file into a Silverlight App with a URL. Silerlight is pretty tight on what you can and cannt do...

vb.net problem with path

I have created a web application in that application i have added two folder. one is admin folder and under admin i have added a upload folder. In upload folder i have three different audio's. And also i have imported DLL for Windows media player. Through this media player im able to play the audios in local host.
By giving Direct path like MediaPlayer1.Filename="C:\User\sam\waka.mp3"
But when i host the website im getting problem the page is getting refreshed but the audio is not getting played.
I have tried this path Server.Mappath(".\.\upload\waka.mp3")
and Server.Mappath("~\admin\upload\waka.mp3)
the above both paths are not working when i host the website please reply.
It's still a bit unclear, but it sounds like there's some kind of audio player in your website (an ActiveX control or something?) that's trying to reference a path on the server as though it were on the client that's loading the page. Naturally, this will work on your development machine because the client and the server are the same thing.
What's actually being rendered on the client side? What happens if you reference the audio file by its URL rather than its file system path?
Or are you trying to do something different than what I describe? Are you actually trying to play the audio on the server when the client accesses the site?