Menu
  • HOME
  • TAGS

Sitecore installation wizard freeze

Tag: installation,sitecore,wizard

I need to install a package on my sitecore instance but for some reason when I click on upload button in the Intallation wizard the whole UI greys out and I can't even upload my package.

Its blocking me from moving forward

Best How To :

Your problem is this: http://getfishtank.ca/blog/fixing-showmodaldialog-javascript-error-in-chrome-for-sitecore

Sorry for the link-only answer, but this is a known issue with a known resolution path - and it's all summed up there.

Produce both versions x32 and x64 under PyInstaller

python,python-2.7,installation,pyside,pyinstaller

No, that won't work. What you should do is install the 32 bit python as well and create the "other" installer starting the creation process with that. It is possible to have both the 32 and the 64 bit version of the same Python major.minor version on the same machine....

Sitecore ECM: User unsubscribing newsletter receives no confirmation email

email,sitecore,unsubscribe,confirmation-email,sitecore-ecm

If you've setup ECM with default settings it should just send automatically. If you have ECM sending emails then this should also be working. Check your spam filter or your junk. This kind of notification get's junked all the time due to the format of the email....

Sitecore 6.6 Item Buckets Module: Inactive Bucket Button

sitecore,sitecore6,bucket

There are 3 scenarios when this button will be disabled: This item already is a bucket Item is NOT locked User doesn't have access rights to bucket:makebucket on the chosen item. From what you wrote and from your screenshot I think it's the 2nd or 3rd scenario in your case....

Get Offline Installation ID (Windows 8 or similar)

c#,windows,installation

This is possible by querying the WMI (Windows Management Instrumentation)'s Win32_WindowsProductActivation (XP and below) or SoftwareLicensingProduct (Vista or higher) class: Requires these namespaces to be declared: System System.Collections.Generic System.Management System.Text Declare those namespaces at the top of your codefile with using, as per se: using System; using System.Collections.Generic; using System.Management;...

how to install packages from pypi to anaconda?

python,installation,packages,anaconda,pypi

1) Find the installation directory and look in the packages directory 2) From the Anaconda command line, conda install <pkg name> or if its in a tarball conda install <tar-file-name>.tar Anaconda FAQ...

Sitecore WFFM error Unknown connection string. Name: 'wfm'

sitecore

You need to add a connection string to your connectionstrings.config with the name wfm. This will point to your web forms database and allow you to use SQL server. <add name="WFM" providerName="System.Data.SqlClient" connectionString="user id=xx;password=xx;Data Source=xx;Database=WebFormsdb" /> The module you mentioned relies on you setting up the database as you would...

uCommerce Product Appears on Sitecore site without publishing

sitecore,sitecore8

The most recent version of the uCommerce to Sitecore connector runs in live mode, so your experience is currently by design as far as I know. It is due to some performance issues on publishing. I would expect a fix to it but dont know of a timeline for it....

Update the standard font style for the /ja-jp/ website to Microsoft's Meiryo font

javascript,html,css,fonts,sitecore

Well, again I have to answer my own question :) So, solution this time I got for this is : I done following changes : In my aspx file : <html id="SomeID" runat="server" xmlns="http://www.w3.org/1999/xhtml"> In my style.css: :lang(ja) { font-family: Meiryo; } And, in my aspx.cs file I have put...

install msi with a product code through msiexec

installation,windows-installer,installer,msiexec

