News:

Go to HostNed.com Home
Welcome.  This is a place to get user-to-user support, learn more, and share ideas.  If you can't find your answers here, feel free to ask by creating a new topic or visit the support ticket system at https://my.hostned.com :)  Have fun here!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Dynaweb

#181
Looks cool.  I will have others in management look at this.  We are pretty happy with the one we are using now, but your style is very good.  I will certainly have some tasks for you and will PM you :)
#182
Hi,

Sorry to hear about the trouble at your old host.  I am sure you will find the HostNed community helpful.  Well, about your issue.  Usually when you upload website files from your computer to the web server (using FTP) the files are copied/pasted over, not cut/pasted over.  So there is a chance they are still on your PC somewhere.

Also, you mentioned changing teh nameservers and waiting 24 hours.  24 hours is USUALLY enough time, but there are some times (randomly) when it takes up to 3 days, so that MAY just be what you are experiencing here.

Hey, can you post the URL to the new site here and we can take a look and see if it loads for us. ;)
#183
Introductions / Re: Hello, Im back again!
December 09, 2008, 04:24:18 PM
Welcome back!  Go ahead and post what your services are and the best way to contact you :)
#184
For a limited time get double the space and No setup fees on SDL Series hosting accounts.

These accounts now feature unlimited add-on domains and dedicated IP address!

http://www.hostned.com/purchase_sdl-pro_hosting.htm
#185
General Hosting / Re: WHERE To Start ( again ) ???
October 18, 2008, 11:29:16 AM
I think these two links can get you back going pretty well.

Plan details, usernames, server details:
http://www.hostned.com/setup/

Account details:
https://my.hostned.com
#186
General Hosting / Re: Incorrect Password
October 08, 2008, 08:33:41 AM
Open a support ticket in the MyHostNed area for that.
#187
Plesk and Cpanel handle things very differently and SSL is one of those things.  Cpanel requires a dedicated IP address for domains installing proper SSL certificates (non-shared) on them.  If you have not already purchased the SSL Basic (or SSL Complete) add-on from HostNed then the button will not even appear.
http://www.hostned.com/optional.htm

Since HostNed is going the Cpanel direction now, the plan details  are changing a little bit, but I think the deal is that with Custom Series plans you need the add-on and with SDL-Power accounts it comes with SSL Basic but you probably need to request it through support ticket though.
#188
Graphics and Images / Re: Graphics Programs
February 05, 2008, 09:40:14 AM
I do not buy or pirate Photoshop, that's why I use Ulead.  It is very nice indeed.  I am actually learning GIMP and I use it exclusively on my Linux computer, but it is slow going learning a new graphics proggie.
#189
Here is a quick and easy PHP script that will virtually list contents of any directory that it is placed in.  Very easy and very handy and tested to work on HostNed FH1 server system (where .htaccess will not work).


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>FileBrowser</title>

<style>

body {
font-family:Arial, Helvetica, sans-serif;
font-size:14px
}

.current_dir {
font-size:18px;
font-weight:bold
}

</style>

</head>

<body>
<center>
<div style="text-align:left; width:740px">
<div class="current_dir">
<?php
error_reporting
(E_ALL);
$dir_name explode("/"dirname(__FILE__));
if(isset(
$_GET['dir']) and file_exists($_GET['dir'])){
echo 
"./".$dir_name[count($dir_name)-1]."/".trim($_GET['dir'], "./")."/";
} else {
echo 
"./".$dir_name[count($dir_name)-1]."/";
}
?>

</div><br/>
<table border="1" cellspacing="0" cellpadding="2">
<tr><td width="40"><b>Type</b></td><td width="200"><b>Filename</b></td><td width="100"><b>Size</b></td><td width="300"><b>Date Modified</b></td><td width="100"><b>Permissions</b></td>
</tr>
<?php

// Settings //////////////

/* Only allow users to view the same directory this file is placed in. false: let users browse all directories */
$current_dir_only false;

