jspringr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2nd try with no answer! Comments don’t appearHere is one of the links as it appears in my Dashboard:
From HumEnsums on Bernanke’s finally worried about inflation! # http://www.stock-compass.com – cool sitename man))) ———————— ad: http://elizaq1d5.lised.ru/
Unapprove | Edit | Reply | Spam | DeleteHere is another:
From Avesquehisebdwv on Bernanke’s finally worried about inflation! # http://www.stock-compass.com – now in my rss reader))) ———————— sponsored link: http://dewat.ru/
Unapprove | Edit | Reply | Spam | DeleteI hope these examples are what you had in mind. Thanks!
Forum: Fixing WordPress
In reply to: WordPress blog Integration with XHTML main pageThanks!
Do you know how I can modify my http.conf file so I can call php code from inside my xhtml pages?
Forum: Installing WordPress
In reply to: All index.php files don’t work – other .php files workI fixed the problem by adding “index.php” to my DirectoryIndex line in my http.conf file. That previous setting (i.e., without the “index.php”) was overriding the .htaccess entries.
Forum: Installing WordPress
In reply to: All index.php files don’t work – other .php files workThanks for getting back to me!
I created .htaccess in the “blog” directory along with its subdirectories, but nothing changed. It still works as before. Is there anything else I need in those .htaccess files, or in the http.conf file? Keep in mind that the php files work. For example, I can log in and then click on edit.php to get to the administration and post pages.
Forum: Fixing WordPress
In reply to: “Visit Site” produces a blank screen – AGAIN and STILLphp-5.2.8 – I downloaded it and installed it as part of the WordPress install. I think I will try re-installing everything (i.e., WordPress) again.
Do you think this is related to the blank screen problem?
Thanks again,
– JeffForum: Fixing WordPress
In reply to: “Visit Site” produces a blank screen – AGAIN and STILLThanks for getting back to me! Here’s the wp-config file (without some of the comments).
<?php
/**The name of the database for WordPress */
define(‘DB_NAME’, ‘main’);/** MySQL database username */
define(‘DB_USER’, ‘jeff’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘????????’);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);/** Database Charset to use in creating database tables. */
define(‘DB_CHARSET’, ‘utf8’);/** The Database Collate type. Don’t change this if in doubt. */
define(‘DB_COLLATE’, ”);define(‘AUTH_KEY’, ‘oI,=`8H^>j0*]Ux+~g&e?rD>//=))4]FM^Mc C[m66/aFNOln+Yx*>)=i9d;#OD;’);
define(‘SECURE_AUTH_KEY’, ‘6q|U{[`qsKCFb|#-g2d7aZ9NQ|J{4AQe>/h[Sv0+D?nWcw@iUFkCbU9XqKG)^4XN’);
define(‘LOGGED_IN_KEY’, ‘a //hQR,N8u+;mU~*ovr,[T&D|`[RP=/Y*Lq_0B31t6mV=7k-Yqo]v8QZ|:MsJ0T’);
define(‘NONCE_KEY’, ‘8g-8jd/@00N8=svH1Q+crS#Y<w[AIF=k7o7%@B3,%^S*QFRC5CyM<tL.X4,Q!3C_’);$table_prefix = ‘wp_’;
define (‘WPLANG’, ”);
/* That’s all, stop editing! Happy blogging. */
/** WordPress absolute path to the WordPress directory. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);/** Sets up WordPress vars and included files. */
require_once(ABSPATH . ‘wp-settings.php’);
?>Forum: Fixing WordPress
In reply to: “Visit Site” produces a blank screenThe apache error logs contain php errors for files that can’t be opened but nothing about too little memory. I increased the memory first to 32M and then to 64M, and then to 256M by putting ini_set() into the beginning of cache.php and also adding .htaccess and php.ini with similar entries.
Couldn’t this problem have something to do with my second paragraph above? It seems to me that there has to be something wrong with the way that ABSPATH is being set, but it is unclear to me the appropriate way to fix this.