Tag Info

New answers tagged

0

Found my answer. Turns out it was being blocked by request filtering. Add the below to web.config to resolve issue. <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="4294967295"></requestLimits> </requestFiltering> </security> ...


2

You could create a HTML document which will later work as your masterpage on SharePoint. Follow this guide and it should help you achieve your goal: How to: Convert an HTML file into a master page in SharePoint 2013


2

Not in a sandbox solution no. You could however create the app running on a separate web server / app and call it in a iframe since it's client object model. The reason it won't work is because the namespaces you require are blocked in sandbox.


1

This works, but I need to be able to construct the user object from the currently logged on user. Shouldn't be too difficult I hope ! var users = new Array(1); var user = new Object(); user.AutoFillDisplayText = "Ian Chivers"; user.AutoFillKey = "i:0#.f|membership|ian@kwsservices.onmicrosoft.com"; user.AutoFillSubDisplayText = ""; user.AutoFillTitleText = ...


0

It was determined by Microsoft Online Support that this was a Office 365 wide issue. As of today 5.6.2013 a hotfix was applied to the farm that I was working in when I experienced this error. Everything is working as it should. If you experience an InfoPath code error ... spin up a support case and see if your farm has had this hotfix applied.


0

SharePoint Online (Office 365) You can "Sign up for an Office 365 Developer Site" which will cost you $99.00 per year for an Office 365 developer subscription. You might get one for free if you are a MSDN subscriber or a (Plan E1 or E3) Office 365 subscriber You could also become a Microsoft Cloud Essentials Partner which will get you 25 seats of ...


3

The best way to get Aaaaahs and Oooooohs from your management is the SharePoint 2013 Contoso Image. It's just an image that you can run with Hyper-V. Put in on a nice big machine and you will have all showcases.


1

Use Office 365 Enterprise E3 but limited to 30 days trial Sign up here


0

You can have a 14 day trial at www.cloudshare.com, its sharepoint 2013 RTM on premises but hosted on the cloud, its not sharepoint line. The one you are trying to subscribe its sharepoint online and has many different(less) features than on premises. Also SharePoint Online 2013 Preview would expire this week and all accounts were going to be deleted. The ...


0

Why don't you use the sharepoint 2013 foundation?


1

use sharepoint foundation to do this?


2

Most Likely you are using wrong credentials to login and best way to get it resolved is to contact Microsoft. However the link you provided is saying that the demo offer by Microsoft is no longer available.


3

Depending on where you store the files, you may not have access to them. Sandbox solutions do not have access to the local file system (see more restrictions here: http://msdn.microsoft.com/en-us/library/gg615454.aspx#BKMK_LowPrivilegeToken). You would have to store the files in a library to gain access to them.


1

I'm not sure about the SharePoint side, but in terms of communicating with CRM there are REST and SOAP web services you can use. I suggest starting on the MSDN, it contains examples and explanations of how to perform CRUD operations. Write Applications and Server Extensions


1

There is no way to increase the limits. Because there is not server on which you can modify the configs. The smartest way is to break it into small packets. Or you can use a Visual web part, that call itself after creating each Document Library. So there must be opened a browser for that, but it didn't get any timeout. It's like pain but it works.


1

Make sure that in Visual Studio under "Project->xy Properties" under the "SharePoint" section the option "retract after debugging" is checked.


1

You need to retract or uninstall app, Simply stopping debugging won't going to retract or uninstall the app automatically. If you tried to retract and uninstall app and got error then, You need to change the ProductID in the appmanifest.xml file to something else. This will deploy another app with the same name. I guess this is a known issue and ...


0

Used the following JS _spBodyOnLoadFunctionNames.push("ConfigureBrandingsuite"); function ConfigureBrandingsuite() { // Replace the default logo with my Logo with transparant background document.getElementById('suiteBrandingIcon').src = "/_catalogs/masterpage/xxxxxxxx/css/logoSml.png"; document.getElementById('suiteBrandingIcon').alt = "My ...


2

You could use some lines of CSS to do that: Remove the default span .SHSpanLogo img{display:none;} Add your logo: .SHSpanLogo {background-mage:url(http://domain/SiteImages/logo.png)!important; background-color:transparent;background-position:top left;background-repeat:no-repeat;height:120px;}



Top 50 recent answers are included