News:

Go to HostNed.com
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

#166
General Hosting / Re: Disguising a URL ?
May 06, 2009, 06:26:33 PM
Well, one way  that comes to mind is to make a temporary default page and in that page make it nothing but an Iframe.  Maybe something like this:


<iframe src="http://www.acme.com" name="surprise" scrolling="auto" frameborder="no" align="center" height = "100%" width = "100%">
</iframe>
#167
Advertising Boards / Custom Stickers and T-shirts
April 26, 2009, 10:21:44 AM
I discovered a cool service named ImpressionShop.com where you can create your own custom products.  I have made a few different oval sticker designs and I am very impressed by the quality of the decal.  Also the selection is impressive.  Hundreds of products like mousepads, hats, jewelery, thumb drives, magnets, watches and all kinds of stuff.  Cheaper than Cafepress, way bigger selection and less expensive than Zazzle too, so I believe they are a great alternative. :)  I recommend!

Coupon: Free Shipping with code xg78tws
#168
Please open a support ticket for this.  I do not think it is a thing that can be resolved over the forum here.
#169
Yes, you can use either Linux or Windows server (I recommend LINUX!)
#170
Scripting / Re: [How To] Making a form field required
February 13, 2009, 10:52:53 AM
You have an error in your Javascript.  Change

function ValidateContacto)

to

function ValidateContacto()
#171
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 :)
#172
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. ;)
#173
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 :)
#174
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
#175
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
#176
General Hosting / Re: Incorrect Password
October 08, 2008, 08:33:41 AM
Open a support ticket in the MyHostNed area for that.
#177
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.
#178
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.
#179
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>
#180
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?