/* Hide certain file types. Example: $hide_files = array("php", "txt"); */
$hide_files = array();

//////////////////////////

if(isset($_GET['dir'])){
$dir $_GET['dir'];
} else {
$dir ".";
}

if(
$current_dir_only == true){
$dir ".";
}

if (
is_dir($dir)) {
    if (
$dh opendir($dir)) {
        while ((
$file readdir($dh)) !== false) {

if(
$file == ".." and isset($_GET['dir'])){
$back explode("/"$_GET['dir']);
unset($back[count($back)-1]);
$link implode("/"$back);
} else {
$link $file;
$back = array();
}

// if dir exists, make the link to it
if(is_dir("./$dir/$link/")){
$link "$dir/$link";
}

// .. link problem
if(count($back)-== and is_dir("./$dir/$link/")){
$link "";
} else {
$link "dir=$link";
}

// as not to make ../dir/../beginning
if($file == ".." and count($back) == 1){
$link "";
}

// link to file or dir
if(is_file(trim("$dir/$file""dir="))){
$link trim("$dir/$file""dir=");
} else {
$link "?{$link}";
}

if(
is_file(trim("$dir/$file""dir="))){
$filesize round(filesize($link)/10002);
$filesize .= "KB";

$modified date("j/m/y h:i"filemtime($link));

$type explode("."$file);
$type $type[count($file)];

$perm substr(sprintf('%o'fileperms($link)), -4);

} else {

$dirname trim("$dir/$file""dir=");

$filesize "&nbsp;";
$modified "&nbsp;";
$type "Dir";

if(
file_exists($dirname)){
$perm substr(sprintf('%o'fileperms("$dirname")), -4);
}
}

if(
$link == "?dir=./"){
$link "?dir=../";
}

if(
$current_dir_only == true and $type == "Dir"){
$show_dir 0;
} else {
$show_dir 1;
}

if(!isset(
$_GET['dir']) and $file == ".."){
$no_go_back true;
} else {
$no_go_back false;
}

if(
$file != "."){
if(
$no_go_back == false){
if(
$show_dir != 0){
if(!
in_array($type$hide_files)){

echo "<tr><td>$type</td><td><a href=\"$link\">$file</a></td><td>$filesize</td><td>$modified</td><td>$perm</td></tr>\n";
}
}
}
}
}

        
closedir($dh);
    }
}


?>

</table>
</div>
<br />
<!-- Do not remove this notice -->
Powered by <a href="http://www.publicwarehouse.co.uk">FileBrowser</a> &copy; Copyright 2007 Peter Bailey
<!-- Do not remove this notice -->
</center>
</body></html>
#190
Linux Hosting / Re: .htaccess
December 01, 2007, 01:26:53 AM
Mod_rewrite is active and functional on that server.  Are the rules you have active axactly as you posted here or is that just a generic example?
#191
Linux Hosting / Re: Where/how to access cpanel?
December 01, 2007, 01:21:04 AM
Try https://yourdomainnamehere.com:2083/
#192
Linux Hosting / Re: .htaccess
November 30, 2007, 11:35:32 AM
Which server is your site on?
#193
Linux Hosting / Re: Sub Domains
November 24, 2007, 12:49:01 PM
A subdomain is a way to divide your site into sections with short and easy to remember names. Other use of subdomains might be to let somebody else use your account, since subdomains can produce their own level of security, access, and stats.  The way they are implemented depends on your control software (Plesk and Cpanel handle subdomains in different ways) so refer to the documentation of the control panel software or provide more info here.
#194
SPECIAL:

Now through end of November, No Setup Fees on New Hosting Accounts at HostNed

No coupon code necessary.  Discount is automatic at checkout.
#195
If you manage your domain names yourself, here is a great special for you

Current Sale at DomainsNed:

.info domains = $1.99 / year
.com domains = $6.95 / year

Plus many extras.
http://www.domainsned.com/