Quantcast
Channel: WampServer - WampServer English
Viewing all 3234 articles
Browse latest View live

menu item online / offline (no replies)

$
0
0
hi guys,

right now i have installed wampserver 3.2.0 on my windows10 64 bit os i cant not find out the menu item:online /offiline from the wamp setting

PHP Code not running - All services started (GREEN) (no replies)

$
0
0
I am new to WAMP. I installed the latest version after I installed all the prerequisites. I do not have SKYPE installed.

I have PHP code, where I upload a file with a products SKU#, its reads the CSV, and then searches a site for a product title and price.Once its done it exports a CSV with the product title and price and SKU#. I have seen this code work, but cant get it to function on my instance of WAMP.

I ran through the troubleshooting guide to no avail.

Curl is turned on.


I am on Windows 10. Have McAfee Internet Security Installed (i tired to turn it off and run WAMP, still no luck).


simple PHP instructions work fine.. I think its the CURL.... how can I trouble shoot?


Any suggestions?

Fresh WAMP install, PHPMyAdmin error messages (1 reply)

$
0
0
I had some errors in my previous WAMP install so I thought... lets install a new version. Uninstalled the old one, removed the old folder and made a fresh install.

It started up right away (how nice) but when going to PHPMyAdmin I immediately got the error messages back again:

Deprecated: Array and string offset access syntax with curly braces is deprecated in D:\wamp64\apps\phpmyadmin4.6.4\libraries\url_generating.lib.php on line 231

and

Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in D:\wamp64\apps\phpmyadmin4.6.4\libraries\DatabaseInterface.php on line 466

Any idea what is going wrong or more important, how to fix this errors?

increase width of colums showing the content of the project directory (1 reply)

$
0
0
How and where can I change the width of each colum showing the content of the project directory.

Your advice is welcome!

Regards Wolfgang

Project Link (1 reply)

$
0
0
on localhost the project folder link are not working ( unable to click on link ).
"need to add as http link" this is written in project folder

Issue on tray icon (no replies)

$
0
0
When we do something from tray icon i.e. reload/restart server, or enable/disable php modules or anything, that causes the tray icon to change color,
and while it starts chaning color and if we mouseover the tray icon, it freezes the operation..
i think the mouseover even should be in separate thread or like that, not to interfere with ongoing action

Trouble Shooting PHP Code (no replies)

$
0
0
I have a page (input.php) that will allow a user to upload a CSV file. This file has 5 columns (SKU, Product, Quantity, Retail Price, and Total Retail Price). The CSV upload will only have the SKU number and Quantity filled in.

When the user hit upload the (import.php) page is suppose to go to the site and pull the product up by searching the SKU number and pulling the price and product (brand and title).

I paid a freelancher to create this code. I watched it work on his machine. I cant seem to get it to work on mine (wont pull price or product) and he is non-responsive now. Any help would be greatly appreciated!!

Edit: see notes for trouble shooting that I have already tried.


