Posts

apache - Nutch 2.3 - javax.net.ssl.SSLException -

i using apache nutch 2.3 cannot crawl ssl domains. i'm getting following error: fetch of https://example.com/ failed with: javax.net.ssl.sslexception: received fatal alert: internal_error i'm getting same error oracle corporation java hotspot(tm) 64-bit server vm (1.8.0_66 25.66-b17) and openjdk runtime environment (icedtea 2.6.8) (7u121-2.6.8-1ubuntu0.14.04.1)

Laravel - Getting NotFoundHttpException in RouteCollection.php line 161 for each controller -

i moved project new server. i did following: composer update php artisan migrate php artisan cache:clear but im getting error message: notfoundhttpexception in routecollection.php line 161: for each controller. idea why ? [update] this content of routes/web.php file: route::get('/', function () { return view('welcome'); }); route::group(['middleware' => 'web'], function () { route::auth(); route::get('/orders', 'orderscontroller@index'); }); route::group(['middleware' => 'web'], function () { route::auth(); route::get('/shipments', 'shipmentscontroller@index'); }); this works fine on localhost, not on new server reason. [update] - .htaccess public folder <ifmodule mod_rewrite.c> <ifmodule mod_negotiation.c> options -multiviews </ifmodule> rewriteengine on # redirect trailing slashes if not folder... rewrite...

c# - [dotnet core MVC], I can't get file from byte array (field stored into database). -

i'm becoming crazy physical file database field. use asp.net mvc project (dotnet core 1.1). in avance , happy christams! in part of controller : public void download(int id) { downloadmyfile(_context.mytable.find(id).myblobfield, _context.mytable.find(id).myfieldcontenttype, _context.richieste.find(id).myfieldoriginalfilename ); } public filecontentresult downloadmyfile(byte[] filebytes, string filecontent, string filename) { return file(filebytes, filecontent, filename); } my view : <a asp-action="download" asp-route-id="@model.id"> download file</a> ** my notes: if use this, works: public fileresult download() { var filename = @"myrealfilenamestoredintheserver.ext"; var filepath = $"downloads/{filename}"; byte[] filebytes = system.io.file.readallbytes(filepath); ...

seo - Google doesn't crawl or index all my pages -

i have submit many times index pages google index 1000 pages out of 13000 pages. can please explain issue behind this. website link here google isn't guaranteed index of pages. but can encourage index more couple of steps. have tried submitting sitemap?

asp.net mvc - jquery datatable with custom object parameter -

i working mvc , jquery data table. want pass own parameter class along jquery datatable param. here code have used, not working, index.js var options = {}; options.bprocessing = true; options.bserverside = true; options.sajaxsource = urlcontent + 'employee/getall'; options.bpaginate = true; options.spaginationtype = "full_numbers"; options.idisplaylength = 10; options.bautowidth = true; options.aocolumns = cols; options.fnserverdata = function (ssource, aodata, fncallback) { $.ajax( { "datatype": 'json', "type": "get", "url": ssource, "data": aodata, "success": function (data) { }, "failure": function (data) { } } ); }; options.fnserverparams = function (aodata) { aodata.push({ "name": "employeemodel", "value": { name : "testing", age:25} }); }; var table = $('#' + ...

nlp - Any (rough) equivalent to iOS NSLinguisticTagger for android? -

in ios, can use nslinguistictagger things part-of-speech tagging, , lemmatizing word (like recognizing "went" form of verb "to go") several different languages. is there use android development, that's available several different languages, case ios? i'm aware of stuff stanford nlp, seems work limited number of languages (english + 5 others), not sufficient purposes. plus, i'm not sure if work on android. (but correct me if i'm wrong) it need work without accessing network, must on device without connecting service. i'm afraid answer "no"...but asking anyway in case, before spend huge amount of time trying develop own workaround. you can use java-based nlp toolkits in android applications. here list of popular ones simple description : stanford corenlp i don't know how many mean several if ever want make toolkit can train corenlp corpus. apache opennlp apache lucene , solr apache's toolkits , analyze...

css - Cyrillic font-face usage with custom wordpress style -

i using custom wordpress theme , wanted change font. found style.css file, , replaced current @font-face code mine, can use "stylo" font. code using: @font-face { font-family: 'stylo_bold'; src:url("stylo_.eot?") format("eot"),url("stylo_.woff") format("woff"),url("stylo_.ttf") format("truetype"),url("stylo_.svg#stylo-bold") format("svg"); font-weight:normal; font-style:normal; it works fine, except when type on cyrillic font doesn't work , instead cyrillic text showed in default font (myrad pro or something). font has support cyrillic letters, can point me in right direction here? don't understand why doesn't work? thank you. you answered own question. this font has support cyrillic letters... many fonts support english language. lot of websites show character breakdown or list support cyrillic alphabet. must mistaken or misinformed in regard font in q...