Title: Diogo's Replies | WordPress.org

---

# Diogo

  [  ](https://wordpress.org/support/users/stashpro/)

 *   [Profile](https://wordpress.org/support/users/stashpro/)
 *   [Topics Started](https://wordpress.org/support/users/stashpro/topics/)
 *   [Replies Created](https://wordpress.org/support/users/stashpro/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/stashpro/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/stashpro/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/stashpro/engagements/)
 *   [Favorites](https://wordpress.org/support/users/stashpro/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/stashpro/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/stashpro/replies/page/2/?output_format=md)

 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Local Installation on Win Server 2003 IIS 6](https://wordpress.org/support/topic/local-installation-on-win-server-2003-iis-6/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/local-installation-on-win-server-2003-iis-6/#post-4230189)
 * Cool, let us know!
 * Also, [pretty permalinks](http://codex.wordpress.org/Using_Permalinks#Permalink_Types)
   are actually available under IIS 6, you just need to use ASAPI_Rewrite.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [FTP issue](https://wordpress.org/support/topic/ftp-issue-1/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/ftp-issue-1/#post-4233073)
 * You’re better not changing anything if you’re unsure. It is safe to assume that
   if have never changed the .htaccess file it has the default rules in it, and 
   those rules would allow access to the file.
 * We can also look at file permissions. If your FTP client can change the file’s
   permissions, try setting it as 644, or RW-R-R. This will give the owner (your
   ftp user) Read and Write permissions, and give Read only permission to everyone
   else.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [FTP issue](https://wordpress.org/support/topic/ftp-issue-1/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/ftp-issue-1/#post-4233040)
 * Yes.. you’re correct, leejosepho. I wasn’t clear.
 * The default .htaccess file should allow direct access to any non-wordpress files
   under the directory. If your .htaccess is different than the default, you may
   need to make changes.
 * Cheers!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [FTP issue](https://wordpress.org/support/topic/ftp-issue-1/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/ftp-issue-1/#post-4233035)
 * Hi Matty,
 * Are using using Apache as web server? With Apache, WordPress will create a .htaccess
   in the installation directory and write some rules to it. The rules will tell
   how the webserver should serve files under that directory.
 * The default .htaccess file looks something like this:
 *     ```
       # 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
       ```
   
 * You can check a[ line-by-line explanation](http://randomtype.ca/blog/the-wordpress-htaccess-file-explained/)
   of the rules to understand what it does.
 * To access the file under root, you may need to create or modify some of the rules,
   but be careful! Those rules are essential to have pretty permalinks working.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Local Installation on Win Server 2003 IIS 6](https://wordpress.org/support/topic/local-installation-on-win-server-2003-iis-6/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/local-installation-on-win-server-2003-iis-6/#post-4230182)
 * Hola Tom,
 * I don’t have a windows machine to test, but I think the Microsoft Web Platform
   Installer (Web PI) won’t allow you to change the directory where WordPress is
   installed. However, I also think that the default is to install in wwwroot sub
   directory. Once Web PI is installed, restrictions may apply to further web apps
   installs.
 * Ah, there were some issues with Permalinks and IIS 6, you should also check this
   before installing, or upgrade to IIS 7, if possible.
 * Here’s a link with the detailed description on how to [Install Internet Information Services 7.0 and WordPress 3.x by Using the Microsoft Web Platform Installer 3.0](https://wordpress.org/support/users/stashpro/replies/Install Internet Information Services 7.0 and WordPress 3.x by Using the Microsoft Web Platform Installer 3.0?output_format=md)
 * If you’re not afraid of a little server grooming, you can instally WordPress 
   manually by following these simple instructions: [Famous 5-Minute Install](http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install)–
   The same document also offers a few other ways to install WordPress.
 * Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change Default Fonts in 2010](https://wordpress.org/support/topic/change-default-fonts-in-2010/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/change-default-fonts-in-2010/#post-4195824)
 * Hi, Dan
 * You’ll have to change that in the theme’s CSS.
 * Just login to your site and go to _Appearance > Edit CSS_ and you will be presented
   with a CSS Stylesheet Editor that you can use to write custom code to override
   the defaults.
 *  In Twenty Ten the fonts definitions begin on line 113 of the `styles.css` file.
   Here’s what you’ll find there:
 *     ```
       /* =Fonts
       -------------------------------------------------------------- */
       body,
       input,
       textarea,
       .page-title span,
       .pingback a.url {
       	font-family: Georgia, "Bitstream Charter", serif;
       }
       h3#comments-title,
       h3#reply-title,
       #access .menu,
       #access div.menu ul,
       #cancel-comment-reply-link,
       .form-allowed-tags,
       #site-info,
       #site-title,
       #wp-calendar,
       .comment-meta,
       .comment-body tr th,
       .comment-body thead th,
       .entry-content label,
       .entry-content tr th,
       .entry-content thead th,
       .entry-meta,
       .entry-title,
       .entry-utility,
       #respond label,
       .navigation,
       .page-title,
       .pingback p,
       .reply,
       .widget-title,
       .wp-caption-text {
       	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
       }
       input[type="submit"] {
       	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
       }
       pre {
       	font-family: "Courier 10 Pitch", Courier, monospace;
       }
       code {
       	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
       }
       ```
   
 * Cheers,
 * -Diogo
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Slow loading site speed.](https://wordpress.org/support/topic/slow-loading-site-speed/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-site-speed/#post-4165527)
 * Hi!
 * A lot of things can hurt your load time. Try using [PageSpeed Insights](http://developers.google.com/speed/pagespeed/insights/)
   to can get a better idea of what is slowing you down.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site hacked by Markov](https://wordpress.org/support/topic/site-hacked-by-markov/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/site-hacked-by-markov/#post-4165023)
 * The problem seems to be with the encoding value. Did you set it manually? I’m
   not sure if the ‘charset’ should be there. Here’s how a valid encoding declaration
   looks like:
 * `<?xml version="1.0" encoding="UTF-8"?>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site hacked by Markov](https://wordpress.org/support/topic/site-hacked-by-markov/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/site-hacked-by-markov/#post-4165017)
 * Being hacked is never fun.
 * Are you using the latest version of WP? Do you use any plugins to generate your
   feed?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Menus limit to 90 items in database ?](https://wordpress.org/support/topic/menus-limit-to-90-items-in-database/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menus-limit-to-90-items-in-database/#post-4157280)
 * Hey! Good stuff!
 * Looks like there’s another piece of configuration that needs to be added to the
   php.ini. Your server appears to be running the [Suhosin Extension](http://www.hardened-php.net/suhosin/),
   and there are some specific configuration need in this case. bemdesign mentions
   it above, and there are also some clues in the article I referred. Basically,
   you have to add the info bellow to your php.ini:
 *     ```
       suhosin.post.max_vars = 3000
       suhosin.request.max_vars = 3000
       ```
   
 * Let us know if it works!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Menus limit to 90 items in database ?](https://wordpress.org/support/topic/menus-limit-to-90-items-in-database/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menus-limit-to-90-items-in-database/#post-4157277)
 * I’m sorry to hear that. Could you do us a favor? To better debug this it would
   be very useful to get some information from the [php_info() function](http://www.php.net/manual/en/function.phpinfo.php).
 * If you can upload files directly to your server, simply create a file named info.
   php with the following contents:
 *     ```
       <?php
   
       phpinfo();
   
       ?>
       ```
   
 * Upload the file to your web root and access it with your browser. It will output
   a lot of information, search for the **max_input_vars** and let us know what 
   value is listed there. While on it, see if there are other related vars (request.
   max_vars, post.max_vars), and also let us know.
 * The_ php\_info()_ function might output some sensitive information, so it is 
   not a good idea to leave the file in your server for too long.
 * Hope it helps!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to add Nofollow tag](https://wordpress.org/support/topic/how-to-add-nofollow-tag/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-nofollow-tag/#post-4161327)
 * I don’t think the order matters, but Google uses #2 in their examples:
 * [https://support.google.com/webmasters/answer/96569?hl=en](https://support.google.com/webmasters/answer/96569?hl=en)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Select authors who post in the last two months](https://wordpress.org/support/topic/select-authors-who-post-in-the-last-two-months/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/select-authors-who-post-in-the-last-two-months/#post-4147759)
 * Hi Zarausto,
 * I’m a little rusty on theme/plugin development, and a quick look in the [Function Reference](http://codex.wordpress.org/Function_Reference)
   didn’t give me much hope. I think you’ll indeed need some custom SQL for that,
   nothing too complex though.
 * Cheers!
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [WordPress.org Showcase feed](https://wordpress.org/support/topic/wordpressorg-showcase-feed/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpressorg-showcase-feed/#post-4158723)
 * What do you mean? The URL is working fine for me…
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [cant install](https://wordpress.org/support/topic/cant-install-45/)
 *  [Diogo](https://wordpress.org/support/users/stashpro/)
 * (@stashpro)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/cant-install-45/#post-4158236)
 * Hi Jerry,
 * How do you access your DB server? Do you have phpMyAdmin?
 * If you have a direct connection to you DB, you can achieve it with the following
   command:
 * `DROP DATABASE wordpress`
 * There is no undo, so be careful with it.
 * If your database was provided by your hosting provider, its better to contact
   them and ask for detailed directions.
 * Cheers!

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/stashpro/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/stashpro/replies/page/2/?output_format=md)