ProductCode is a private property and isn't being passed to the installer session. I don't see why you'd need it anyways as it's in the MSI that you are installing. You can uninstall using a ProductCode (by substituting it for the path to the MSI not by passing it as...

Sitecore logs full with WARN Datakey length bigger then 100 chars, and was trimmed

sitecore,sitecore-dms

If you look in your Analytics database and then look at the PageEvents table you'll see the DataKey in this table. Take a look at the values in this field - it will more than likely be an exception occurring. The data key will have the details of the exception....

Sitecore: The layout for the requested document was not found

sitecore,sitecore7

Thank you all for your help, but for this particular issue this was the fix Annoying Misconfiguration Excerpt The config entry for the url being browsed had the attribute domain="extranet" in it. Reading around on the internet, when you click the Preview button, Sitecore tries to load the item you...

Update Sitecore and SIP together?

sitecore,sip

I would recommend uninstalling SIP first. You can achieve this is via removing the code files and configs from the solution manually - you can try leaving the Sitecore Items there as they shouldn't cause issues. It will be helpful to redownloading the SIP package, unzip to see the files...

SOLVED: Installing lxml, libxml2, libxslt on Windows 8.1

python,windows,module,installation,lxml

I was able to fix the installation with the following steps. I hope others find this helpful. My installation of "pip" was working fine before the problem. I went to the Windows command line and made sure that "wheel" was installed. C:\Python34>python -m pip install wheel Requirement already satisfied (use...

Sitecore: reference item in other database ( source field )

c#,sitecore

You can define "database" in your field. Like so: databasename=web&datasource=/sitecore/content/Meta Content/Lookup Lists/Countries See also: https://sitecorecontextitem.wordpress.com/2014/02/10/working-with-custom-user-profile-fields-in-sitecore/...

Using python with a specific version of OpenCV

python,opencv,installation,virtualenv,opencv3.0

Compiling OpenCV 3.0 will create its own cv2.so file containing your new module, typically in your opencv3-0-0-beta/build directory. You need to add the OpenCV 3.0 build directory to PYTHONPATH instead of the one created by apt-get.

Is there an easy way to fake a Sitecore Device for testing?

sitecore

Using sc_device is exactly what you need. Just make sure that you use device item id, not name, e.g.: http://localhost?sc_device={46D2F427-4CE5-4E1F-BA10-EF3636F43534} ...

Error creating an eclipse library project for v7 appcompat

android,installation,appcompat

I think the problem is that in your Android SDK, you haven't downloaded the API Level 19. Two solutions as follows: Open your sdk manager, install API Level 19 version platform. Open your sdk and take a look what you have installed (ex. you have 22) in your SDK, and...

Not able to format namenode in hadoop-2.6.0 multi node installation

ubuntu,hadoop,installation,yarn

Add these lines in .bashrc: export HADOOP_HOME=/path/to/your/hadoop/installation export PATH=$PATH:$HADOOP_HOME/bin As for, I don't see any folder "bin" inside Hadoop installation Check whether you have binary distribution or source. Download hadoop-2.6.0.tar.gz from Hadoop Distributions, in case you have source distribution....

How do I install homebrew on mac?

ruby,osx,installation,homebrew,command-prompt

Do you have XCode and Command Line Tools installed? If so, the above script should have done it. Go to the terminal and type brew doctor This will tell you the status of your install....

Updating Ubuntu 11.04 to 12.04 preferrably through command line

linux,command-line,installation,command-line-arguments,updates

You can download the hardware specific package of ubuntu 12.04 directly http://releases.ubuntu.com/12.04/ or http://howtoubuntu.org/how-to-install-ubuntu-12-04-precise-pangolin There is no such option in the standard installation medium....

Install windows 7 software on windows 8

windows-8,installation,inno-setup

Try using the Windows 7 compatibility mode. Right click on the executable. Select properties. Switch to the compatibility tab. Enable the compatibility mode. Set the compatibility mode to Windows 7. And apply settings. Sorry if this is an insult to your intelligence. I wanted to practice the Windows Steps recorder....

spark-1.4 with zeppelin installation

installation,apache-spark,apache-zeppelin

It looks like it cannot connect to Connect to raw.github.com:443 I can think of two options: you have a local maven repo that you can use as an artifact proxy (e.g. Nexus) and you will have to setup a mirror in ~/.m2/settings.xml You might beed to configure access through proxy...

WFFM Overriding the FormID chosen in the Presentation Details

sitecore,web-forms-for-marketers

I found a resolution based on Mike Reynolds blog as Ahmed Okour suggested got me 50% of the way there but required additional work. I created a new FormRender that exposed a public property for the overriding Form Id to be passed. This new FormRender implements the existing one however...

Oracle cilent and Perl installation on Centos

oracle,perl,oracle11g,installation

I compile DBD::Oracle on AIX, CentOS, RedHat and Solaris all the time. I recommend that you make a script (especially if you are using sudo to compile these things). Here's the script I use to set environment variables (some are extra and some are including for testing) and make the...

Installing pylab on Mac OSX

python,osx,matplotlib,installation,install

It looks like you ran the instructions to (re)install pip, but you did not yet run the instruction that uses pip to install matplotlib, i.e.: pip install matplotlib ...

How can access sublayout control from another sublayout in Sitecore?

asp.net,sitecore

I've dealt with similar problems in Sitecore sites before. There are two ways of doing this that I'd suggest you consider: 1) With some custom code, your Layout can act as an intermediary for the SubLayouts Define some sort of "receive results" interface that can be implemented by any sublayout...

Correct Place To Specify A Site's Caching Parameters In Sitecore?

sitecore,sitecore8

From Sitecore documentation: If a managed Web site definition does not specify cache size attributes, the values within the /configuration/sitecore/cacheSizes/sites/* element named after the managed Web site in the web.config file apply. ...

Sitecore - Require login

asp.net,sitecore

The solution was to add requireLogin="true" to the site "website" tag <site name="website" virtualFolder="/" physicalFolder="/" rootPath="/sitecore/content" startItem="/Base" database="web" domain="extranet" allowDebug="true" cacheHtml="true" htmlCacheSize="10MB" registryCacheSize="0" viewStateCacheSize="0" xslCacheSize="5MB" filteredItemsCacheSize="2MB" enablePreview="true" enableWebEdit="true" enableDebugger="true" disableClientData="false" requireLogin="true" loginPage="/sitecore/login/Default.aspx" /> ...

Use Heroku binary instead of gem

ruby-on-rails,ruby,linux,heroku,installation

You can create a alias for heroku command put below code in .bash_profile file alias heroku="/usr/bin/heroku" .bash_profile so that it's loaded each time you open a terminal. note:- You will have to reload your current terminal to have it working simply use $. .bash_profile ...

How should I start a Sitecore campaign when the entrance page is an alias?

sitecore,sitecore7.2,sitecore-dms

You could do something custom with the AliasResolver pipeline processor. In this processor you could trigger certain campaigns if a certain alias was accessed. Here's how to set up an alias resolver: http://sitecoreblog.patelyogesh.in/2013/08/sitecore-item-alias-alternate-url.html Also code to trigger campaign is here: http://www.alen.me.uk/2014/05/trigger-sitecore-dms-campaign-via-ajax.html A more elegant solution would be to incorporate the...

PyInstaller output artifacts in different folders

python,python-2.7,installation,pyinstaller

Very simple solution :) echo ******************** Starting buiding x32... ****************** c:\Anaconda32\Scripts\pyinstaller.exe --distpath=./dist/win32 --workpath=./build/win32 src/app.spec echo ******************** Application was built ****************** echo ******************** Starting buiding x64... ****************** pyinstaller --distpath=./dist/win64 --workpath=./build/win64 src/app.spec echo ******************** Application was built ****************** ...

Error while running a basic wordcount program on Eclipse

java,eclipse,hadoop,installation

That error doesn't seem to be related to hadoop. I couldn't find any reference to a SWT Table or column in that page also. You could start a normal java application to see if everything it's working ok, and after that run wordcount ($HADOOP_HOME/share/hadoop/mapreduce/hadoop-mapreduce-examples) from a terminal, to test your...

Glass.Mapper.Sc set inferType to true by default globally

c#,sitecore,glass-mapper

There isn't an automatic override to do this but it might be simpler to create your own task in the configuration resolver pipeline. If you look at the following line of code: https://github.com/mikeedwards83/Glass.Mapper/blob/master/Source/Glass.Mapper.Sc/Pipelines/ConfigurationResolver/TemplateInferredTypeTask.cs#L48 You can see that it just checks for the InferType flag, you could create another pipeline at...

Is NSIS 3.0b1 stable for production usage?

installation,installer,nsis

NSIS 3 is basically NSIS 2.46 merged with the Unicode fork + additional bugfixes. Most of the changes are in the compiler and not in the generated installers. Development is still active but don't expect a new release until after Win10 RTM......

Sitecore Multiple nodes for rendering datasource

c#,xpath,sitecore,rendering,sitecore7.2

There is a bug in early verions of Sitecore 7.x - mutliple roots are not supported for datasource selection. The issue was fixed in Sitecore 7.2 rev 140526. Check reference number 389483 in Sitecore 7.2 rev 140526 release notes. If you cannot upgrade to the next version, you may want...

Different ways of hadoop installation

hadoop,installation

Hadoop runs on Unix and on Windows. Linux is the only supported production platform, but other flavors of Unix (including Mac OS X) can be used to run Hadoop for development. Windows is only supported as a development platform, and additionally requires Cygwin to run. If you have Linux OS,...

Phantom Mercurial, How to remove?

ubuntu,installation,mercurial,tortoisehg

You can find out where in your path an application exists using the type command like this (when using bash): [email protected]:~$ type -a hg hg is /usr/local/bin/hg It's possible it was installed as a python package in which case the command would be: pip uninstall mercurial but it might just...

301 Redirect Regex Pattern - Sitecore Redirect module

regex,redirect,sitecore,url-redirection

This will fit your "less global" requirement. var pattern = @"^(https?://[^/]*/some-path/videos/)\d{4}/\d{2}/\d{2}/\d{2}/\d{2}/(.*)$"; var match = Regex.Match(myurl, pattern, RegexOptions.IgnoreCase); var rewrittenUrl = string.Empty; if (match.Success) { rewrittenUrl = match.Groups[1].Value + match.Groups[2].Value; } Note that I chose to ignore case. This is probably correct behavior given that you are dealing with URLs. I...

