Should it take this long?

Status
Not open for further replies.

kyrctyn

New Member
Messages
14
Reaction score
0
Points
0
I made my site at 9:15 last night and it's been well over 24 hours since then and I still cant access my site. I can access my cpanel and I've cleared both catches several times, but still nothing. Should it be taking this long or is something up?
 

Skizzerz

Contributors
Staff member
Contributors
Messages
2,929
Reaction score
118
Points
63
I see an "Index of /" page when viewing your site. Make sure you upload your site's files to your public_html directory.
 

kyrctyn

New Member
Messages
14
Reaction score
0
Points
0
You see that? When I try to access it, it goes to the 'Website Coming Soon' page :/
 

kyrctyn

New Member
Messages
14
Reaction score
0
Points
0
I can get to the site now and I see two files, but both show an error when I click on them :/
 

hbazer

Member
Messages
398
Reaction score
7
Points
18
Do you have a file named [ index.(something) ] in your folder [ public_html ] ?
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
but both show an error when I click on them :/
Your Mysdia script appears to require a MySQL database connection, which you need to configure.
Please see this wiki article for information on how to do this.
Once you have created a MySQL database, user, and then assigned the user, you then need to edit your Mysdia configuration file accordingly. :)

Your cgi-bin cannot be plainly clicked on by itself (due to security reasons). Your cgi-bin is a special folder for you to put certain types of script in. You probably don't need to use this for your Mysdia site.
 

kyrctyn

New Member
Messages
14
Reaction score
0
Points
0
Your Mysdia script appears to require a MySQL database connection, which you need to configure.
Please see this wiki article for information on how to do this.
Once you have created a MySQL database, user, and then assigned the user, you then need to edit your Mysdia configuration file accordingly. :)

Yes, the Mysidia site included that in the tutorial, so I've already done that.
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Please see:
SQLSTATE[HY000] [2003] Can't connect to MySQL server on 'DBHOST' (110)

Please check your Mysdia database configuration, since it seems to be trying to connect to 'DBHOST' instead of 'localhost'. Have you definitely set your database configuration.
 

ezadx10b

New Member
Messages
29
Reaction score
0
Points
1
make index.php file on public_tml and use this code.

<?php
if (!empty($_SERVER['HTTPS']) && ('on' == $_SERVER['HTTPS'])) {
$uri = 'https://';
} else {
$uri = 'http://';
}
$uri .= $_SERVER['HTTP_HOST'];
header('Location: '.$uri.'/Mysidia Adopts Script/');
exit;
?>

This will redirect to Mysidia Adopts Script folder..
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
@ezadx10b HTTPS isn't supported on x10 free hosting anyway as far as I'm aware, so you could just use:

Code:
<?php
header("Location:Mysdia Adopts Script/");
?>

Or even just use a HTML file with a Meta tag:

Code:
<html>
<head><meta http-equiv="refresh" content="0; url=/Mysdia Adopts Script/"></head>
<body></body>
</html>
 

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
In cPanel File Manager in the top left corner please click "New File" and then name it "index.php".

You can then edit your newly created file by selecting it and clicking on the "Code Edit" button at the top.
 
Status
Not open for further replies.
Top