Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
Here's what I'm trying to do: https://www.blocked.com/install.php
I've tried locally with XAMPP and on DigitalOcean with LEMP and LAMP on Ubuntu 14.04, all of them with the same result: Step 4 shows a blank page.
Is there anything I'm missing or is it their fault?
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: Call to undefined function ioncube_loader_version() in /usr/share/nginx/html/blockscript/install.php on line 18
On line 33:
# check if ionCube is installed
if (!function_exists('ioncube_loader_version')) {
print_message('<b>Warning:</b> ionCube is not installed. ionCube is required to run the Blocked software. Please download latest version of the ionCube Loaders for your server. You can refer to the ionCube Loader Installation Manual for instructions and help.');
}
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I have php version 5.6, I am trying to get the built in web server running, BUT I have noticed that there is no option for me to even run it. I apologize, I am a intermediate php guy. I was previously using XAMPP to serve it, but I am trying to incorporate my php development into my gulp workflow with browsersync and gulp-connect-php. Any suggestions are much appreciated and thank you. I have attached my CMD screenshot.
I am stupid. I was looking for the version in the XAMPP admin, which was version 5.6, BUT I only have 5.3 on my machine with the php output -v
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I'm using apache24 with PHP 7.0.3. When requesting http://localhost/phpmyadmin/ I get this error:
The mysqli extension is missing. Please check your PHP configuration. See our documentation for more information.
My PHP config has nothing about slqi to uncomment.
I've looked at the thousand other solutions, and most are for linux and I don't know how to do it for windows.
Please make sure the extension=mysqli.dll isn't commented out into php.ini.
Also make sure that you have the mysqli.dll files exist inside the extensions folder of your php installation.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 7 years ago.
Improve this question
I'm trying to call
echo bintohex(random_bytes(30));
But my logs show
PHP Fatal error: Call to undefined function bintohex()
PHP 5.6.17
Apache 2.2.15
CentOS 6.7
Mcrypt 2.5.8 (installed and verified on phpinfo() page)
extension=mcrypt.so (present)
Any ideas why I can't find bintohex() or random_bytes() functions?
Because it bin2hex http://php.net/manual/en/function.bin2hex.php not "bintohex"
random_bytes basically exist only in Php 7 according to docs http://php.net/random_bytes but here is polyfill to 5.x version https://github.com/paragonie/random_compat
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
When I upload my Laravel website and configured in godaddy VPS server I started getting following error
Fatal error: Call to undefined function Illuminate\Foundation\Bootstrap\mb_internal_encoding() in /home/wwwideportal/ideinvoice/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php on line 43
I googled about it and got to know that Its a problem in php.ini file of my current hosting so , I created another php.ini file and uploaded in the public_html folder
then I did phpinfo in my browser and checked its showing that the file has been uploaded fine for php.ini and I have placed following code in it
extension=php_mbstring.dll
but still I am getting the same error
Here is my website link
Can any one tell me if I am missing any thing
Thanks in advance.
As you can see it from http://ide-portal.com/phpinfo.php,
mbstring module is not installed on you server.
If it was installed, it would be displayed on your phpinfo page like that:
Please follow mbstring installation manual to install it on your system.
Thanks
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I've searched on the Internet about this error. Somebody told me that my computer is missing lib xml for php. But I don't know how to install it on Ubuntu 12.04 TLS.
PHP Fatal error: Call to undefined function uft8_decode()
The function name is utf8_decode(), not uFT8_decode().
var_dump(function_exists('utf8_decode')); should tell you if it's available. If this returns bool(false), then php-xml package is probably missing in your PHP installation. Make sure it is installed. If it isn't, ask your hosting provider to update / install it.