Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Gothic

Pages: 1 [2]
16
CentOS 6 Problems / Re: SubDomain Problem
« on: August 25, 2015, 04:24:27 PM »
try rebuilding your apache vhost this will also rebuild all vhosts.

I have youse root update and restart, now i have this problem back and i have youse vHost re-builder and its not fix loger this problem.... i need help  :'(

//Fixed omg

Step 1: Select WebServers ---> Select your WebServer Option  -----> Save & Rebuild Configuration
Step 2: Data Updated.
Step 3: Use: *** Rebuild All Virtual Hosts ***

Step 4: Its fix now

17
CentOS-WebPanel Bugs / Error from the Error_log
« on: August 09, 2015, 03:34:36 PM »
Error Log:
sed: couldn't write 80 items to stdout: Broken pipe

Undefined property: DOMDocument::$MKZ149gT8o7 in /usr/local/cwpsrv/htdocs/resources/admin/include/phpQuery-onefile.php(1) : eval()'d code(1) : eval()'d code on line 89, referer: http://www.test.net:2030/index.php?service_restart=sshd

Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/phpQuery-onefile.php(1) : eval()'d code(1) : eval()'d code on line 89, referer: http://www.test.net:2030/index.php?service_restart=sshd

Trying to get property of non-object in /usr/local/cwpsrv/htdocs/resources/admin/include/phpQuery-onefile.php(1) : eval()'d code(1) : eval()'d code on line 377, referer: http://www.test.net:2030/index.php?service_restart=sshd

Undefined index: login in /usr/local/cwpsrv/htdocs/admin/login.php(1) : eval()'d code(1) : eval()'d code on line 20

18
CentOS 6 Problems / Re: SubDomain Problem
« on: January 10, 2015, 09:06:50 PM »
Solved the Problem

19
CentOS 6 Problems / SubDomain Problem
« on: January 08, 2015, 11:09:12 PM »
I do not know if I am in the correct section but I hope so.
I have problems with the SubDomain is not loaded.
And its load from the basic folder "/usr/local/apache/htdocs"

How can i fix it for loard from "/home/root/download"?

Screen:


Code: [Select]
# vhost_start http://domain.net/
<VirtualHost 127.0.0.1:80>
ServerName domain.net
ServerAlias www.domain.net
ServerAdmin  support@domain.net
DocumentRoot "/home/rootwebsite"
ScriptAlias /cgi-bin/ /home/rootwebsite/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/root/http://domain.net//*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup Gothic Gothic
</IfModule>

<IfModule mod_suphp.c>
        suPHP_UserGroup Gothic Gothic
</IfModule>

<Directory "/home/rootwebsite">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end http://domain.net/

SubDomain:
# vhost_start download.domain.net.
<VirtualHost 127.0.0.1:80>
ServerName download.domain.net.
ServerAlias www.download.domain.net.
ServerAdmin support@domain.net
DocumentRoot "/home/root/download"
ScriptAlias /cgi-bin/ /home/root/download/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/root/download.domain.net./*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup root root
</IfModule>

<IfModule mod_suphp.c>
        suPHP_UserGroup root root
</IfModule>

<Directory "/home/root/download">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end download.domain.net.

Pages: 1 [2]