How can I cancel a running Sitecore Job?

sitecore

As far as I'm aware you can't stop running jobs, except for resetting IIS or changing your web.config I'm afraid.

Not able to update ADT

android,eclipse,installation,adt

None of the answers provided related to this issue solved my problem. Eventually, I downloaded latest Android Studio and installed it. So far, extremely happy with its performance and features. I would recommend to install Android Studio.

Running code on Page Editor load in Sitecore

sitecore

Would getPageEditorValidators or getPageEditorNotifications suffice? The GetPageEditorValidatorArgs from the Process method contains an Item property....

Where to create the Articles in Sitecore?

sitecore,bucket

I'm going to disagree with Marek and recommend you opt for option 2. Storing your articles in folder under a Data node allows those items to be datasourced. This is the principle Sitecore was built on. You can then surface those articles in a number of interesting ways via Widgets...

Trouble With Sitecore Web.config Patch File

sitecore

Sitecore config file patching only works for configuration settings within the sitecore section. To modify system.webserver/httpErrors you would need to modify web.config directly, or use an additional config patching system such as web.config transformations....

visual studio 2013 update 2 taking to long to configur

visual-studio-2013,installation

If installation process is stuck then wait for long time. Some times it happens that it takes too long. Or just cancel the installation process and re-start. There are exactly no solution to this. There is no such problem that we can solve while this installation is going on. Advice...

