Status
Not open for further replies.

HixxoHosting

Banned
Banned
17
2011
0
0
Looking for someone to setup a vps for me

i just need the following installing and configuring on a fedora vps

php
mysql

i need to be able to host 1 website with 1 mysql database,

it also needs the following installing

ffmpeg
flvtool

im new to setting up a vps so any help would be great ?
 
Last edited:
21 comments
ok i have managed to do the following,

install nginx
install mysql
install php

but when i try to open a php page it just allows me to download the php file
 
this is the command i have used to install php

# yum install php-pear-Net-Socket php-pear php-common php-gd php-devel php php-mbstring php-pear-Mail php-cli php-imap php-snmp php-pdo php-xml php-pear-Auth-SASL php-ldap php-pear-Net-SMTP php-mysql
 
i have also tried restarting the vps nothing happens, still the same thing

__________________
Added after 4 minutes:

would anyone be willing to login and have a look for me ?
 
Last edited:
Ok So ,

Enter :
nano /etc/nginx/nginx.conf
Find :

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { #root /usr/share/nginx/html; #fastcgi_pass 127.0.0.1:9000; #fastcgi_index index.php; #fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; #include fastcgi_params; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one #
Then uncomment the code so it looks like this :


# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; include fastcgi_params; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # location ~ /\.ht { deny all; } }

See how some # in the code have been uncommented ?

Then restart Nginx :

/etc/init.d/nginx restart
 
Last edited:
reinstall your vps,and install Kloxo (Lxadmin) panel which is a free panel.
it automatically installs all the thing u require to run your website like webserver,php,mysql,php-mysql,ftp server and mail server
 
Status
Not open for further replies.
Back
Top