Archive for the Category »Featured Articles «

These are the steps I do on default WP installs to get going.

  • Download WP from http://www.wordpress.org
  • Unzip and upload to domain
  • Go back to domain and go through install
  • When get message to create a config file, there is an error that it cannot write to the directory
  • Goto the directory public_html and temporarily set it to chmod 777
  • Click on button to create Config file and install.
  • Enter WP information for database
  • When install is done, change information for password from default password
  • Delete all default posts, blogroll links, and default comments
  • Change category of uncategorized to a category with site
  • Set permalinks to Custom Structure to /%category%/%postname%
  • Add About, Privacy,  and Contact pages
  • Disable Comments and Pings on the About, Privacy,  and Contact Pages.
  • Upload Themes (Keep default for troubleshooting) and Plugins
  • Make dir /wp-content/uploads/ dir and make it writable by server
  • Use Akismet API key for Akismet config

Popularity: 3% [?]

When I get the error The uploaded file exceeds the upload_max_filesize directive in php.ini. in wordpress, it just means that the file I am trying to upload is greater than the 2 meg default size allowed. So, I add this so my .htaccess

php_value  upload_max_filesize 15M
php_value  post_max_size  15M
php_value  memory_limit  48M
php_value max_execution_time 600
php_value max_input_time 600

php_value  upload_max_filesize 15M
php_value  post_max_size  15M

To increase the amount of time post scripts are allowed to run before the server kills them I also add this to my .htaccess

php_value  memory_limit  48M
php_value max_execution_time 600
php_value max_input_time 600

Popularity: 9% [?]