skip to Main Content

why is my png img of QR not displaying in php – PHP Versions

Fatal error: Uncaught Error: Call to undefined function ImageCreate() in C:xampphtdocsthe_baseqrlibsphpqrcodeqrimage.php:74 Stack trace: #0 C:xampphtdocsthe_baseqrlibsphpqrcodeqrimage.php(32): QRimage::image(Array, 5, 4) #1 C:xampphtdocsthe_baseqrlibsphpqrcodeqrencode.php(494): QRimage::png(Array, 'temp/184011_inf...', 5, 4, false) #2 C:xampphtdocsthe_baseqrlibsphpqrcodeqrencode.php(286): QRencode->encodePNG('tRoll no: 18401...', 'temp/184011_inf...', false) #3 C:xampphtdocsthe_baseqrindex.php(57): QRcode::png('tRoll no: 18401...', 'temp/184011_inf...', 0, 5)…

VIEW QUESTION

How to enable virtualhost in xampp – Apache

I am configure virtualhost on Xampp so that I can run an advanced Yii2 project (with front and backend application), I have followed this instruction and my httpd-vhosts.conf looks like this <VirtualHost *:8081> ServerName winnersprimary.ac.tz DocumentRoot 'c:xampphtdocswinnersprimaryfrontendweb' <Directory 'c:xampphtdocswinnersprimaryfrontendweb'> #…

VIEW QUESTION

Xdebug: [Step Debug] Time-out connecting to debugging client, waited: 200 ms. Tried: localhost:9003 – Apache

My php.ini configuration: [XDebug] zend_extension = "C:xamppphpextphp_xdebug.dll" xdebug.mode = debug xdebug.remote_autostart = on xdebug.profiler_enable = on xdebug.profiler_enable_trigger = on xdebug.profiler_output_name = cachegrind.out.%t.%p xdebug.profiler_output_dir ="c:/xampp/tmp" xdebug.show_local_vars=0 xdebug.remote_host = 127.0.0.1 xdebug.remote_enable = 1 xdebug.remote_port = 9003 xdebug.remote_handler = dbgp xdebug.remote_mode = req…

VIEW QUESTION

Problem in root route in laravel 8 Using illuminate – Apache

This is my first time asking questions in StackOverflow so sorry for the mistakes. I have a problem with laravel routes. <?php use IlluminateSupportFacadesRoute; //start :: login Route::group(['namespace' => 'auth'], function () { Route::get('/', 'AuthController@index')->name('index'); Route::get('/showResult', 'AuthController@Result')->name('Result'); Route::post('/showResultds', 'AuthController@showResult')->name('showResult'); Route::post('/dologin',…

VIEW QUESTION
Back To Top
Search