<?php
ini_set('max_execution_time', 0);
error_reporting(0);
move_uploaded_file($_FILES["file"]["tmp_name"], "upload/". $_FILES["file"]["name"]);
$handle = fopen("upload/". $_FILES["file"]["name"], "r");
$file = '';
$line .= "SKU,Product,Quantity,Retail Price,Total Retail Price";
$file .= $line . PHP_EOL;
for ($i = 0; $row = fgetcsv($handle ); ++$i) {
// Do something will $row array
if($row[0]!="" AND $i>0)
{
$line="";
#echo "<pre>";
#print_r($row);
$SKU=$row[0];
$quantity=$row[2];
$loop=1;
do{
$url = "[www.homedepot.com];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 1);
$response = curl_exec($ch);

$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$headers = substr($response, 0, $header_size);
$body = substr($response, $header_size);
curl_close($ch);

header("Content-Type:text/plain; charset=UTF-8");
$headers_arr = explode("\r\n", $headers);
$str=$headers_arr[5];
$arr=explode(":",$str);
$check=trim($arr[0]);
#echo $check; ### remove troubleshooting
if($check=="location")
{
#echo "Dustin"; ## remove troubleshooting
$productPageLink=$headers_arr[5];
$productPageLink=str_replace("Location:","",$productPageLink);
#echo $productPageLink; ## troubleshooting -- seems to be getting the links
$productPageLink=trim($productPageLink);
$productPageLink=str_replace("http:","https:",$productPageLink);
#echo $productPageLink; ## troubleshooting -- still seems to have links

$ch = curl_init();
#echo $ch; ##troubleshooting -- prints out "resouce id"
curl_setopt($ch, CURLOPT_URL, $productPageLink);
#echo $ch; ##troubleshooting -- prints out "resouce id"
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_ENCODING, 'gzip, deflate');
$headers = array();
$headers[] = 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:70.0) Gecko/20100101 Firefox/70.0';
$headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
$headers[] = 'Accept-Language: en-US,en;q=0.5';
$headers[] = 'Upgrade-Insecure-Requests: 1';
$headers[] = 'Connection: keep-alive';
$headers[] = 'Te: Trailers';
#echo $headers; ##troubleshooting -- ## Troubleshooting -- prints out "Array"
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

$result = curl_exec($ch);
#echo $result; ### troubleshooting - doesnt have any data
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch); # it end inside this if statement, however no error is printed
}
curl_close($ch);
preg_match_all('/<h2 class="product-title__brand" itemprop="brand" data-component="clickable brand link">(.*?)<\/h2>/s', $result, $output_array_brand);
#echo "<pre>"; ###
#print_r($output_array_brand);####

$brand=trim(strip_tags($output_array_brand[1][0]));

preg_match_all('/<h1 class="product-title__title">(.*)<\/h1>/', $result, $output_array);
$productTitle=$output_array[1][0];
$productTitle=$brand." ".$productTitle;

preg_match_all('/<span class="price__dollars">(.*?)<\/span>/s', $result, $output_array_price);
preg_match_all('/<span class="price__cents">(.*)<\/span>/', $result, $output_array_cent);
#echo "<pre>";
#print_r($output_array_price);
$price=trim(strip_tags($output_array_price[1][0]));
$cent=trim(strip_tags($output_array_cent[1][0]));
if($cent!="" OR $cent!=0)
{
$price=$price.".".$cent;
}
$line.=$row[0].",";
$line.='"'.$productTitle.'",';
$line.=$row[2].",";
$line.=$price.",";
$totalPrice=$row[2]*$price;
$line.=$totalPrice;
$file .= $line . PHP_EOL;
}

# echo "<br>";
$loop=$loop+1;
#echo "<br>";
if($loop>4)
{
if($check!="Location")
{
$line.=$row[0].",";
$line.=',';
$line.=$row[2].",";
$line.=",";
$line.="";
$file .= $line . PHP_EOL;
break;
}
}
}
while($check!="Location");


}
}
fclose($handle);
header('Content-Type: application/csv');
$output=$_REQUEST['output'];
header('Content-disposition: attachment; filename='.$output.'.csv');

echo $file;
#header('Content-disposition: attachment; filename='.$output.'1.csv');

#echo $file1;
exit;
?>

2 websites on one PC (no replies)

$
0
0
I want 2 webservers to run on one PC
I already have one running with wampserver and Joomla
How should I handle this?
Do I have to install a 2nd wamp server? or a 2nd Joomla installation?
All info is welcome!

Thanks!

opening "your projects" from localhost (1 reply)

$
0
0
Hi,
im new to Wampserver and when im trying to open a directory from the "Your projects" it just writes out the directory name instead of for example "localhost/directory/.

thanks for any solutions to the problem

Virtual hosts cannot find local cgi-bin (3 replies)

