Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > BlueVoda Website Builder Forums > Saving, Naming, Previewing and Publishing

Notices

Saving, Naming, Previewing and Publishing Discussions and help with saving, naming and publishing your pages with the BlueVoda Website Builder.

Reply
 
Thread Tools
  #1  
Old 09-02-2009, 07:01 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Any idea what this is?

At the top of www.havasu-fun.com/havasu-events.html -

0) { $upload_DstName[$i] = $prefix . "_" . str_replace(" ", "_", $_FILES[$key]['name']); $upload_SrcName[$i] = $_FILES[$key]['name']; $upload_Size[$i] = ($_FILES[$key]['size']); $upload_Temp[$i] = ($_FILES[$key]['tmp_name']); $upload_Type[$i] = ($_FILES[$key]['type']); $uploadlink[$i] = "$upload_folder/$upload_DstName[$i]"; $upload_fieldname[$i] = $key; $upload_fieldname_final[$i] = ucwords(str_replace("_", " ", $key)); $fieldvalue[$i] = $uploadlink[$i]; $i++; } if ($upload_Size[$i] >= $max_filesize) { $error .= "The size of $key (file: $upload_SrcName[$i]) is bigger than the allowed " . $max_filesize/1024 . " Kbytes!\n"; } } $crack[0] = '\n'; $crack[1] = '\r'; $crack[2] = "%0a"; $crack[3] = "%0d"; $crack[4] = "content-type:"; $crack[5] = "to:"; $crack[6] = "cc:"; $crack[7] = "bcc:"; $crack[8] = "mime-version:"; $crack[9] = "x0a"; $crack[10] = "x0d"; foreach ($_POST as $key => $value) { for ($k = 0; $k < count($crack); $k++) { if (substr_count(strtolower($value), $crack[$k])) { $error .= "The field $key contained e-mail headers ($crack[$k]) in the value submitted. This seems to be a cracking attempt and the message has not been sent.!
"; } } } if ($error) { $errorcode = file_get_contents($error_url); $replace = "##error##"; $errorcode = str_replace($replace, $error, $errorcode); echo $errorcode; exit; } $uploadfolder = basename($upload_folder); for ($i = 0; $i < count($upload_DstName); $i++) { $uploadFile = $uploadfolder . "/" . $upload_DstName[$i]; if (!is_dir(dirname($uploadFile))) { @RecursiveMkdir(dirname($uploadFile)); } else { @chmod(dirname($uploadFile), 0777); } @move_uploaded_file($upload_Temp[$i] , $uploadFile); chmod($uploadFile, 0644); } $internalfields = array ("submit", "reset", "filesize", "upload_folder", "send", "captcha_code"); $message .= "\n"; foreach ($_POST as $key => $value) { if (!in_array(strtolower($key), $internalfields)) { if (!is_array($value)) { $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . "\n"; } else { $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . "\n"; } } } if (count($upload_SrcName) > 0) { $message .= "\nThe following file have been uploaded:\n"; for ($i = 0; $i < count($upload_SrcName); $i++) { $message .= $upload_SrcName[$i] . " Link: " . $uploadlink[$i] . "\n"; } } mail($mailto, $subject, stripslashes($message), $header); header('Location: '.$success_url); exit; } ?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 09-02-2009, 07:24 AM
Collectors-info's Avatar
General
 
Join Date: Feb 2006
Location: London (UK)
Posts: 7,534
Default Re: Any idea what this is?

http://www.havasu-fun.com/havasu-events.php

Its the php.
__________________
Regards Chris,
Sites are view in FF & IE, with res @ 1024 x 768 on 19” screens.

Barnet walks
How to ask for help on the forum. - VH prices. - BV Tutorials. - Using PIXresizer - Image/Photo Tips -
Collectables, Collecting


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 09-02-2009, 09:04 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Yes, and the page properties were switched back to html, saved, and then published successfully but that's still there. Is there another way to get rid of it?

I have 2 pages like this, www.havasu-fun.com/havasu-events.html and www.havasu-fun.com/havasu-activities-and-tours.html which finally uploaded but when it did it had this on the top of the webpages, and it remains even after switching to html and reuploading to the web.

Customer support told me they were supposed to be in php. I checked the video tutorial and that's not correct. This is what customer support told me:

"This is caused by saving the form page as .html, you need to open the form page in Bluevoda, go to page properties by right clicking on a blank area of page, change the encoding to php, publish the page, update links to php page and remove old HTML page."

I was going along pretty good building my website and uploading pages until I decided to change the layout of the navigation bars. After making changes, including filling in metatags and choosing a scroll bar color, I also added a form on some pages, and then saving and publishing, all the problems started with a few of the pages. Some pages loaded up just fine, others either kept the same old page or only did some of the changes - like everything but the scroll bar color. Now I have this html stuff at the top of the problem pages.

The problems just keep getting worse.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 09-02-2009, 09:18 AM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

Both pages have been published with the .html extension and the .php extension. Only the .php versions will work correctly, because the pages have forms for people to fill out--forms require php, which allows two-way communication; html does not. Because you have two versions of each page, the net will "get confused" so to speak. Use FTP Manager (under "Tools") to delete the html versions from the server. Any links on any pages you've created must be changed to refer to the proper .php versions.

Here are the links to the working pages:

http://www.havasu-fun.com/havasu-events.php

http://www.havasu-fun.com/havasu-act...-and-tours.php
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 09-02-2009, 09:21 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Also, if you copy and paste the html stuff at the top of the page, search it in Yahoo, every kind of website comes up, you can click on them and many show this exact same thing at the top of the webpage, scroll down and it becomes the normal webpage.

I clicked to see the html of the problem pages on my site and none of what's showing at the top of the webpage is in the html of the page itself.

I'm really confused as to how to fix this and get it all working right again, I'm spending hours and hours trying to solve these problems, not getting anywhere, can't finish building my site until these problems are resolved. Several of the pages on my site will be getting regular updates, weekly and monthly. Is this going to be an ongoing problem?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 09-02-2009, 09:25 AM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

See post above :)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old 09-02-2009, 09:29 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Tom, we must've posted at about the same time, I didn't see your post before my last post posted. Okay, I'll try that and report back, I was wondering though, on the second link you gave me is the picture missing from the top left (white box, red X)? It is when I opened it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 09-02-2009, 09:32 AM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

No, all images work. Everything looks good to me. Nice design.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old 09-02-2009, 09:35 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Okay, thanks. Well I clicked on tools, then ftp manager, and everything listed down the left is a bvp file, doesn't show any php or html pages. And let me add, ftp and the like is a foreign country to me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10  
Old 09-02-2009, 09:38 AM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

OK--give me a few minutes to make an image for you to look at...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #11  
Old 09-02-2009, 09:52 AM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

This shows the FTP Manager connected. The righthand pane is currently showing folders (and files if you could see the whole list) in my public_html folder. Once you get there, look for the two pages you want to delete (the html versions). If by chance you delete a wrong file, just publish it again and you're good.



Hope that helps
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #12  
Old 09-02-2009, 10:23 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Thank you for the excellent image. That helps. Can I ask though, the pages I have that are working and I haven't had problems with show as html in this list. The only 2 that have php as well as html are the 2 problem pages. Wouldn't all the pages be php?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #13  
Old 09-02-2009, 10:39 AM
Master Sergeant
 
Join Date: Aug 2009
Posts: 61
Default Re: Any idea what this is?

Well regardless, it's working now and I thank you from the bottom of my heart!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #14  
Old 09-02-2009, 06:16 PM
Tom Finley's Avatar
Brigadier General
 
Join Date: Mar 2008
Location: Kauai, HI
Posts: 1,064
Default Re: Any idea what this is?

:)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off



All times are GMT +1. The time now is 05:25 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203