Forum Replies Created

Viewing 15 replies - 76 through 90 (of 105 total)
  • archesis

    (@anchises)

    You need a Webhoster, which meets these requirements:
    https://wordpress.org/about/requirements/

    Using the control-panel of the Webhoster you create a new MySQL-Database. Keep the information about it ready (database-host, database-name, database-password).

    Then you download wordpress from wordpress.org, unzip it and upload it via ftp to the webspace of your Webhoster. I would recommend changing the standard “wordpress” folder name to something more meaningful (just in case you want to create more wordpress-installations in the future).

    Then you enter the URL, where you uploaded the files to, in a browser.

    An automatic setup process appears, which will guide you through the installation.

    After that, you can log-in by adding “wp-login.php” to the WordPress-URL.

    Some tips:
    You should create two wordpress-installations. One is your actual website, the other one is for testing (disallow search-engines to index this one).

    Don’t forget to add some security (this is a different topic however).

    Create regular backups by downloading the whole folder from the ftp-server and the database from the control-panel of your Webhoster.

    Regarding suiteable themes you should have a general idea how and what you want to publish, how you interact with visitors etc. Don’t let yourself fool by the grandios presentations and promises of some themes and always ask yourself what you really need.

    With that in mind you can start browsing the wordpress theme stockpile and start testing. Please share your conclusions here.

    Other than themes, there are also plugins, which add a lot of functions.

    archesis

    (@anchises)

    You are probably aware of the following, but since this is an open support forum and I am using this plugin and would recommend it, I will post the following anyway:

    The thing to keep in mind is that security-plugins only protect the wordpress environment itself and they might lure you into a false sense of security (with flashy graphics and titles …)

    However: If an attacker gets hold of your administration login credentials (be it wordpress, ftp, webhosting-controlpanel), there is nothing these plugins can do about it.

    For example:
    • The login credentials are weak and easy to guess.
    • You are using the same login credentials for different sites.
    • You have written the login credentials on paper or in a file and someones obtains that.
    • Shoulder-surfing or cameras.
    • The device, which you use to log in, is unsafe or has malware, like a keylogger.
    • The browser has security holes, malicious add-ons or is manipulated to auto-save your login credentials without notifying you.
    • Most browsers save the username (“autofill” feature), which is half of your login credentials.
    • You saved the login credentials using the browser or the ftp-software and someone obtains the password-file.
    • You are using a cloud service to synchronize your browser settings including passwords, the service is hacked or the traffic sniffed.
    • The network you are connected to is unsafe.
    • You are not using https and ftps.
    • The network provider has malicious intent.
    • The network provider logs traffic with your login credentials and these logs are stolen.
    • Someone sets up a man-in-the-middle-attack or a honeypot.
    etc.

    archesis

    (@anchises)

    If you don’t need other users to login, you can lockdown the wp-admin folder.

    Create a .htpasswd:
    http://www.htaccesstools.com/htpasswd-generator/

    Create a .htacccess
    Put the following in that file, replace the stuff in the [] brackets with your own (delete the bracket).

    #Allow access to ajax
    <Files admin-ajax.php>
    Order allow,deny
    Allow from all
    Satisfy any
    </Files>
    
    #Password protect login
    AuthType Basic
    AuthName "Restricted area"
    AuthUserFile [full server-path to htpasswd in wp-admin]
    require user [username]
    
    #Allow access to ajax
    <Files admin-ajax.php>
    Order allow,deny
    Allow from all
    Satisfy any
    </Files>

    Put both files (.htpasswd and .htaccess) in your wp-admin directory.

    Change login-credentials to your webspace (ftp users and passwords).

    Change login-credentials to the admin-panel of your webhoster.

    Change wordpress passwords in the database:
    https://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdmin

    archesis

    (@anchises)

    Yes.

    Convert the PDF-file to image files (= one file per page). JPG will do. Try to use a reasonable file-size/quality ratio.

    Then upload the images to the wordpress media-library.

    Then add them to your booklet.

    Thread Starter archesis

    (@anchises)

    Thanks for the link.

    Well, this one is working. However the viewer displaying a link to the product page is not what I would call “perfect”.

    archesis

    (@anchises)

    If there is a “security patch” mentioned, then yes, you should update. If it’s just cosmetic stuff or features you don’t use anyway then you don’t have to update immediately (regarding theme-updates. Core- and plugin-updates are a different matter.)

    Also: An update should never break your site unless you have customized its core directly.

    How often updates are published is entirely up to the developers, there is just no general answer to that.

    Looking at the theme and its glorious presentation it seems to want to satisfy all needs (“multi-purpose”) and have a lot of features. Perhaps more features than the developers can handle.

    So the question you have to ask yourself is: Do I even need all these features or am I better off using a more simple theme?

    Forum: Fixing WordPress
    In reply to: Run site offline?
    archesis

    (@anchises)

    Yes, Xampp will set up a local server on your PC.

    You CAN build your website offline, then upload it as a whole. However, you do NOT need to build your website offline! Xampp is NOT required to build a WordPress-site, you can edit the whole thing directly online.

    I guess you are used to editing individual html-files (which contain the content, i. e. text and links) on your pc, then upload it via ftp. Forget that, that’s not how WordPress works.

    The content is not stored in files but in the database and organized and edited using the Dashboard (= Administration-Area). Of course you could edit the database directly to change the content, but that would be pretty stupid and defeat the purpose.
    How the content is displayed on your website is determined via css and php files.

    archesis

    (@anchises)

    Well you don’t HAVE to update, just don’t click the button. 😉

    If the update notification annoys you, just feed your favorite search engine with “wordpress disable theme update”

    If you use a lot of custom css, creating a child theme is adviseable.

    archesis

    (@anchises)

    Which Theme are you using?

    Forum: Fixing WordPress
    In reply to: Run site offline?
    archesis

    (@anchises)

    Well, for WordPress you need a PHP-Server and a MySQL-Database.

    Xampp provides an easy solution for that, if you want to use WordPress on your PC.

    archesis

    (@anchises)

    You can use negative values:

    @media screen and (min-width: 1008px) {
    #page {
    margin-left: auto;
    margin-right: auto;
    margin-top: -37px !important;
    }
    }
    archesis

    (@anchises)

    Yes, thats the downside – the whole table has to be loaded.

    Perhaps you can ask the plugin-author of “TablePress” if there is a way to achieve this.

    Of course your method is a more professional approach, but for a “quick and dirty” solution, the TablePress plugin is good enough.

    Forum: Fixing WordPress
    In reply to: Run site offline?
    archesis

    (@anchises)

    You can still do that if you like. 😉

    Not with WordPress or most Content Management Systems though.

    What was your question again?

    archesis

    (@anchises)

    @the-rock

    You can do this (hide the table and show ONLY the search field) with TablePress too.

    See following threads:

    “How to hide the whole table only display after searching”
    https://wordpress.org/support/topic/how-to-hide-the-whole-table-only-display-after-searching

    “How to not show the result of the search query until enter key is pressed”
    https://wordpress.org/support/topic/how-to-not-show-the-result-of-the-search-query-until-enter-key-is-pressed

    I used this to create a site where you enter a code and the result is displayed after pressing “enter”.

    See: http://strawberrytour.com/coupon/
    (enter 15001 in the field to get an example)

    archesis

    (@anchises)

    As “catacaustic” already pointed out: unless you are using text only, the content on a website is not optimized for printing.

    Of course you can create a catalogue using a software and then display that on a webpage:

    – Use an external service like “calameo”, “yumpuu” or “issuu”
    – Or use a plugin, search for flipping book, flipbook, photo book

    Downside: it is not search-engine friendly.

Viewing 15 replies - 76 through 90 (of 105 total)