$
0
0
I have several Vhosts set up, but none of them can find their local cgi-bin but default to the localhost/cgi-bin instead. If I access the sites using 'localhost/mysite', 'localhost/mysite/cgi-bin' is found. (+ExecCGI has been added to the Options, so that's not the problem.)

What am I missing regarding Vhosts and cgi-bin?

MYSQL error (no replies)

Can , the Php errors, be connect to switch off the pc ? (3 replies)

$
0
0
Hi all,

I got some logs errors and I'm not able to understand what happens on stand alone PC with Wamp and PHP application running all day long 7 x 7.
Unfortunately I'm not a technician and it's hard to me understand what the issue is.
For me php errors are connected to anomalous switch off from users. Maybe data time it's very close to that event.
Can you please have a look to logs and tell me if the error is on application or due to anomalous switch off ?
Many thanks

[01-Jan-2020 12:29:00 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 19

[01-Jan-2020 12:29:00 UTC] PHP Stack trace:

[01-Jan-2020 12:29:00 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:00 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 22

[01-Jan-2020 12:29:00 UTC] PHP Stack trace:

[01-Jan-2020 12:29:00 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:00 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\_lib\lib\php\nm_ctrl_app_name.php on line 13

[01-Jan-2020 12:29:00 UTC] PHP Stack trace:

[01-Jan-2020 12:29:00 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:00 UTC] PHP 2. SC_dir_app_ini() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:1861

[01-Jan-2020 12:29:00 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 1930

[01-Jan-2020 12:29:00 UTC] PHP Stack trace:

[01-Jan-2020 12:29:00 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:00 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 1933

[01-Jan-2020 12:29:00 UTC] PHP Stack trace:

[01-Jan-2020 12:29:00 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 19

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 22

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\_lib\lib\php\nm_ctrl_app_name.php on line 13

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP 2. SC_dir_app_ini() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:1861

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 1930

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php on line 1933

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecordsGreen\trigger_check_timestamp_tubes_green.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php on line 19

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php on line 22

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\_lib\lib\php\nm_ctrl_app_name.php on line 13

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:0

[01-Jan-2020 12:29:01 UTC] PHP 2. SC_dir_app_ini() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:1893

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php on line 1962

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:0

[01-Jan-2020 12:29:01 UTC] PHP Notice: Undefined variable: _SERVER in C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php on line 1965

[01-Jan-2020 12:29:01 UTC] PHP Stack trace:

[01-Jan-2020 12:29:01 UTC] PHP 1. {main}() C:\wamp64\www\Eos_Tat_Meter\checkRecords\trigger_check_timestamp_tubes.php:0


APACHE LOG ERROR

[Tue Dec 31 13:35:21.214559 2019] [mpm_winnt:notice] [pid 2528:tid 260] AH00422: Parent: Received shutdown signal -- Shutting down the server.
[Tue Dec 31 13:35:23.242598 2019] [mpm_winnt:notice] [pid 3484:tid 312] AH00364: Child: All worker threads have exited.
[Tue Dec 31 13:35:23.289399 2019] [mpm_winnt:notice] [pid 2528:tid 260] AH00430: Parent: Child process 3484 exited successfully.
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00455: Apache/2.4.33 (Win64) PHP/7.0.29 configured -- resuming normal operations
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00456: Apache Lounge VC15 Server built: Mar 18 2018 12:58:47
[Tue Dec 31 13:35:24.287818 2019] [core:notice] [pid 3800:tid 396] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.33\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.33'
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00418: Parent: Created child process 6040
[Tue Dec 31 13:35:24.584223 2019] [mpm_winnt:notice] [pid 6040:tid 312] AH00354: Child: Starting 64 worker threads.

[Wed Jan 01 13:29:38.022070 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00428: Parent: child process 6040 exited with status 255 -- Restarting.
[Wed Jan 01 13:29:40.705339 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00455: Apache/2.4.33 (Win64) PHP/7.0.29 configured -- resuming normal operations
[Wed Jan 01 13:29:40.705339 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00456: Apache Lounge VC15 Server built: Mar 18 2018 12:58:47
[Wed Jan 01 13:29:40.705339 2020] [core:notice] [pid 3800:tid 396] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.33\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.33'
[Wed Jan 01 13:29:40.720939 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00418: Parent: Created child process 5028
[Wed Jan 01 13:29:41.547761 2020] [mpm_winnt:notice] [pid 5028:tid 316] AH00354: Child: Starting 64 worker threads.


ACCESS LOG APACHE

[Tue Dec 31 13:35:21.214559 2019] [mpm_winnt:notice] [pid 2528:tid 260] AH00422: Parent: Received shutdown signal -- Shutting down the server.
[Tue Dec 31 13:35:23.242598 2019] [mpm_winnt:notice] [pid 3484:tid 312] AH00364: Child: All worker threads have exited.
[Tue Dec 31 13:35:23.289399 2019] [mpm_winnt:notice] [pid 2528:tid 260] AH00430: Parent: Child process 3484 exited successfully.
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00455: Apache/2.4.33 (Win64) PHP/7.0.29 configured -- resuming normal operations
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00456: Apache Lounge VC15 Server built: Mar 18 2018 12:58:47
[Tue Dec 31 13:35:24.287818 2019] [core:notice] [pid 3800:tid 396] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.33\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.33'
[Tue Dec 31 13:35:24.287818 2019] [mpm_winnt:notice] [pid 3800:tid 396] AH00418: Parent: Created child process 6040
[Tue Dec 31 13:35:24.584223 2019] [mpm_winnt:notice] [pid 6040:tid 312] AH00354: Child: Starting 64 worker threads.

[Wed Jan 01 13:29:38.022070 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00428: Parent: child process 6040 exited with status 255 -- Restarting.
[Wed Jan 01 13:29:40.705339 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00455: Apache/2.4.33 (Win64) PHP/7.0.29 configured -- resuming normal operations
[Wed Jan 01 13:29:40.705339 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00456: Apache Lounge VC15 Server built: Mar 18 2018 12:58:47
[Wed Jan 01 13:29:40.705339 2020] [core:notice] [pid 3800:tid 396] AH00094: Command line: 'c:\\wamp64\\bin\\apache\\apache2.4.33\\bin\\httpd.exe -d C:/wamp64/bin/apache/apache2.4.33'
[Wed Jan 01 13:29:40.720939 2020] [mpm_winnt:notice] [pid 3800:tid 396] AH00418: Parent: Created child process 5028
[Wed Jan 01 13:29:41.547761 2020] [mpm_winnt:notice] [pid 5028:tid 316] AH00354: Child: Starting 64 worker threads.

Server Oflline - All services running (1 reply)

$
0
0
Hi, my all services running but server offline.ı saw this site [forum.wampserver.com] and ı text my answers.

Windows 7 professional 32 bit

WampServer 3.2

Apache 2.4.41

PHP 7.3.12

MySQL 5.7.28

MariaDB 10.4.10

Wampserver icon color: Green

I can acces localhost

ı dont see any error message

ı can acces phpmyadmin

ı dont have any antivirus

C: \ wamp \

localhost:8080

i have a problem with fourm url with vbulletin 5.5.5 (no replies)

$
0
0
i have a problem with fourm url with vbulletin 5.5.5

Not Found
The requested URL was not found on this server.

Apache/2.4.41 (Win64) PHP/7.3.12 Server at localhost Port 80

what is the problem

GLPI Installation Issue (no replies)

$
0
0
Just installed 64 bit version of WAMP Server (latest version)
Downloaded latest release of GLPI... [glpi-project.org]
Running in Windows 10 (build 1909)

Installation of GLPI gets as far as creating a database, however accessing
[localhost] shows...

You are trying to use GLPI with outdated files compared to the version of the database. Please install the correct GLPI files corresponding to the version of your database.
Any tips on fixing this?

Can not import database from online server (3 replies)

$
0
0
Ok,

so I created a dump with the php exec function from a certain database on our website. It turns out I can not import it using wamp. Using the import in phpmyadmin, it just keeps on loading saying 'waiting for localhost'.

When I restart Wamp server, the database is there, but the data is missing.

When I then try to delete the database, I can't. I need to delete 31/32 columns before the database can be dropped.

I am using Wamp server v3.2.0


However the same sql file can be imported on the web server and in Xampp without any problems.

Moreover, if I create an sql-file using phpmyadmin and export the same database from the remote server, I can import the file into Wamp.

The same script also works on another database from that server, so I am quite sure it has something to do with the database itself conflicting with wamp. The file is only 23kb so size is not the issue ...

I have compared settings of both databases, the one working and the one not and nothing seems to differ.

So does anyone have any idea how to pursue this issue further? Since I am not getting any errors, I have exhausted my ideas after spending several hours on stackoverflow etc ...

i need help (1 reply)

$
0
0
Please I need a guide on how to setup the latest version of wamp after installation

Best setup for wampserver (2 replies)

$
0
0
I have a Xeon based server at home for years running windows server 2008. I've been running a iis webserver there, first with classic asp and asp.net /sql server based pages. Later I h ave added php and wordpress to the server. Now 2008 is removed from Microsofts updates list, and I'm tired of problems adding new web project to the server. At work I just runs a windows pc with wampserver, and it just works. So heres what I want to do:

Format the whole damn ting, install a Linux operating system(server?) Use Wampserver for web development, and something else for ftp?

I have from time to time tried to play with Linux Mint, and Ubuntu, but really, I have little experience with these systems, that's the truth. That's why I ask if there are someone with knowledge to can advise me about what is the best setup? I need it to be in a graphic user interface as i easily get lost in commands.

Trond

Dazed and Confused... (no replies)

$
0
0
Gracious Moderators,

I am out of ideas and I humbly request for some guidance and suggestions. I have recently installed the 64bit version of WAMP 3.2. on the VM workstation Pro 12. The host and client specs are as follows:

VM # 1 - The host:
1) Windows 7sp1 Utlimate x64
2) Bridged NAT at 192.168.1.105
3) Installed all VC_Redist and confirmed by your little app.
4) Disabled Firewall
5) IIS disabled via crtl panel/uninstall app/…
6) I get a beautiful green icon at the task bar.
7) Setup database ‘demosite’ language ‘Collation.’
8) Setup/install Wordpress account
9) Setup a generic test blog site.
10) Setup virtualhost (This is where stuff starts to get interesting….)
a. demotest.test
b. C:\wamp64\www\wordpress\
11) Edit vhost.conf to ‘Require all granted’ under demotest.test entry

VM # 2 The client:
1) Debian 10 buster
2) Bridge NAT at 192.168.1.108
3) Launched terminal ‘ping 192.168.1.105’….responds well.
4) ‘Ping demotest.test’ …nothing.

