Tagged: simplehelix RSS

  • Nathan Haskins 6:15 am on September 30, 2010 Permalink | Reply
    Tags: chmod, simplehelix   

    folder permission issue with simple helix dedicated server. 

    The one line take away is, public_html needs to be 775 permission.

    permission set to 755, and ready to go

    So I learned that when moving a site to simple helix, the file permissions for the domain’s public_html/ folder need to be ’755′ or else the site will throw access denied error. Originally I thought the domain folder itself needed to be 755… doesn’t seem to be the case. By default the folder is set to 775, however i had to remove and recreate the public_html folder.

     
  • Nathan Haskins 12:26 pm on May 10, 2010 Permalink | Reply
    Tags: , .vcf, simplehelix   

    MIME for .vcf files can be hit or miss. Simplehelix’s justin goldsmith figured out the solution:

    modify .htaccess…
    IE/Safari/FF fix: AddType application/octet-stream .vcf

     
  • Nathan Haskins 12:13 pm on May 10, 2010 Permalink | Reply
    Tags: , simplehelix   

    Simplehelix Git’s it, thanks for the setup! Looking forward to testing it out

     
  • Nathan Haskins 12:14 pm on May 9, 2010 Permalink | Reply
    Tags: , simplehelix   

    Simplehelix no Git on shared account qq. After speaking with tech support it seems only the dedicated servers can run Git. The issue with the shared accounts is that if it requires root access for anything, they can’t do it. So they can’t install it, even if you offer to pay. Damn.

     
    • Gary 7:00 am on May 10, 2010 Permalink

      The techs have to err on the side of caution, additions to the shared environment are rarely allowed. Also things such as git often requires someone at the root level to do the initial setup, not being familiar with git I can’t say if that’s true. Anyway if you’ll open a ticket and reference this, I’ll yum install git on the server you’re on and if that’s all it takes I see no reason we can’t put it on the shared environment, if it requires more than that then most likely it won’t happen.

    • Mike 8:06 am on May 10, 2010 Permalink

      For what it’s worth, we have installed git after further consideration as per Gary’s reply. :)

    • Nathan Haskins 12:11 pm on May 10, 2010 Permalink

      Thanks a lot guys can’t wait to test it.

  • Nathan Haskins 10:15 am on May 3, 2010 Permalink | Reply
    Tags: localization, simplehelix,   

    When hosting a wordpress site at simplehelix remember to ask them to turn OFF dir_open() restrictions for the domain.. otherwise your media library is going to throw errors.

     
  • Nathan Haskins 10:07 am on May 3, 2010 Permalink | Reply
    Tags: , simplehelix   

    the simplehelix (max) account uses .htaccess, no access to php.ini… had to setup some max timeouts so i used the following in a .htaccess file in the sites root directory:

    php_value upload_max_filesize 20M
    php_value post_max_size 20M
    php_value max_execution_time 200
    php_value max_input_time 200

    That should do it in theory.

     
  • Nathan Haskins 6:46 pm on May 2, 2010 Permalink | Reply
    Tags: , , simplehelix,   

    Localizing wordpress, and some handy mySQL to speed it up 

    Localizing wordpress after moving it from one domain name to another? It use to be a pain in the ass to hunt down all the link.. well it still can be. However, these mySQL find and replace commands speed it up a heck of a lot. If your theme is pretty basic, you may be done after running these.

    In the commands below, Im going from my old dev address ‘studio2108.com.s52733.gridserver.com’ to my new address ‘studio2108.simplehelix.com’. Remember to back up your database before trying this.. anyway take the 4 lines below, cut them, edit them, and then paste them into phpmyadmin’s SQL tab and your good.

    Whats weird is the theme file has hardcoded references to studio2108.com in the header file… im finding and replacing them for now.

    update wp_posts set guid = replace(guid,'com.s52733.gridserver.com', 'simplehelix.com');
    update wp_posts set post_content = replace(post_content,'com.s52733.gridserver.com', 'simplehelix.com');
    update wp_options set option_value = replace(option_value,'com.s52733.gridserver.com', 'simplehelix.com');
    update wp_postmeta set meta_value = replace(meta_value, 'com.s52733.gridserver.com', 'simplehelix.com');