Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hmmmmm, you may create image inside the sub-domain and copy them all there, or simply use (cp -R) to copy the folder of images to were you need it.

    You may need to play with apache virtual configuration for the proxy website.

    Ex:

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. People reading your code snippet will thank you. ]

    <VirtualHost *:80>
        ServerAdmin [email protected]
        DocumentRoot "/home/httpd/your-real-website.com/http-or-subdomain"
        ServerName your-real-website.com
        ServerAlias www.your-real-website.com
        ErrorLog "/home/httpd/your-real-website.com/logs/error_log"
        CustomLog "/home/httpd/your-real-website.com/logs/access_log" common
    
    <Directory "/home/httpd/your-real-website.com/http-subdomain">
            Options -Indexes FollowSymLinks +ExecCGI
            AllowOverride AuthConfig FileInfo
            DirectoryIndex index.php index.html
            Order allow,deny
            Allow from all
    </Directory>
    </VirtualHost>

    Hope that help you!

    Forum: Fixing WordPress
    In reply to: Web Site Down

    Try to connect to the website database and change it from there, that’s the only way i think.

    -J

Viewing 3 replies - 1 through 3 (of 3 total)