It's not possible to find php5 because it's not available with mipsel-24kc architectur.
Posts made by Clement Durandeau
-
RE: error with phpmyadmin
-
RE: error with phpmyadmin
Hello, Php and mysql communicate correctly because when connecting to phpmyadmin, if I put a password other than the one defined, I end up with an error of type: incorrect password. It is once connected that the error occurs.
-
RE: error with phpmyadmin
Please anyone have an idea ??? ??? ??? I'm blocked for create the table in my database.
The compmunication between php and mysql is good because the authentification is good, the password define in mysql is reconized. -
error with phpmyadmin
Hello I have installed mysql-server on my omega2+ with nginx ang php7. The install is OK but I want install phpmyadmin for manage my database but I Have this error.
Warning in ./libraries/dbi/DBIMysqli.php#556
mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean givenBacktrace
./libraries/dbi/DBIMysqli.php#556: mysqli_real_escape_string(
boolean false,
string '',
)
./libraries/DatabaseInterface.php#2731: PMA\libraries\dbi\DBIMysqli->escapeString(
boolean false,
string '',
)
./libraries/navigation/nodes/Node.php#449: PMA\libraries\DatabaseInterface->escapeString(string '_')
./libraries/navigation/NavigationTree.php#288: PMA\libraries\navigation\nodes\Node->getData(
string 'databases',
integer 0,
string '',
)
./libraries/navigation/NavigationTree.php#847: PMA\libraries\navigation\NavigationTree->_buildPath()
./libraries/navigation/Navigation.php#45: PMA\libraries\navigation\NavigationTree->renderState()
./libraries/Header.php#433: PMA\libraries\navigation\Navigation->getDisplay()
./libraries/Response.php#260: PMA\libraries\Header->getDisplay()
./libraries/Response.php#273: PMA\libraries\Response->_getDisplay()
./libraries/Response.php#432: PMA\libraries\Response->_htmlResponse()
PMA\libraries\Response->response()please HELP me.
-
RE: ntfs partition doesn't mount with read and write permission
I succed to put the exec and read permissions for files and folders with the line option in fstab
"option options 'rw,sync,uid=65534,gid=65534,umask=0000'"
but it's impossible to put write permissions make import the umask.
I use nobody user's and nothing changes. -
RE: ntfs partition doesn't mount with read and write permission
Yes I already try this solution but doesn't work. The device is mounted on read/only.
Anyone say how install fuse in openwrt because this module is necessary for run with ntfs-3g to mount ntfs partition with read and write permission and it's not disponible with opkg install.https://wiki.openwrt.org/doc/howto/writable_ntfs
thank you
-
RE: ntfs partition doesn't mount with read and write permission
I have already tried a lot of solution like to add the permissioons in fstab or with ntfs-3g but this one does not work because it misses the fuse module which is not available on openwrt so I am a can lost .
Can you help me -
ntfs partition doesn't mount with read and write permission
Hello
I just installed block-mount to manage the mounting of my devices more easily with fstab.
All this goes well with the devices in FAT, they mount correctly with the rights of reading and writing.
The problem is for devices in NTFS. They are mounted correctly but I have no rights to read or write.Would someone have a solution?
I run under an omega2 plus in version v.0.1.9-b159.
Thank you
-
Omega2 : probleme installation php7 with nginx
Hello
I can not configure php7 with nginx.
I currently own nginx 1.10 which works perfectly for the display of html content but the problem is that I could not read my php pages while I put the fastcgi.
Here is a pasted copy of my nginx configuration.
If anyone could help me would be really cool thank you.
server {
listen 80; # Port, make sure it is not in conflict with another http daemon.
server_name YOUR_SERVER; # Change this, reference -> http://nginx.org/en/docs/http/server_names.html
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 32k;
fastcgi_buffers 4 32k;
fastcgi_busy_buffers_size 32k;
fastcgi_temp_file_write_size 32k;
client_body_timeout 10;
client_header_timeout 10;
send_timeout 60; # 60 sec should be enough, if experiencing a lot of timeouts, increase this.
output_buffers 1 32k;
postpone_output 1460;root /www; # Your document root, where all public material is. location ~ \.php$ { fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass 127.0.0.1:1026; # The upstream determined above } }