Python: Trouble with dill installation

python,python-3.x,build,installation,dill

I'm the dill author. Are you running in a directory that you have the dill source unzipped to? If so, you'll get this error. If you change to another directory, it should work if you've installed dill correctly (with pip or otherwise). It should work with pip, see this closed...

Theano installation, nvcc not in the path

python,installation,theano,nvcc

Theano is designed to work (almost) identically on both CPU and GPU. You don't need a GPU to use Theano and if you don't have a Nvidia GPU then you shouldn't try installing any GPU-specific stuff at all.

InstallShield exclude files based on language selection

localization,installation,installshield,installshield-2012

I use the following approach for our multilanguage setups: Switch to the "Organization \ Setup Design" panel. You should see that each of your components has the property "Condition". If you want to include a file / component only for a specific language you should create a a component for...

Bundling with sitecore MVC

sitecore,sitecore-mvc,sitecore8

InitializeGlobalFilters processor is a part of sitecore initialize pipeline. It is registered in /App_Config/Include/Sitecore.Mvc.config file. It means that it is called only once when the applications starts....

Sitecore WFFM checkbox values on Create Item

sitecore

I haven't had a chance to test this, but theoretically, you could create a new field type that inherits from CheckboxList, and let's say we call it CheckboxListPipedValues. The code would look something like this: using System.ComponentModel; using System.Linq; using System.Text; using Sitecore.Form.Core.Controls.Data; using Sitecore.Form.Web.UI.Controls; public class CheckboxListPipedValues : Sitecore.Form.Web.UI.Controls.CheckboxList...

How to run a website that uses npm to start the server

node.js,installation,website,server,setup-deployment

Signup for the free Heroku account and upgrade if needed. https://www.heroku.com/beta-pricing Here is their deploy instructions for node.js. https://devcenter.heroku.com/articles/getting-started-with-nodejs#introduction Another host with a free option is OpenShift....