Get PHP To Run On Windows Host
I want to get PHP to run on Windows webhost. The webhost is not able to run a simple PHP file with phpinfo() yet. Tech support says I can use .htaccess to get PHP to run.
What is the best way to setup PHP on Windows Host so that it can run Joomla?
View Complete Thread with Replies
Sponsored Links:
Related Forum Messages:
Host PHP At Windows Server
I've just bought a server and installed Windows Server 2003 O/S. My website(with PHP) is currently hosting at another hosting company. and I want to move this website to new server and cancel with that hosting company. It will also be a server for office network to share files. Where should I begin with?
View Replies!
View Related
Windows Host W/ ASP.NET And PHP
I've been using GoDaddy hosting for years. Not because I thought it was good, it just was dirty cheap at the time and I knew that they were a reputable company. However, I'm ready to try something else. I'm looking for a cheap, reputable windows host that will allow me to use ASP.net and PHP. (aka, my two favorite languages) I'm not afraid of oversellers. I have been using GoDaddy afterall. However, I would like something a little higher quality and not famous for their lag times and excessive server load. Any ideas? I'm not hard to please... [Note, I'd prefer not to receive PM's with people pimping hosts that they manage or have reseller accounts with. But, if you must, at least give me the courtesy of letting me know that up front. ]
View Replies!
View Related
Cron: How To Run Php File
My server with cPanel, I'd like run file http://domain.com/file.php at 0h00 everyday, I have set the Cron Job in cPanel : Code: 0 0 * * * /usr/bin/ehpwget http://domain.com/file.php but The cron is not working well Code: /bin/sh: /usr/bin/ehpwget: No such file or directory Can any one please let me know how to run a php file with cron. (as user or root)
View Replies!
View Related
Cron Run Php Scripts
I have my own server. I create php file for adding cronjobs. I checked /etc/cron.deny and /etc/cron.allow. both of them is empty so no problem. I execute the php script but nothing : I check with crontab -u user l and it told me no cronjobs for that user. When I access as root from ssh and try teh same command, it works fine. I don't understand how to fix that.
View Replies!
View Related
How To Run PHP 4 And 5 In Ubuntu Without CGI
When we chose Symfony to implement [url], PHP 5 was needed but we only had PHP 4 installed in our Ubuntu hosting servers. We couldn¡¯t just migrate everyone to PHP 5 since some of client¡¯s applications were incompatible with PHP 5. Some tutorials were found online explaining how to run PHP 4 and PHP 5 simultaneously such as [url] and [url]but they all used CGI. As you probably know, CGI is not scalable and we needed to scale in PHP4 and PHP5 since we needed to server millions of hits in both configurations. The following are additional the requirements we had: 1. Run Apache 2. Use mod_php for both PHP versions. 3. Run eAccelerator with both PHP versions. 4. Use as many Ubuntu packages as possible to ease maintenance issues and easily deploy on multiple servers. 5. Use Ubuntu 6.06.1 LTS The solution we came up with was to run Apache 2 with PHP 5 and run Apache 1 with PHP 4 on separate IPs. Ubuntu comes already with these packages. The only package we had to compile was eAccelerator. The following lists the steps taken to get this setup: Apache 2 with PHP 5 * apt-get install apache2 libapache2-mod-php5 php5 php5-cli php5-curl php5-gd php5-mysql php5-dev make php5-mcrypt php5-imap * vi /etc/php5/cli/php.ini and uncomment extension=mysql.so * vi /etc/apache2/ports.conf and put Listen Your.IP.Goes.Here:80 * a2enmod expires * vi /etc/apache2/conf.d/hosting <VirtualHost *> DocumentRoot /home/httpd/mainpage ServerName mainpage.com ServerAlias www.mainpage.com Options Includes FollowSymlinks AddType application/x-httpd-php .php DirectoryIndex index.php index.html index.htm </VirtualHost># Cache images and javascripts ExpiresActive on ExpiresByType image/gif ¡°access plus 1 week¡± ExpiresByType image/jpeg ¡°access plus 1 week¡± ExpiresByType image/png ¡°access plus 1 week¡± ExpiresByType image/x-icon ¡°access plus 4 week¡± ExpiresByType application/x-javascript ¡°access plus 4 week¡± ExpiresByType application/x-shockwave-flash ¡°access plus 4 week¡± * cd /usr/local/src * wget http://bart.eaccelerator.net/source/...-0.9.5.tar.bz2 * tar xjvf eaccelerator-0.9.5.tar.bz2 * cd eaccelerator-0.9.5/ * phpize5 * ./configure * make * make install * mkdir /var/tmp/{eaccelerator4,eaccelerator5} * chown www-data /var/tmp/eaccelerator* * chmod 700 /var/tmp/eaccelerator* * vi /etc/php5/apache2/php.ini and add the following: zend_extension=¡±/usr/lib/php5/20051025/eaccelerator.so¡± eaccelerator.shm_size=¡±0¡å eaccelerator.cache_dir=¡±/var/tmp/eaccelerator5¡å eaccelerator.enable=¡±1¡å eaccelerator.optimizer=¡±1¡å eaccelerator.check_mtime=¡±1¡å eaccelerator.debug=¡±0¡å eaccelerator.filter=¡±" eaccelerator.shm_max=¡±0¡å eaccelerator.shm_ttl=¡±0¡å eaccelerator.shm_prune_period=¡±0¡å eaccelerator.shm_only=¡±0¡å eaccelerator.compress=¡±1¡å eaccelerator.compress_level=¡±9¡å Apache 1 with PHP 4 * apt-get install libapache-mod-php4 php4-mysql php4-gd apache-ssl apache-common libzzip-0-12 php4-common php4-dev apache * dpkg-reconfigure apache and uncheck mod_userdir and check mod_php4 and cancel on hostname * vi /etc/apache/httpd.conf and make sure to add this Listen Your.SECONDIP.Goes.Here:80 NameVirtualHost *# Cache images and javascripts ExpiresActive on ExpiresByType image/gif ¡°access plus 1 week¡± ExpiresByType image/jpeg ¡°access plus 1 week¡± ExpiresByType image/png ¡°access plus 1 week¡± ExpiresByType image/x-icon ¡°access plus 4 week¡± ExpiresByType application/x-javascript ¡°access plus 4 week¡± ExpiresByType application/x-shockwave-flash ¡°access plus 4 week¡±Remove the following <IfModule mod_alias.c> Alias /icons/ /usr/share/apache/icons/ <Directory /usr/share/apache/icons> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> Alias /images/ /usr/share/images/ <Directory /usr/share/images> Options MultiViews AllowOverride None Order allow,deny Allow from all </Directory> </IfModule> <IfModule mod_alias.c> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory /usr/lib/cgi-bin/> AllowOverride None Options ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> </IfModule> Change <Directory /> Options SymLinksIfOwnerMatch AllowOverride All </Directory> ServerSignature Off ServerTokens Prod * cd /usr/local/src * rm -rf eaccelerator-0.9.5 * tar xjvf eaccelerator-0.9.5.tar.bz2 * cd eaccelerator-0.9.5/ * phpize4 * ./configure ¨Cwith-php-config=/usr/bin/php-config4 * make * make install * vi /etc/php4/apache/php.ini and add the following: zend_extension=¡±/usr/lib/php4/20050606/eaccelerator.so¡± eaccelerator.shm_size=¡±0¡å eaccelerator.cache_dir=¡±/var/tmp/eaccelerator4¡å eaccelerator.enable=¡±1¡å eaccelerator.optimizer=¡±1¡å eaccelerator.check_mtime=¡±1¡å eaccelerator.debug=¡±0¡å eaccelerator.filter=¡±" eaccelerator.shm_max=¡±0¡å eaccelerator.shm_ttl=¡±0¡å eaccelerator.shm_prune_period=¡±0¡å eaccelerator.shm_only=¡±0¡å eaccelerator.compress=¡±1¡å eaccelerator.compress_level=¡±9¡å
View Replies!
View Related
Can't Run PHP Stable With Versions Above 5.0.3
Windows 2003 IIS6 PHP 5.0.3 and PHP 5.2.1 running with the ISAPI dll MySQL 5.1.11 I kind of have 2 problems, the first being the one in the thread title and the second is while running any version of php my main site experiences slowdowns and hangs. For some reason whenever I try to install a new version of PHP I have major problems. I have tried several times when new versions come out. I just recently tried the newest, 5.2.1, which I want to try and use, I think there are performance improvements for IIS and windows platform in the new 5.x versions? Anyway I can install 5.2.1 and get it running, and my sites load, but soon after my main site starts to hang, stops loading or loads extremely slow. I can't figure it out. I even tried using the exact same PHP.ini settings from my old working php install. So everytime I am forced to go back to the latest version that I know works with my server/sites, 5.0.3 [url] If I restart IIS the pages start loading fast again right after, even recycling the worker process that the site uses usualy makes the pages load normal again. I tried setting the worker process to recycle every 60min and to use 2 web gardens. These changes havn't really had any affect for better or worse. Downgrading back to PHP 5.0.3 seems to run a bit more stable, but even with this version I get these slowdowns now. I have been running my site(s) on this server for 3 years now and most of the time they have ran stable. -------------------------------------------------------- I was sleeping this morning and recieved a text-message saying the site wasn't loading. So I wake up and the site indeed was pretty much not loading at all. I look at permon that I left running to see this: [url] I give IIS a restart, which you can see above, then the levels go back to normal, here is a screen shot a couple minites later to what the "Current Connections" graph usualy looks like when the site loads fine. [url] During this slowdown the CPU usage was not maxing out, was maybe averaging 60% and ram was 50%. I am getting a 2nd server soon to off-load the MySQL to it and have it dedicated for that. But i don't think that will help this current issue. Here is the system resources when the site is loading fine: [url] I have around 40 or so other sites hosted on IIS and my main site "canadaka.net" which is purple on the top graph, is the only one that hangs or slowsdown. When this slowdown happens to this site, all the other sites on IIS, which are on a seperate worker process, continue to load fine. I can't figure out why these slowdowns are happening.
View Replies!
View Related
Crontab To Run PHP [without Using Wget And Lynx]
Hello, I don't know how to use crontab to run PHP without using wget and lynx 1) The PHP script can run via SSH command line mode without problem 2) I can use crontab to run the PHP script with wget or lynx. However, 3) The script will not run if i using below entry 1 2 * * * php /path/to/script/crontest.php 1 2 * * * php -q /path/to/script/crontest.php 1 2 * * * php -f /path/to/script/crontest.php 1 2 * * * /usr/local/bin/php - /path/to/script/crontest.php 1 2 * * * /usr/local/bin/php -f /path/to/script/crontest.php 1 2 * * * /usr/local/bin/php -q /path/to/script/crontest.php
View Replies!
View Related
How To Run Hyper-v Windows Vps
I want to provide some windows vps, but not sure if hyper-v is best solution. I have several questions, Q1. Is it possible to limit traffic or bandwidth for hyper-v windows vps? And is there any web GUI that can be provided to the users to manage their VPS, e.g. check the traffic had been used. Q2. About windows license, I heard that If I run a Windows DataCenter version in the main node, then I do not need license for the vps. Does it mean when I install the windows 2003 as a guest, it will no longer require us to input the CD-KEY?
View Replies!
View Related
IIS - Make PHP Run With .html Extension
I know nothing about IIS as I ormally use Linux / Apache so I'm not sure this is possible. I have built a site in PHP that the client now wants to move over to a IIS-hosted server. Although it's all in PHP because it was a re-build of an old static site I used ModRewrite to make all the page .html. I know IIS doesn't have a URL rewrite feature as such. What I was wondering is, is it possible to configure IIS so that a PHP page can have a .html extension?
View Replies!
View Related
Apache - Run Virtual Host As User
I've run into a wall trying to run apache with multiple websites allowing users to use FTPd to manage files. I'm running FreeBSD 7.1 on Apache 2.2.x The issue is that Apache runs as www:www but FTPd writes the files as username:client. When performing some scripts that edit back-end files, this obviously can cause errors. The data for each directory is stored in /home/username/www I looked into some apache directives I could use. I tried putting User and Group directives into the vhost configuration for each vhost, but that did not work. I even found the perchild module and it looked like it can do the job but was a bit scared and turned off by the fact that it states it is beta at the top of the page. (I cannot link to it because I do not have enough posts.)
View Replies!
View Related
Cheap Reliable Server That Can Run PHP/MySQL With Plesk
I currently have a decent server that runs around 10 websites, but 1 of those sites contributes around 99% of the total traffic. This large site is being moved onto a new server, leaving the remaining 9 sites rattling around on this big (and expensive!) server. So, I am now looking for a smaller server to handle the other smaller sites. They get minimal traffic - around 5k uniques a day.
View Replies!
View Related
Dedicated Server - Run Windows & Linux
Can I run both Windows & Linux on a dedicated server? I currently have a website hosted on a shared hosting Linux web server (uses PHP, MySQL). I want to use RED5, which seems a bit tricky to set up. Why Windows? I would feel more comfortable installing RED5 on a windows server (I think it'd be easier for me, no experience with Linux command line etc.). Why Linux? I'd prefer to keep the existing PHP/MySQL website on Linux because I have Apache specific settings.
View Replies!
View Related
Changing Register_globals From .htaccess Will Cause 500 Error When Php Run As CGI
Today I have a customer want to swich the register_globals on on his account ,,, i'm running PHPSuExec and running php as cgi not as Apache module , and as you know using php as cgi will cause internal error 500 if some one add php_flag register_globals on to .htaccess file. what is the soluation to switch register_globals on for his account only without using the .htaccess file. put in mind the php files that need the register_globals to be on is encrypted with zend , so we does not have access to it for modification. have any one have the solution?
View Replies!
View Related
Windows- PHP Exploit Being Used To Render All PHP Sites Useless
This has been happening for about 6 months, someone has been exploiting my windows server and causing 300 php.exe processes to run, therefore making the CPU usage go to 100% and cause all php sites to not function. It is a perl script, and I had gotten ahold of the explot, but am unsure how to block it, what the following is doing, and how to block it.. once I find the script again I will add it to the post.. I am using Plesk on my box.
View Replies!
View Related
Windows VPS To Run ASP.NET 2.0 App: Managed And Must Be Stable
I need a Windows VPS to run ASP.NET 2.0 applications because my current provider is having some issues that keep my VPS down. As i am new to Windows hosting so i need a managed plan. Another thing is that it must be stable. I usually have VPSes with Knownhost and they are really stable ( just wish they offer windows vps ). I need something like them ( uptime > 99,99% ). What options do i have?
View Replies!
View Related
Windows VPS - Run WAPT To Stress Test/load Check
I am looking for a Windows VPS, preferably inexpensive, but the primary goal is to have a fast pipe to it and be capable of running the WAPT windows load testing tool [url] I currently have a Zone VPS, and have looked using http_load, or siege from it, but they don't appear to be anywhere near as full featured ad WAPT. I need to run the tests against both a corportate website to see what our current capacity is, and want to make sure I am not bandwidth limited, as would be the case if I was testing via a T1 or DSL connection, hence the reason for wanting a Windows VPS on a thick pipe that I can run the tests on.
View Replies!
View Related
CGI Scripts(Perl/Python) Are Not Able To Run On Plesk Windows Server 2003
I have a Windows 2003 dedicated Server with Plesk Control panel I am not able to execute CGI scripts(Perl/Python/CGI) on it when I try to execute on it I get these errors: Access denied to invalid credentials 401 Error Error is 401.3 ACL restrictions.... what I tried is I have tried to change IIS settings for IUSR_name and also I tried editing in httpdconf file for CGI settings and restarted the server... but all of no use I am executing these scripts in CGI-BIN folder and outside of it..
View Replies!
View Related
Windows Host Or Specialsit ASP Host
I will be setting up a site which uses ASP.NET 1.1. I know versions 3.0/3.5 are available, but they are not yet V2.0 compliant. Anyway thst is not the issue - just context. Would like your advice as to whether it would be better to host this site with a company who looks as though they are specialising in ASP; such as DiscountASP, or Softsyhosting, or go with a general Windows hoster such as Steadfast, Fluidhosting, or 3Essentials? I know nothing about ASP, so I don't know whether it is not at all neccessary to have a host specifically knowledgable about it, as I am unlikely to ever have problems with it, OR; I will most certainly have to address ASP issues sometime, so it would be essential to have support who really knows ASP.
View Replies!
View Related
Run Php4 For .php4 Files And Php5 For .php [httpd.conf]
First off my error: apache force downloads .php4 files Background: Im attempting to run php4 and php5 at the same time. I had php 5 installed with the server when I got it. I have installed php 4 from the source like this: Code: ./configure --with-apxs=/usr/local/apache/bin/apxs --prefix=/PHP4 --without-mysql I then copied the php.ini file to /PHP4/php.ini In my httpd.conf Im loading and adding both php 4/5 modules like so: Code: LoadModule php4_module libexec/libphp4.so LoadModule php5_module libexec/libphp5.so AddModule mod_php4.c AddModule mod_php5.c Then later in the httpd.conf Im trying to tell apache to handle .php4 files with PHP 4 and .php with PHP5 Code: AddType application/x-httpd-php .php AddType application/x-httpd-php4 .php4 I restarted apache to load the new conf. .php files still use PHP5, but for some reason .php4 files are being downloaded, not running with PHP 4. If I use htaccess to application/x-httpd-php4 php, .php files also force download. What am I missing?
View Replies!
View Related
Host The Php Site
I bought a server,installed windows server 2003 and PHP 5. now, the website can be seen with local IP [url] My server is behind the router, So, I've already configured port(80) forwarding to my server in the router setting. But, The website is still not working internet.
View Replies!
View Related
PHP On Windows Server
I'm about to deploy a site that needs ASP for the main application, but my client would like to use phpBB for their forum. I initially thought we'd have to get two hosts, one Windows and one Linux. But in doing some research, I see that some Windows hosting providers also provide PHP, and I am aware that PHP can be installed to run on IIS. My question is: is PHP under Windows any different that PHP under Linux? Are there any weird work-arounds that have to be dealt with? Or is it simple and straight-forward?
View Replies!
View Related
PHP On Windows Server
Windows 2003 server with the latest updates PHP v5.2.0 I have the following setup: In... D:FTPRootData there are logons names in there which is linked to their account, i.e. when they log on via FTP, they go straight to their directory, i.e. D:FTPRootDataUSERNAME Each directory have the security set to their own account, i.e. USERNAME (SERVERUSERNAME) Recently, one of the user did something naughty and wrote an code where they can see someone else's directory and put some ranmdom generated files in there. The code in question is; &opFile = "./../username1/hello" . & random . ".txt"; Obviously I'm not going to post the full code but this should be a start. As you can see, the user managed to wrote some files in someone else's directory, even that their security setup doesn't allow it, which I suspect is part of a 'system' account. However under the "D" drive, there is no "SYSTEM" account in there, it has been totally removed. The only thing left are Administrator CREATOR OWNERS and the D:FTPRootData has the security setup as: Administrator CREATOR OWNERS FTP User Admin (FTP admin acess for webmasters) IIS_WPG Internet Guest Account In php.ini I also have these line: disable_functions = "phpinfo, passthru, system, popen, escapeshellarg, escapeshellcmd" But it is not working. So, what am I missing and how do I stop these pesky user from doing this?
View Replies!
View Related
Best Host For ASP/PHP/mySQL
My current web host (SectorLink) has been acting flaky lately so I'm in the market for a My requirements are at least 6GB of space, the ability to run multiple websites on the same account (I'm currently at 7) and ASP, PHP, and mySQL capabilities. I'd also like the price to be competitive with what I'm currently paying ($11/month) though I'm willing to go up a bit. I'm currently looking at 3 hosts, but I'm open to any suggestions. My short list right now includes: HostGator - Not a Windows host, I know (though they're working on Windows plans), but they do offer ChiliSoft ASP capabilities. This host would give me unlimited space and domains for $14.95 per month. AllReseller - This host would give me 50GB of space and unlimited domains for $11.95 a month. Aspnix - This host would give me 10GB of space and 7 domains for $7.77 a month. Has anyone used any of these hosts? What were your experiences with them? Could you recommend any other hosts? Side Question to any classic ASP developers out there: Have you used ChiliSoft ASP and, if so, how good is it at running scripts originally written for IIS?
View Replies!
View Related
Best Host For Legacy Php < 4.47 And Mysql <4.1.21
Looking for linux and the above, on shared or virtual plan. A number of sites will be on the account and can run sites without 'www' . phpmyadmin, real FTP's (non anonymous), SSH/SFTP access, decent uptime, spam filters and support in place. No outsourcing of support, and they house their own servers.
View Replies!
View Related
Best Host For PHP, MySQL Sites
I am reading the BYO Database Driven Website Using PHP and MySQL and I am ready to play around a bit. I was wondering if anyone could recommend a quality provider with this language. I have had problems with some in the past when using Joomla so I am trying eleviate that problem from the get-go.
View Replies!
View Related
Installing Ffmpeg-php On Windows
Where can i find a step-by-step guide on how to install ffmpeg-php on windows? I got totally lost while doing that. Below are the steps i'v taken so far: - Dled Windows EXT from here: http://sourceforge.net/project/showf...roup_id=122353 (ffmpeg_new.rar) - Unzipped it. -Copied all php_ffmpeg_... dlls into php's ext dir -Copied avformat.dll and avcodec.dll to system32 folder -Activated ext (i am using WAMP5) -Restarted Apache -Ran phpinfo(); and didnt see the ext activated.
View Replies!
View Related
PHP And MYSQL On Windows 2008
I am about to move my site to a dedicated server. My current site is running on PHP and MYSQL on a Linux box (shared host), but I am familiar with Windows/IIS so I decide to run the site on Windows 2008 instead of Linux on a deciated server. Before I begin to move, I would like to ask for your experience. Have anyone here ever tried PHP/MySQL on Windows server in production environment? What are the limitations (and/or performance issues) when running PHP/MySQL on Windows?
View Replies!
View Related
Installing PHP Onto A Windows Server
I designed my companies website but we've had a change in IT and php went down. The new guy (who is here to fix things) just sent me this and quite frankly I'm at a loss (i use a VPS, thus never having to deal with this stuff). But seeing how it's my own company I figured I'd try to help. Here is the question: Quote: You are running IIS (windows server). The PHP should be something straight forward, but as we see it is not... Previously, you had PHP ver PHP 5.2.6 dated may 2008. - it wasn't working correctly. I updated it with the latest version php-5.2.9-1 dated march 2009. - and now the PHP is not functioning. My questions, if you know was to figure which option of PHP cgi are you using. IIS ISAPI module IIS FastCGI IIS CGI Then, when installing the PHP, there are many extensions that are optional to install. Do you know or can you tell me, which extensions are needed by your app? Honestly, the website just uses a few php includes to template it (and make my life easier). And that's what were trying to get working.
View Replies!
View Related
PHP/Database Performance On Windows
I've got an app that I've built using FastCGI, PHP, MS SQL and it's currently running on a single IIS 6 (Win2K3) server. The MS SQL database is very large and some of the pages return large result sets so I've also installed memcached to cache the data. Right now the web app and the database are both running on the same server. I'm looking at moving the database to a 2 node cluster, and the web server to it's own 2 node cluster for higher availability. But I've got a couple of questions: 1. Would IIS 7 (Windows 2008) be faster than IIS 6 (Windows 2003)? 2. Would Apache (on Windows) be faster than IIS? 3. Can Apache be clustered? 4. Would it make more sense to have a load-balanced pair for the web servers instead of an active-active cluster? 5. How does IIS 7 Kernel Mode caching compare to using memcached? 6. Would there be any decrease in performance if the database is running on another machine instead of the same machine as the web app? 7. Should memcached run on the web servers (which will be storing and retrieving the data), on the database servers (which actually has the data), or on it's own dedicated server?
View Replies!
View Related
How Use Php Include On Windows Server!
I am running a Windows 2003 with PLESK on it which has php support. But i am not able to "include" .php pages into my .html pages or .php into .php. Like on Linux servers we use phpinclude() to include .php pages n .html, but its not working on Windows server for me.
View Replies!
View Related
PHP Error_logs Per Site On Windows
How does one setup the PHP "log_errors" and "error_log" in php.ini to create a seperate php error log for each site? Preferably in the sites root folder. I am on a windows 2003 server with IIS, so i'm not sure if thier is any special considerations with that setup.
View Replies!
View Related
Free PHP Host With .htaccess Support?
I'm looking for a free web host to host my portfolio. I need: 1) Php/MySQL Support 2) .htaccess support, so I can have search-engine-friendly URLs. 3) Preferably I'd like there to only be a text/graphic ad at the bottom of the page, or to be able to pay a small fee and have the ad removed. (No popups) Is there any such host available, or can any of you guys here who sell web hosting set me up with one such account?
View Replies!
View Related
Need Windows Host (have Some Requirements)
I need some help finding a reliable windows host. I haven't hosted on windows in a long time, and I don't know how to choose. These are the specs: Requirements: * Windows hosting * PHP GD library (installed on most hostings) * Permissions to execute third-party applications (i.e. exe files) * Permissions to execute Internet Explorer I've used Jodohost before and they were ok. Also was considering weberz.com, but I don't if either will meet these requirements. Any ideas?
View Replies!
View Related
|