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

mysqli extension is missing (1 reply)

$
0
0
hello

i just installed wampx64 but whenever l try to acess phpmy admin l receive the following error


"The mysqli extension is missing. Please check your PHP configuration. .""

how can l fix it

Problems to update wordpress-5.0.1 automatically (5 replies)

$
0
0
Hi,
I tried a few times to update automatically wordpress 5.0.1 through my dashboard and I get a failure message and then this:

Update WordPress
Downloading update from [downloads.wordpress.org]…

Unpacking the update…


( ! ) Fatal error: Maximum execution time of 120 seconds exceeded in C:\wamp64\www\mysite\wp-admin\includes\class-wp-filesystem-direct.php on line 74
Call Stack
# Time Memory Function Location
1 0.0009 409232 {main}( ) ...\update-core.php:0
2 2.6726 9977024 do_core_upgrade( ) ...\update-core.php:668
3 2.6884 10086208 Core_Upgrader->upgrade( ) ...\update-core.php:499
4 14.6188 10066776 Core_Upgrader->unpack_package( ) ...\class-core-upgrader.php:127
5 14.6241 10067000 unzip_file( ) ...\class-wp-upgrader.php:308
6 14.6263 10068264 _unzip_file_ziparchive( ) ...\file.php:1078
7 119.9271 10073864 WP_Filesystem_Direct->put_contents( ) ...\file.php:1194

What should I do? I don't know how to update wordpress from wampserver manually? I would appreciate any piece of advise. Thanks

