netagurion
Forum Replies Created
-
Forum: Themes and Templates
In reply to: need help on how to make background clickableI cant figure out how to get it behind my content
Every time I create it, it covers my whole page with a link…
Maybe i have it figured out and can not find where to put the link code in…
<a href="http://testing.com" title="TESTNG" id=linky1> linky </a>Forum: Fixing WordPress
In reply to: lost Add/Edit Pages capabilities on my Admin PanelsTHIS IS A WORKING wp-config.php
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘*******’); // The name of the database
define(‘DB_USER’, ‘********’); // Your MySQL username
define(‘DB_PASSWORD’, ‘***********’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
if ( !defined(‘ABSPATH’) )
define(‘ABSPATH’, dirname(__FILE__) . ‘/’);
require_once(ABSPATH . ‘wp-settings.php’);
?>Forum: Fixing WordPress
In reply to: lost Add/Edit Pages capabilities on my Admin PanelsI have noticed that the wp-config.php file does not have ?> at the end of it…. see my copy of the wp-config-sample.php included in the latest.tar.gz
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information by
* visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don’t have to use the web site, you can just copy this file
* to “wp-config.php” and fill in the values.
*
* @package WordPress
*/// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘putyourdbnamehere’);/** MySQL database username */
define(‘DB_USER’, ‘usernamehere’);/** MySQL database password */
define(‘DB_PASSWORD’, ‘yourpasswordhere’);/** 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’, ”);/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = ‘wp_’;/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de.mo to wp-content/languages and set WPLANG to ‘de’ to enable German
* language support.
*/
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
/** 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: lost Add/Edit Pages capabilities on my Admin PanelsI also have debug turned on and I am getting a warning…
Warning: fopen(http://relientdata.com/wp-cron.php?doing_wp_cron) [function.fopen]: failed to open stream: Connection timed out in /var/www/relientdata.com/wp-includes/http.php on line 1009
Warning: Cannot modify header information – headers already sent by (output started at /var/www/relientdata.com/wp-includes/http.php:1009) in /var/www/relientdata.com/wp-includes/functions.php on line 790
Warning: Cannot modify header information – headers already sent by (output started at /var/www/relientdata.com/wp-includes/http.php:1009) in /var/www/relientdata.com/wp-includes/functions.php on line 791
Forum: Fixing WordPress
In reply to: lost Add/Edit Pages capabilities on my Admin PanelsMy phpinfo output
PHP Version 5.2.4-2ubuntu5.10
System Linux 2.6.24-26-server #1 SMP Tue Dec 1 19:19:20 UTC 2009 i686
Build Date Jan 6 2010 21:40:47
Server API Apache 2.0 Handler
Virtual Directory Support disabled
Configuration File (php.ini) Path /etc/php5/apache2
Loaded Configuration File /etc/php5/apache2/php.ini
Scan this dir for additional .ini files /etc/php5/apache2/conf.d
additional .ini files parsed /etc/php5/apache2/conf.d/mysql.ini, /etc/php5/apache2/conf.d/mysqli.ini, /etc/php5/apache2/conf.d/pdo.ini, /etc/php5/apache2/conf.d/pdo_mysql.ini
PHP API 20041225
PHP Extension 20060613
Zend Extension 220060519
Debug Build no
Thread Safety disabled
Zend Memory Manager enabled
IPv6 Support enabled
Registered PHP Streams zip, php, file, data, http, ftp, compress.bzip2, compress.zlib, https, ftps
Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls
Registered Stream Filters string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, convert.iconv.*, bzip2.*, zlib.*Forum: Fixing WordPress
In reply to: lost Add/Edit Pages capabilities on my Admin PanelsI am having a similar problem I am running apache2 on an Ubuntu box with php5. All other posting/editing works but when I try and edit pages, nothing happens… I get an error page in Firefox and IE. I had a friend update his wordpress install to the latest version but he is running RHEL and it works fine.
I get a blank page with
http://relientdata.com/wp-admin/page.php?action=edit&post=2
(which is the default ABOUT page)This is on a fresh install from wordpress.org/latest.tar.gz The site is http://relientdata.com
I am running no plugins. Again, this is on a bare install. FWIW, I have been able to add a new page but it remains in -Draft. I can not publish it either. I can log into mysql and set the page to published and it will work but it is not a solution. I have tried to change my .htaccess file as well per other posts suggestions… no luck.
My guess is this is either a PHP problem or a PHP problem 🙂