Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 10-06-2022, 06:27 PM   #1396
JFeole
Connoisseur
JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.JFeole solves Fermat’s last theorem while doing the crossword.
 
Posts: 93
Karma: 28862
Join Date: Jul 2010
Device: Kobo_Aura_H2O, Kobo_Aura_One, Kobo Sage
If you use Calibre, you may want to look athe the: Calibre Content Server, which allows you to download your ebooks wirelessly to the KA1. See: https://manual.calibre-ebook.com/server.html
JFeole is offline   Reply With Quote
Old 10-07-2022, 02:22 AM   #1397
fafaforza
Zealot
fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.
 
Posts: 140
Karma: 26780
Join Date: Sep 2009
Location: Brooklyn, NY
Device: Aura ONE
My Aura One can be a bit finnicky with sync, a little more reliable with charging but I still wiggle the cable. And it's happening with cables I have labeled specifically as ones for the reader (some micro USB cables are charge only, so I label data ones that worked in the past).

I would imagine any shop that repairs smartphones and tablets could solder a new port. You might lose the water seal, but that's a small price to pay.

For syncing, I just run the Apache web server on my laptop, then just use the web browser under the Beta features. I set http://192.168.1.3 as the homepage, my laptop's assigned WiFi IP, so it comes up automatically without having to type an address. It works for PDFs, ePubs, whatever. I haven't synced via USB in ages. I don't want to overuse the port.

Last edited by fafaforza; 10-07-2022 at 02:32 AM.
fafaforza is offline   Reply With Quote
Old 10-07-2022, 02:29 AM   #1398
fafaforza
Zealot
fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.fafaforza is not intimidated by interfenestral monkeys.
 
Posts: 140
Karma: 26780
Join Date: Sep 2009
Location: Brooklyn, NY
Device: Aura ONE
Here's my simple Apache httpd.conf file if anyone goes this route. It can likely be stripped down a lot.

DocumentRoot is where you specify where the books are, SRVROOT is where the Apache bundle is. I think I have the apachehaus.com bundle.

I then just execute bin/httpd.exe whenever I need it. You can also run it all the time as a Windows service.

Code:
Define SRVROOT "C:\Users\user\Downloads\Apps\Apache"
ServerRoot "${SRVROOT}"
Listen 80
ErrorLog "logs/error.log"
LogLevel warn

LoadModule alias_module modules/mod_alias.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so

<IfModule unixd_module>
User daemon
Group daemon
</IfModule>

ServerAdmin admin@example.com
ServerName localhost:80
<Directory />
    AllowOverride none
    Require all denied
</Directory>

DocumentRoot "C:\Users\user\Downloads\books"
<Directory "C:\Users\user\Downloads\books">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
	IndexOptions NameWidth=*
	IndexOptions HTMLTable
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<Files ".ht*">
    Require all denied
</Files>


<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    CustomLog "logs/access.log" common
</IfModule>

<IfModule mime_module>
    TypesConfig conf/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
</IfModule>

# Fancy directory listings
Include conf/extra/httpd-autoindex.conf

# Real-time info on requests and configuration
Include conf/extra/httpd-info.conf

# Configure mod_proxy_html to understand HTML4/XHTML1
<IfModule proxy_html_module>
Include conf/extra/httpd-proxy-html.conf
</IfModule>

Last edited by fafaforza; 10-07-2022 at 02:33 AM.
fafaforza is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Kobo Aura ONE Third Party Cover Thread Katsunami Kobo Reader 560 09-25-2019 03:01 AM
Happy Kobo Aura One owners deleted2 Kobo Reader 47 04-26-2017 10:11 PM
Aura NEW Kobo Aura Impressions Thread! Canuck_in_Japan Kobo Reader 745 02-10-2017 04:54 AM
Aura HD Kobo Glo/Aura/Aura HD future firmware feature request thread arspr Kobo Reader 25 03-26-2015 05:19 AM
Aura HD Kobo Aura HD Impressions Thread Canuck_in_Japan Kobo Reader 731 04-03-2014 05:46 AM


All times are GMT -4. The time now is 09:43 AM.


MobileRead.com is a privately owned, operated and funded community.