Jump to content

cbtshare

Members
  • Posts

    21
  • Joined

  • Last visited

    Never
  • Speed Test

    My Results

About cbtshare

  • Birthday 01/01/1

Profile Information

  • Gender
    Not Telling

cbtshare's Achievements

Jr. Member

Jr. Member (3/10)

0

Reputation

  1. cbtshare

    hosting

    I have a file hosting website , , gettin 1000 hits a minute, it constanly crashes apache and downloads and uploads are slow, with a 100mb connection maxed out 2Tb of bandwidth.Anyone know any good affordable hosting services out there that can handle that?
  2. what antivirus an spyware software are you using? Use them an do a couple scan (in safe mode preferably)
  3. cbtshare

    website issues

    Bless ppl, I have a website built in perl.I'm running it on apache 2.I have installed the site and databases properly ,the html files are ina a folder in the native CGI folder in apache called Templates.When I go to my website address the site is suppose to show up, but it doesnt, I have to go to www.myaddress.com/cgi-bin/index.cgi for the index file of the website to show.I have this httaccess file also that should map everything RewriteEngine on RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^(.*) - [E=HTTP_CGI_AUTHORIZATION:%1] RewriteRule ^$ /cgi-bin/index.cgi [L] RewriteRule ([0-9A-Za-z]{12})-del-([0-9A-Za-z]+)/.+$ /cgi-bin/index.cgi?del=$1-$2 [L] RewriteCond %{REQUEST_FILENAME} !-f #RewriteRule ^([0-9A-Za-z-_]*)/?([0-9A-Za-z]{12})(.html?|$)$ /cgi-bin/index.cgi?op=download1&usr_login=$1&id=$2 [L] #RewriteRule ^([0-9A-Za-z-_]*)/?([0-9A-Za-z]{12})/([^/]*)(.html?|$)$ /cgi-bin/index.cgi?op=download1&usr_login=$1&id=$2&fname=$3 [L] RewriteRule ^([0-9A-Za-z]{12})(.html?|$)$ /cgi-bin/index.cgi?op=download1&id=$1 [L] RewriteRule ^([0-9A-Za-z-_]*)/?([0-9A-Za-z]{12})(/[^/]*|$)(.html?|$)$ /cgi-bin/index.cgi?op=download1&usr_login=$1&id=$2&fname=$3 [L] RewriteRule ^checkfiles.html$ /cgi-bin/index.cgi?op=checkfiles [L] RewriteRule ^contact.html$ /cgi-bin/index.cgi?op=contact [L] RewriteRule ^premium.html$ /cgi-bin/index.cgi?op=payments [L] RewriteRule ^login.html$ /cgi-bin/index.cgi?op=login [L] RewriteRule ^catalogue(.*).html$ /cgi-bin/index.cgi?op=catalogue&date=$1 [L] RewriteRule ^news([0-9]*).html$ /cgi-bin/index.cgi?op=news&page=$1 [L] RewriteRule ^n([0-9]+)-.*.html$ /cgi-bin/index.cgi?op=news_details&news_id=$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([0-9A-Za-z-_]{4,64})(/[^/]*/?|$)$ /cgi-bin/index.cgi?op=user_public&usr_login=$1&fld=$2 [L,NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([a-z0-9-_]+).html(.*) /cgi-bin/index.cgi?op=page&tmpl=$1$2 [L] ErrorDocument 404 /404.html but it doesnt work. Help anyone
  4. cbtshare

    "Script"

    :2funny: :2funny: :grin: :haha:
  5. umm, but that would make no sense because I had 2003 server up and it worked fine.So not sure...
  6. well I got the server to start. but i had to change the port to listen to from port 80 to 85.The funnt thing is I dont have to type in www.myaddress.com:85 , and it works fine.Why is this?
  7. This is taking along time as I am not the owner for this service,but I will call and bug them again today.(For those interested)
  8. hey waz up, I recently installed Fedora 10.I'm configuring it as web server.I'm done installing all the stuff and given all the permissions but when I'm to start apache, I get this error. [root@server1 usr]# /etc/init.d/httpd start Starting httpd: (98)Address already in use: make_sock: could not bind to address 192.168.0.141:80 no listening sockets available, shutting down Could anyone please help? Thank you.
  9. yea it does, but just so that I can show you how would i go about proving that?I've done this setup a couple times where the server doesnt have a static IP , but it has root hints configured with public DNS ip's as well.
  10. thak you very very much IT guru swimmer!! it worked. **little note** when installing php you have to copy the php.ini file into windows system32 as well, but dont edit that one.Edit the one in your php folder...(Just incase anyone else has this issue.) Thanks ALOT Everyone
  11. Well I went to DNS.net and it sed the dns was good.So I'm stumped ,really sure
  12. here ya go http://ontariowiz.com/test.php
  13. still didnt work, I keep getting error @ mysql_connect("server", "root", "paws") or die(mysql_error());
  14. wow never read that anywhere, where would I find the mysql.dll to copy(guessin in the mysql folder)..will try and get back to you. Thanks
  15. Hey sup, I have installed apache 2.2 on windows and mysql as well.I created a database and also a function , but I cant seem to connect to the database via the browser.(I installed php on apache as well)this is what I have and the error i'm getting. <code> <?php // Connect to the database $dbhost = 'localhost'; $dbusername = 'root'; $dbpasswd = '***'; $database_name = 'simple'; $connection = mysql_connect("$dbhost","$dbusername","$dbpasswd") or die ('Couldn't connect to server.'); $db = mysql_select_db("$database_name", $connection) or die('Couldn't select database.'); // Generate SQL code to store data on database. $insert_sql = 'INSERT INTO simple_table (text) VALUES ('test text, 1,2,3')'; // Execute SQL code. mysql_query( $insert_sql ) or die ( 'It Didn
×
×
  • Create New...