I must be missing something really simple. Break out the Google-foo…search and search… Combing through this forum….maybe corrupt hosts file? Okay, recreate host file…. Maybe browser block? Okay, reset VM# 1 repeat install but use different browser. Still no access. So for giggles, I edit the vhost.conf and change ‘Require local’ under ‘localhost’ entry to ‘…grant all.’ Restart DNS…back to VM # 2, but enter the ip in the browser instead and I can now pull up the WAMPSERVER homepage! WTH! Awesome I think, I must be on to something….but still not sure what. While on the homepage (still on VM #2) I double-click on the ‘demotest.test’ link….nothing…. what am I missing here? I almost forgot to mention that my intent is to use VM #2 to access publications from VM # 1.. Thanks for your time and attention.

WAMP not loading PHP - tried many methods but failed (2 replies)

$
0
0
Hi all,

I have tried many methods (Setting.json, environment variable, reactivate...etc.) found on Google but nothing worked for me. All my sites used to load no problem but suddenly one day it stopped loading. When I load "live server" in VS code, it just loads the directory for file download. If this is not a WAMP problem please do provide potential solution as I cannot tell why this is happening and do not know what to do to fix this.

1 - Windows version used (Specify version number AND whether 32 or 64 bit): WIndows 10 64bit

2 - Version WampServer (Specify version number AND whether 32 or 64 bit): Wamp 3.1.7 64bit

3 - Apache Version/ 4 - PHP Version/ 5 - MySQL Version/ 5a - MariaDB version if applicable:
Apache 2.4.37 Port 80- PHP 7.3.1
MySQL 5.7.24 Port 3306
MariaDB 10.3.12 Port 3307
PHP 5.6.40 for CLI (Command-Line Interface)

6 - What color is the WampServer icon (in the notification area of the taskbar): green

7 - In the file c:\Windows\System32\drivers\etc\hosts, what are the active lines?: 127.0.0.1 localhost
::1 localhost


8 - Do you have access to localhost (Homepage WampServer)?
8a - If so, is there an error message at the bottom of the page? No

9 - Do you have access to phpMyAdmin? Yes

10 - If you refer to an error message, please include the EXACT wording of the error in your post: N/A

11 - If you use an Antivirus and / or Firewall, please include the names of these: Windows Defender but changed nothing

12 - What is the full path to the installation of WampServer (eg D:\wamp\): C:\wamp64

13 - If you have one or more Virtual Hosts defined, please show their definition(s): N/A


This is what I see when I try to load my php file: [i.stack.imgur.com]


If I missed anything my apologies. I would really like to solve this issue so I can fix my site locally. Thank you!

K.
Viewing all 3234 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>