Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter SyntaxJO

    (@syntaxjo)

    This was answered and solved by my same post on the adobe forum: http://forums.adobe.com/message/5947056#5947056

    Hi

    I can only see it live-no design mode is possible.

    That is correct, there is nothing to see in design view.

    WordPress is made up of a number of different php files, and if you examine the index.php page you will see that it is just a collection of include files.

    To give you a run-down of working with wordpress in Dw see –
    http://www.adobe.com/inspire/2013/10/wordpress-sites-dreamweaver.html
    http://www.adobe.com/devnet/dreamweaver/articles/dw_wordpress_pt1.html

    PZ

    Thread Starter SyntaxJO

    (@syntaxjo)

    I’m sorry, I just got started with SEO etc after making my product for 3 months.

    As it turns out, it’s indexing RIGHT as we speak, I coudln’t find it yesterday. THe other pages were indexing yesterday. SOrry for wasting your time, and thanks for replying so quickly. I had turned it back on about a week and a half ago FYI.

    Thanks Pyogi.

    Thread Starter SyntaxJO

    (@syntaxjo)

    Thanks T-3 – bonus for quick response. TUrns out I have the Genesis framework, and the blog page is set by using the “blog” template. The option to choose a post page in Settings > Reading isn’t even there, but your response helped me to figure it out! Thanks again.

    Thread Starter SyntaxJO

    (@syntaxjo)

    Ok… Yea… I effed up. I was mistaken about what was in the public_html .htacces. THIS was what was in the public_html:

    # Use PHP5CGI as default
    AddHandler fcgid-script .php

    So I erased and added what you said to it:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /ryokan/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    And it didn’t work. Then I added the original to the top of it:

    # Use PHP5CGI as default
    AddHandler fcgid-script .php
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /ryokan/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    …and it STILL didn’t work:

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    Please contact the server administrator, webmaster@thethinkswitch.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

    More information about this error may be available in the server error log.

    Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
    Apache Server at http://www.thethinkswitch.com Port 80

    Sorry to waste your time.

    Thread Starter SyntaxJO

    (@syntaxjo)

    Sorry bout the bump – got scurred.

    Trying adding ‘ryokan’:
    http://ryokanshut.com/ryokan/?p=459&preview=true
    and it takes it away and brings me here with the same error:
    http://ryokanshut.com/?p=459&preview=true

    htaccess in public_html/ looks like the same:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Very interesting but don’t know where to go from here.

Viewing 5 replies - 1 through 5 (of 5 total)