MySQL error after running for a day or so :-( (1 reply)

$
0
0
Win10 1803 64bit
WAMP 3.1.6 32 bit
Apache 2.4.3.5
PHP 7.2.10 (For CLI 5.6.38)
MySQL 5.7.23
MariaDB 10.3.9
Icon is Green

Installed in C:\wamp

127.0.0.1 localhost

127.0.0.1 seventhwave

127.0.0.1 shopy

127.0.0.1 clicks

127.0.0.1 cheat

127.0.0.1 fuse

127.0.0.1 elewp

127.0.0.1 welewp

::1 localhost

I have spent hours and tried every suggestion on the board and am at my wits end.

Was using the 64bit version of WAMP and experienced the same as below. I completely removed it and installed the 32bit version of WAMP.

After a clean install, WAMP works to create a virtual host and I install WordPress. It works for a day and the I receive the following error in the WAMP server home page when I try to launch phpmyadmin:

phpMyAdmin - Error
The mysqli extension is missing. Please check your PHP configuration. See our documentation for more information.

I receive the followin when I try and launch WordPress

Fatal error: Uncaught Error: Call to undefined function mysql_connect() in F:\elewp\wp-includes\wp-db.php:1564 Stack trace: #0 F:\elewp\wp-includes\wp-db.php(592): wpdb->db_connect() #1 F:\elewp\wp-includes\load.php(409): wpdb->__construct('root', '', 'elewp', 'localhost') #2 F:\elewp\wp-settings.php(106): require_wp_db() #3 F:\elewp\wp-config.php(89): require_once('F:\\elewp\\wp-set...') #4 F:\elewp\wp-load.php(37): require_once('F:\\elewp\\wp-con...') #5 F:\elewp\wp-blog-header.php(13): require_once('F:\\elewp\\wp-loa...') #6 F:\elewp\index.php(17): require('F:\\elewp\\wp-blo...') #7 {main} thrown in F:\elewp\wp-includes\wp-db.php on line 1564

The only change I made was to php.ini in C:\wamp\bin\apache\apache2.4.35\bin\php.ini

to increase the file upload size.

Went thru ALL the trouble shooting tips and found the page that listed all the MS required downloads and the direcr download for the 32bit version.

Which php.ini file to edit (no replies)

$
0
0
Sorry to sound like a box of rocks but the php.ini file in C:\wamp\bin\apache\apache2.4.35\bin\php.ini
is a 0 (zero) length file. I need to increase the upload limit.

Running 5.6.38

"new" errors in virtualhost (no replies)

$
0
0
Hi there,
Being totally novice in this are I have nevertheless been able to setup a working local WAMP environment for my Joomla development a year ago. To my knowledge I had no error messages at that time and it has been working fine and the Wamp icon always green. I did however visit my "localhost"/Wamp-server screen and saw that I now have the following messages:

Your VirtualHost
localhost:443 - Not a Listen port
mb219dev:443 - Not a Listen port
Error(s) See below
Port used for the VirtualHost is not an Apache 'Listen port' in httpd.conf
Duplicate ServerName localhost mb219dev into c:/wamp/bin/apache/apache2.4.25/conf/extra/httpd-vhosts.conf

What is wrong and how should I correct it?





==> httpd.conf
I suppose it is these lines that are wrong (even though it think it has been working before)
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 0.0.0.0:80
Listen [::0]:80





==> httpd-vhosts.conf looks like this
# Virtual Hosts
#
# 170815 none-ssl localhost
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot c:/wamp/www
<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>

# 170815 SSL localhost in parallel to none-ssl localhost
<VirtualHost *:443>
ServerName localhost
ServerAlias localhost
DocumentRoot c:/wamp/www
SSLEngine on
SSLCertificateFile "c:/wamp/bin/apache/apache2.4.25/conf/key/localhost.crt"
SSLCertificateKeyFile "c:/wamp/bin/apache/apache2.4.25/conf/key/localhost.key"
<Directory "c:/wamp/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>

# 170815 none-ssl mb219dev
<VirtualHost *:80>
ServerName mb219dev
DocumentRoot "c:/wamp/www/mb219dev"
<Directory "c:/wamp/www/mb219dev/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>

# 170815 SSL mb219dev in parallel to none-ssl mb219dev
<VirtualHost *:443>
ServerName mb219dev
DocumentRoot "c:/wamp/www/mb219dev"
SSLEngine on
SSLCertificateFile "c:/wamp/bin/apache/apache2.4.25/conf/key/mb219dev.crt"
SSLCertificateKeyFile "c:/wamp/bin/apache/apache2.4.25/conf/key/mb219dev.key"
<Directory "c:/wamp/www/mb219dev/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>

Transfer YouTube to MP3 on Mac (no replies)

$
0
0
Summary: Whether there was a YouTube voice shake your heart that makes you playback over and over again? However, you could do nothing but watching again and again. Fortunately, it,s never be a pity for you after reading rest of this article.

If you need to convert YouTube video to MP3 music on Mac OS Sierra/El Capitan as as a ringtone for your portable devices such as iPhone, iPad, PS4 or have downloaded some videos from YouTube on your Mac and would like to rip MP3 from YouTube for playback on your MP3 player or multimedia player. However, you cannot directly download audios from YouTube but have to convert YouTube to MP3 on your Mac.Then a YouTube to MP3 converter for Mac is a best choice.

A professional yet easy-to-use YouTube to MP3 converter for Mac is highly recommend here Pavtube iMedia Converter for Mac, an impressive software, especially designed for Mac OS X (Sierra, El Capitan,Yosemite included) to free convert any YouTube to MP3 on Mac computer which allows you to convert your favorite YouTube videos into high quality Mp3 files, no limits on the length of videos. Meanwhile, it can transfer YouTube 720p/1080P/4K UHD to varies video formats like MP4, AVI, MPG, WMV, etc for playback on other devices.
read the review.

Tips: If you are a Windows user, Pavtube Video Converter Ultimate is available here.



Other Download:

– Pavtube old official address: http://www.pavtube.cn/blu-ray-video-converter-ultimate/
– Cnet Download: http://download.cnet.com/Pavtube-Video-Converter-Ultimate/3000-2194_4-75938564.html



Other Download:

– Pavtube old official address: http://www.pavtube.cn/imedia-converter-mac/
– Cnet Download: http://download.cnet.com/Pavtube-iMedia-Converter/3000-2194_4-76177788.html

Transfer YouTube to MP3 on Mac OS Sierra

Step 1. Import the YouTube video or audio files

Clicking &ldquo;Add File&rdquo; button. It accepts all the video/audio files downloaded from YouTube, including FLV, MP4, WebM and 3GP.



Step 2. Choose the output format

Just click the &ldquo;Format&rdquo; > &ldquo;Common Audio&rdquo;, then you will see all the audio formats (AC3, MP3, FLAC, WAV, M4A) we listed and others.



Step 3. Start to convert YouTube to MP3 on Mac

Click the red &ldquo;Convert&rdquo; button, start the conversion. And find the destination file by clicking &ldquo;Open&rdquo;.

After you get the transferred audio file, you can play the audio in any portable devices. Have a try and have fun!

Read More:

3 Methods to Convert MP4 Video to MP3 Audio

Convert BitTorrent/uTorrent/Torrent Video to MP3 on Mac/Windows

Free Extract DVD audio to MP3 on Mac

Extract MP3 Audio from 4K Ultra HD Video

Convert M2TS to Lossless Audio

Transcode multi-audio channels MXF to MP4 with original audio tracks preserved

Rip 4K Blu-ray with Dolby TrueHD 7.1 Audio

Blu-ray to MP4/MKV/MOV with multi-track Audio/Subtitle

Rip Blu-ray to MP4/MOV with multiple audio tracks

Extract audio from 3D YIFY Movies on Windows 10/8.1/8/7/XP

Src: [i-mediasky.com]

SSL Module not loading after Apache Update (2 replies)

$
0
0
I recently upgraded my Wampserver to 3.1.5, installed the latest Visual Studio C++ files, and successfully upgraded PHP from version 7.1.9 to 7.2.12.
I then tried upgrading Apache from 2.4.27 to 2.4.37. When I switch to 37, however, the service does not start. I cannot see anything in the error log about this, but I can see that when I disable the ssl_module the Apache service starts up. This module works just fine when I switch back to 2.4.27.
What should I be looking at for further troubleshooting?
I can confirm that the mod_ssl.so file exists in the C:\wamp64\bin\apache\apache2.4.37\modules folder and is visible from the Wampserver -> Apache -> Apache Modules menu...

I just tried copying the mod_ssl.so file from the apache2.4.27\modules folder and replacing the apache2.4.37 file, and the service starts up...will this be a problem?

apache not working in wamp after removing temp files (2 replies)

$
0
0
apache not working in wamp after removing temp files.

Installing prerequisites. (no replies)

$
0
0
I have installed the VC++ runtimes as contained in the VC++ zip packlge but when I run check_vcredist.exe It declares that the redistributables are not installed. I am not sure how to proceed?

how to reinstall wamp? (1 reply)

$
0
0
Hallo, I tried to install php 7.3 onto my windows 8 and wamp 3.1.6, it installed however an icon in tray remains orange...

so I launched check_vcredist.exe and learned I miss some packets so I installed missing software, now check_vcredist.exe shows its all up to date however tray icon is still orange

( if I switch to to php 7.0 it goes green but 7.2 and 7.3 do not seem to work )

I think my mistake was to install php7.3 before upgrading vcredist but I don't know how to fix that

+ wipping out php folder and installing it again does not help
+ repairing wamp with new install over the sam folder either

how can I come over this at the point I am now?

yellow icon - "only 1 of 2 services running (1 reply)

$
0
0
I have the same error, am running on windows 10. apache service not running, some help

Problems to update wordpress-5.0.2 automatically (no replies)

$
0
0
Hi, Today is Christmas so marry Christmas to everybody. If today there is anybody out there than can help me, I would be very happy. I get another update for Wordpress 5.0.2. This time the error message is this:

( ! ) Warning: An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="[wordpress.org] forums</a>. (WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.) in C:\wamp64\www\mysite\wp-admin\includes\update.php on line 121
Call Stack
# Time Memory Function Location
1 0.0011 409232 {main}( ) ...\update-core.php:0
2 2.8981 10835704 do_core_upgrade( ) ...\update-core.php:668
3 2.9875 11014392 Core_Upgrader->upgrade( ) ...\update-core.php:499
4 3.0596 11015784 Core_Upgrader->check_files( ) ...\class-core-upgrader.php:94
5 3.0596 11015784 get_core_checksums( ) ...\class-core-upgrader.php:347
6 6.0716 11134728 trigger_error ( ) ...\update.php:121
Another update is currently in progress.

Any helpful advise? I don't have any other update in progress, No idea why is saying that.
Thanks

Installation issue (1 reply)

$
0
0
Hello,
I recently downloaded the latest version of wampserver 3.1.4*64.exe. But only two services are running out of three.
I am using Windows version 8.1single language and size of 64bit
Apache version is 2.4.35
PHP Version is 7.2.10

MySQL version is 5.7.23
Maria DB Version is 10.3.9

Main issue is colour od Wam icon is still orange. And I have uninstalled skype already.

Kindly help me out.

Regards Prachi

php connection file issue (no replies)

$
0
0
i have written a php connection file for a database but when i open my localhost,the same thing is getting printed over the web.Help me out.Thanks in advance

client denied c:/wamp/www/favicon (no replies)

$
0
0
Hello
How can I solve (and remove) the following error in apache_error_log :

access_compat_error - AH01797 : client denied by server configuration c:/wamp/www/favicon.ico

(I'm using Wamp 2.4/ Apache 2.4.4 Win 32 on a XP SP3 machine)

I created an alias. So I never access to wamp main 'www' directory, but only to my alias [<my] ip>/<myalias>/

So why apache is trying to get access to main 'www/favicon.ico' ?

And I don't want to give external access to that main Wamp 'www' since I don't need it ?

And I was not able to find a directive to ask Apache to not search this favicon.ico or to not log this error that increases uselessly the apache error log file.

Thanks

Installing WAMP on a network for team development (no replies)

$
0
0
We're working in a group environment and we'd like to install WAMP on our network so that we can all work from the same installation on either shared projects or individual projects without having to install WAMP on each and every local computer and run an SVG.

Is this possible? Been searching the web but only solutions I find is sharing local installation on a network.

Can't find 32-bit version to download (1 reply)

$
0
0
Hi there,

I am unable to download the 32-bit version of WAMP server. I go to [www.wampserver.com] , I click the 32-bit version and I receive the following message:

"The "/WampServer 3/WampSe..php5.6.25-7.0.10.exe" file could not be found. Please download another file."

I have tried downloading the next available file on Sourceforge but it looks like only the 64-bit version is available.

Can anyone help? =/

Kind regards,
Ben

New on WampServer (no replies)

$
0
0
Thanks for aplication! I will test and implement codes!

VirtualHost blocking download and unzipping (no replies)

$
0
0
Hi everyone,

After following the Sticky Topics in this forum I was able to create a Virtuahost to host a project (thanks for that btw!). Everything worked until I tried to download updates while using my project. It appears that my host in its configuration is supposed to allow downloading and unzipping files. I have copied a zip file and put in the VirtualHost folder but it didn't work. I have searched in the PHP configuration but I couldn't find the exec () function which is the one I apparently need or even an unzipping button in the PHP Configuration options. I have looked at the PHP documentation but this is not mentioned. I have also searched this forum but I couldn't find anything. I'm a newbie in this so it's possible that I have missed something in my research or in the configuration.

Can someone please help with this or at least direct me towards the documentation as I cannot find anything about this?

Thanks!

Installing WAMP without Mysql and MariaDB (1 reply)

$
0
0
Hi,

How can I install WAMP without MySQL and MariaDB? It would be very nice if we can pick the modules we need at install time.

I removed both services manually, but still WAMP manager is looking for them before it becomes green so you will never know if apache is running from the icon color.

Is there any way to modify this behaviour?

thanks
Viewing all 7474 articles
Browse latest View live


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