Upload a site using wamp server
Posted by: Amrish (117.207.209.---)
Date: October 10, 2014 07:43AM

Sir/Madam
I have developed a website on wamp server but I dont know to upload it. Please help me to upload it on godaddy account. Thank you.

Options: ReplyQuote
Re: Upload a site using wamp server
Posted by: RiggsFolly (---.dynamic.dsl.as9105.com)
Date: October 10, 2014 10:07AM

See the GoDaddy help system [support.godaddy.com]

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote
Re: Upload a site using wamp server
Posted by: Emmy wilson (197.157.17.---)
Date: October 13, 2014 12:36PM

Hi I have a WAMP server where some files are upload into an specific path.
C:\wamp\www\upload\

in this case. However could it be possible to upload these files into for example
D:\Documents\User\upload ?
Upload.php specifies the path where the files are stored but I haven´t the way of changing to another path.
Thanks

Edit: upload.php
Here is the upload_file.php
<?php
$target_path = "c:\\";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "El fichero ". basename( $_FILES['uploadedfile']['name'])." ha sido enviado";
} else{
echo "Hubo un error, inténtalo de nuevo!";
}
?>

Options: ReplyQuote
Re: Upload a site using wamp server
Posted by: RiggsFolly (---.dynamic.dsl.as9105.com)
Date: October 13, 2014 12:57PM

Yes, just change the code to point to the new directory.

---------------------------------------------------------------------------------------------
(Windows 10 Pro 64bit) (Wampserver 3.3.4 64bit) Aestan Tray Menu 3.2.5.4
<Apache versions MULTIPE> <PHP versions MULTIPLE> <MySQL Versions MULTIPLE>
<MariaDB versions MULTIPLE> <phpMyAdmin versions MULTIPLE> <MySQL Workbench 8.0.23>

Read The Manuals Apache -- MySQL -- PHP -- phpMyAdmin
Get your Apache/MySQL/mariaDB/PHP ADDONs here from the WAMPServer alternate Repo
-X-X-X- Backup your databases regularly Here is How dont regret it later! Yes even when developing -X-X-X-

Options: ReplyQuote


Sorry, only registered users may post in this forum.