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
    70
    Liked
    1 times

    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
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    4 times
    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.
    The Forum Hosting - Forum Hosting from the Forum Experts

  3. #3
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •