SyntaxJO
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Dreamweaver Wont Resolve DynamicsThis 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.htmlPZ
Forum: Fixing WordPress
In reply to: Main Page not IndexingI’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.
Forum: Fixing WordPress
In reply to: How to get to General Blog Page?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.
Forum: Fixing WordPress
In reply to: Preview Button uses wrong Permalink – 2Ok… 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 .phpSo 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 WordPressAnd 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 80Sorry to waste your time.
Forum: Fixing WordPress
In reply to: Preview Button uses wrong Permalink – 2Sorry 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=truehtaccess 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.