vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Results 1 to 3 of 3

Anyone use Cute FTP

This is a discussion on Anyone use Cute FTP within the General Discussion forums, part of the vBSEO SEO Plugin category; I need to access my httpd.conf file in my root on a dedicated server to get VBSEO to work. But ...

  1. #1
    Member
    Real Name
    JB
    Join Date
    Oct 2007
    Posts
    38

    Anyone use Cute FTP

    I need to access my httpd.conf file in my root on a dedicated server to get VBSEO to work. But I just cannot get to it using putty as I know nothing of the SSH commands and am too old to
    learn them. Can I get to it with Cuteftp? and download it. I have tried lots of combinations of ports and connection types but it will just not give me access. Can someone give me an idiots guide to the cuteftp settings?

    Thanks

    Why do they make it so hard to see the root of a linux server?

  2. #2
    vBSEO Staff Michael Biddle's Avatar
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    6,362
    Oleg introduced me to WinSCP. That allows you to access the ssh just like a ftp. I have not tried CuteFTP though. I either use FlashFXP or WinSCP.
    Michael Biddle / Crawlability Inc.
    Sneek Preview Video of the new Control Panel

    vBSEO 3.5 RC2 (Pre-Release)- Released for your Evaluation


  3. #3
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,983
    ftp'ing doesn't give you everything you need to do... namely restart apache after you make the change.


    using ssh is no harder than a dos window.

    open putty
    connect with your login user/pass

    type 'locate httpd.conf'

    this will find the file for you. it will most likely return a BUNCH of results. I've highlighted the one that you are trying to find. It may be in a different directory depending on your server configuration. I'm on centOS.

    Code:
    [xxxxxx@yyyyyy conf]# locate httpd.conf
    /etc/httpd.old/conf/httpd.conf
    /home/.cpan/build/Apache-Admin-Config-0.94-Ls3DWS/t/httpd.conf-dist
    /home/cpeasyapache/src/httpd-2.2.9/docs/conf/httpd.conf
    /home/cpeasyapache/src/httpd-2.2.9/docs/conf/httpd.conf.in
    /usr/local/apache/conf/httpd.conf
    /usr/local/apache/conf/httpd.conf,v
    /usr/local/apache/conf/httpd.conf.bak
    /usr/local/apache/conf/httpd.conf.datastore
    /usr/local/apache/conf/httpd.conf.default
    /usr/local/apache/conf/httpd.conf.ea-make-install
    /usr/local/apache/conf/httpd.conf.ea-orig
    /usr/local/apache/conf/httpd.conf.easyapache_save
    /usr/local/apache/conf/httpd.conf.tmpeditlib
    /usr/local/apache/conf/original/httpd.conf
    /usr/local/apache/conf_pre_ea3/httpd.conf
    /usr/local/apache/conf_pre_ea3/httpd.conf,v
    /usr/local/apache/conf_pre_ea3/httpd.conf.bak
    /usr/local/apache/conf_pre_ea3/httpd.conf.datastore
    /usr/local/apache/conf_pre_ea3/httpd.conf.default
    /usr/local/apache/conf_pre_ea3/httpd.conf.tmpeditlib
    /usr/share/system-config-httpd/httpd.conf.xsl
    
    to edit it is as simple as opening it in a text viewer.
    I like pico, but it's not always installed on all servers.

    so, at the prompt,
    Code:
    pico /usr/local/apache/conf/httpd.conf
    
    If you don't have pico, you can try vi
    Code:
    vi /usr/local/apache/conf/httpd.conf
    
    This will open the file where you can edit it and save it.
    after you save it, you will be put back out to the prompt.

    type

    Code:
    service httpd restart
    
    when you get the prompt again, you're settings are done, saved, and live.