[Solved] base64 encoded column want to decode using a xampp server what [closed]

If you’re using MySQL 5.6.1 or higher you can use the FROM_BASE64() function. You can write your query inside file like : $query = mysqli_query($connection,”SELECT testid, setno, qnid, FROM_BASE64(question) as question FROM `table_name`”); SQL Query SELECT testid, setno, qnid, FROM_BASE64(question) as question FROM `table_name` Hope it will help you. 0 solved base64 encoded column want … Read more

[Solved] How to see who access my ip address from web service via wifi [closed]

to find informations about visitor request , please check you xampp apache log file . here is the code you can add in your index.php to deny access for some adress ip : <?php $deny = array(“111.111.111”, “222.222.222”, “333.333.333”); if (in_array ($_SERVER[‘REMOTE_ADDR’], $deny)) { header(“location: http://www.google.com/”); exit(); } ?> add the adress ip in $deny … Read more

[Solved] What is the use of perl folder in xampp why it is included in xampp? [closed]

XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP, and Perl. The XAMPP open source package has been set up to be incredibly easy to install and to use. — https://www.apachefriends.org/index.html The Perl folder contains files needed to run server-side code written in Perl. 4 solved What is the use of … Read more

[Solved] xampp php not working

Possible problems Either, your contact.php would be in different directory. You are trying to access with WRONG URL, i mean path. You would have changed your port number to other. Check your Port Number, when you are accessing your main page (i.e. index.php or whatever). Suggestion If your index.php and contact.php are in same directory … Read more

[Solved] Blocked.com free trial script shows blank page [closed]

I found what the problem was. I had to enable errors to see what was going on, and apparently I need(ed) to install IonCube Loader on the server. //error_reporting(0); ini_set(‘display_errors’, 0); ini_set(‘display_errors’,1); ini_set(‘display_startup_errors’,1); error_reporting(-1); Also, they check if you have IonCube Loader in your system AFTER using it… Makes sense. $version_ioncube = ioncube_loader_version(); Fatal error: … Read more

[Solved] Does XAMPP include PHP?

From XAMPP home page: What is XAMPP? XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP, and Perl. The XAMPP open source package has been set up to be incredibly easy to install and to use.XAMPP is the most popular PHP development environment XAMPP comes with PHP already bundled. You don’t … Read more

[Solved] Server data accessing from non local network without port forwarding

Yes, it’s possible to access the web server from an external network, depending on your current network configuration. There are two simple solutions I think would suit you. Configure your firewall if needed, enable port forwarding in your router settings to forward port 80 to the internal IP of the machine running your XAMPP-server. If … Read more

[Solved] XAMPP won’t run php [closed]

XAMPP usually stores the web-accessible files in an htdocs folder. Find this and prepend http://localhost/ where local/path/to/htdocs would be, and if XAMPP is running, it should work. So a file (in Windows) named and found in c:\xampp\htdocs\test.php would be http://localhost/test.php. See: http://www.apachefriends.org/en/faq-xampp-windows.html#startpage 3 solved XAMPP won’t run php [closed]

[Solved] Django websites not loading

The problem isn’t having multiple websites, using mod wsgi or even using Windows. The actual problem is the database. For some reason (no idea why) the default database becomes corrupt. The solution was for me to switch to MySQL from the default database. I’m not entirely sure why the default database becomes corrupt. This is … Read more