What does "Invalid protocol" mean"

375

Solution 1

Install the metapackage kde-baseapps.

Solution 2

Possibly you have uninstalled konqueror and its libraries, try installing kfind package from the terminal (Konsole):

sudo apt-get install kfind

Solution 3

In my case, I had to install the missing package 'baloo' which performs the search in Dolphin.

Do the following in a terminal:

sudo apt-get install baloo

That worked on KXStudio 14.04, and might help for other distros based on Ubuntu 14.04.

Share:
375

Related videos on Youtube

newbie_86
Author by

newbie_86

Updated on September 18, 2022

Comments

  • newbie_86
    newbie_86 almost 2 years

    Is it possible for an mvc razor partial view to take in one of 2 models....I have a create template and an edit template, they're similar but not the same. So i've created a common partial view, extracted the similar items into that, but it requires a model. I want this partial to be able to take in either a create model or edit model depending on where it's being called from.

    So in my create view i would say @{Html.Partial("EditorTemplates/CommonModel", Model);} where model is my create model

    and in the edit @{Html.Partial("EditorTemplates/CommonModel", Model);} where model is my edit model... how should i define the model on the partial to cater for this?