WHM & Cpanel
February 25th, 2010 by ayadcheck the below URL for more info about Cpanel and WHM
http://www.thecpaneladmin.com/page/2/
check the below URL for more info about Cpanel and WHM
http://www.thecpaneladmin.com/page/2/
this funiction use for upload picture in php
you can test is this funiction enalbed in the server or not. use the code below
<?php
var_dump(gd_info());
?>array(9) {
["GD Version"]=>
string(24) "bundled (2.0 compatible)"
["FreeType Support"]=>
bool(false)
["T1Lib Support"]=>
bool(false)
["GIF Read Support"]=>
bool(true)
["GIF Create Support"]=>
bool(false)
["JPEG Support"]=>
bool(false)
["PNG Support"]=>
bool(true)
["WBMP Support"]=>
bool(true)
["XBM Support"]=>
bool(false)
}
References
http://www.php.net/manual/en/function.gd-info.php
you can download what you want from the DLL component,
Refer to the URL below
http://kromann.info/download.php?strFolder=php5_1-Release_TS&strIndex=PHP5_1
Hello,
My first guess would be using SpamAssassin as part of your anti-spam administration is causing the slowness you are seeing. It is a known fact that this feature is very limited for SmarterMail on Windows servers due to the lack of multi-threading. You can verify this by logging into SmarterMail as the administrator and select to manage the spool. While viewing the spool, on the right it will tell you the status of the message and if it states something along the lines as ‘Spam check’, that means that the message is caught in one of the anti-spam choices (which could be SpamAssassin). To test if SpamAssassin is the problem, you can disable the service in SmarterMail by doing the following:
1) Login into SmarterMail administrative interface.
2) Click on Security Tab.
3) Click on Anti-Spam Administration.
4) Check the box for SpamAssassin.
5) Click save button to modify the updates.
References
http://www.smartertools.com/forums/p/24344/65618.aspx
If you are getting some unexplainable 404 errors when accessing html or asp.net pages in IIS, and have exhausted the more common issues, check out your log file for URLScan errors. URLScan is a Microsoft security tool to help protect Internet Information Server. On your developer environment it might be getting in the way.
References
http://www.pressthered.com/rejected-by-urlscan_404_errors/
Please refer to the URL below will help you alot of linux command
http://www.perpetualpc.net/srtd_commands_rev.html
Spent a day researching online and finally made CF8 Standard work on IIS7 x64. Just want to share it.
SOLUTION TO INSTALL Coldfusion 8 Standard (32-bit) to Windows Server 2008 64-bit (SBS small business server 2008 x64) on IIS7
===
Example Website:
IIS > Sites > testwebsite
Path:
E:\testwebsite\
Homepage:
E:\testwebsite\index.cfm
IIS Application Pool: (automatically named and created by IIS)
testwebsite
===
1. PROBLEM: HTTP Error 404.17
SOLUTION:
IIS > Application Pools > (right click on) testwebsite > Advanced Settings > Enable 32-Bit Applications > (set to) True
(no restart needed)
===
2. Then I hit a 2nd PROBLEM: browser shows:
“Service Unavailable HTTP Error 503. The service is unavailable”
Refer to: http://mvolo.com/blogs/serverside/archive/2006/10/19/Where-did-my-IIS7-server-go_3F00_-Troubleshooting-_2200_service-unavailable_2200_-errors.aspx
I followed his steps and found out this error in windows Event Viewer > Windows Logs > Application > Error, Source=IIS-W3SVC-WP >
“The Module DLL C:\Windows\system32\RpcProxy\RpcProxy.dll failed to load. The data is the error.”
SOLUTION:
Edit file:
C:\Windows\System32\inetsrv\config\applicationHost.config
Change this line from:
<add name=”PasswordExpiryModule” image=”C:\Windows\system32\RpcProxy\RpcProxy.dll” />
To:
<add name=”PasswordExpiryModule” image=”C:\Windows\system32\RpcProxy\RpcProxy.dll” preCondition=”bitness64″ />
May need to restart IIS.
===
3. Now the 3rd PROBLEM pops up: browser shows:
“HTTP Error 500.19 – Internal Server Error”
Refer to: http://forums.iis.net/t/1154481.aspx
which refers to:
http://forums.iis.net/p/1149768/1871631.aspx
SOLUTION
They said the http compression modules caused the error, and need to disable it globally. Run this command:
%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /-[name=’xpress’]
In case we want to re-enable it, run this:
%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name=’xpress’,doStaticCompression=’false’,dll=’%windir%\system32\inetsrv\suscomp.dll’]
(note two %windir% to replace)
NOTE: this will turn off HTTP compression for all sites on IIS. I tried to turn compression ON again in IIS > (Top Level Domain, the 1st node below “Start Page” on left sidebar) > (dbl-click icon) Compression, by unchecking all boxes (if checked) > apply changes, then checking all boxes > apply changes. Restart IIS. Then both HTTP compression & coldfusion work at the same time! (to confirm: check HTTP header: Content-Encoding = gzip, using Firefox add-on: Live HTTP Headers)
===
Then it finally worked!!
SUMMARY
1. Enable 32-Bit Applications in the IIS Application Pool
2. Edit applicationHost.config for RpcProxy.dll 64-bit setting
3. Disable HTTP compression scheme in IIS by command line
– than turn off then on Compression in IIS by GUI
References
http://forums.iis.net/t/1157092.aspx
never checked it
suspend
/scripts/suspendacct username
unsuspend
/scripts/unsuspendacct username
Thank you
Ayad
if you got the above error,
you need to deleted every thing between <httpErrors> </httpErrors>
and add this
<httpErrors>
<remove statusCode=”403″ subStatusCode=”-1″ />
<error statusCode=”403″ prefixLanguageFilePath=”” path=”redir.htm” responseMode=”File” />
</httpErrors>
References
http://webbosworld.co.uk/blog/?p=118
run the command below will help to fix this issue
appcmd migrate config “alzwea.com/”
References
http://tobint.com/blog/iis-7-0-error-support/