Questions tagged [safe-mode]

105 questions
0
votes
1 answer

Require column in MySQL safe update

I have a MySQL server with safe mode enabled (on purpose). Lets say a table looks like this: id | name | color | id_team 1 | a | red | 1 2 | b | red | 2 3 | c | green | 1 When I query UPDATE table SET name='d'; I…
Pimon
  • 21
  • 2
0
votes
0 answers

namenode goes in safemode every time i re-start machine

I have Hadoop 1.x on ubuntu Everything works fine: I'm able to upload input file in HDFS. But when I reboot my laptop, all HDFS blocks are corrupted and NameNode starts in SafeMode So I have to 1) Leave the SafeMode 2) Delete all corrupted blocks…
0
votes
0 answers

How to leave addons activated in safe mode in firefox?

I'm wondering where is the file which manages extensions de/activation in safe mode? It seems that the XPIProvider.jsm file from omni.ja archive describe in other post doesn't exist anymore. I'm running firefox 53.0.2 (32 bits) Thanks Julien
0
votes
1 answer

Running additional service in Safe Mode win8.1

The problem is I need to install the program, that runs additional service in the middle of installation. While trying to run it manually, it returns error 1084: Can not start the service in the Safe Mode. What should I add to registry in order to…
Aamu Ranta
  • 25
  • 2
0
votes
2 answers

Run launcher app in safe mode of android

I had implemented one launcher app for tab. This app is working good in normal mode but issue in safe mode. I am not able to set my app as launcher app in safe mode. Can anyone tell me how i can run my app as launcher app in safe mode. Possible…
0
votes
3 answers

How to use shell_exec() function in a php domain?

I found the shell_exec() function is disabled in my remote server. Is there is any other way or tips to execute the shell_exec() function?
sirin k
  • 373
  • 4
  • 14
0
votes
1 answer

How to disable safe mode in Firefox 12

While I realize this is an older version of Firefox, the system I'm using it on is around 11 years old and it can't take newer versions without the browser and flash content getting sluggish and choppy. This system serves as a public access station…
ardvark71
  • 1
  • 3
0
votes
0 answers

Trigger Pre-Written Shell Command From PHP in SafeMode

I'm using PHP to perform a CRON task. It runs as root. For example: php -f /my-cron-folder/my-cron-task.php Under some circumstances, I want to restart the server's firewall (CSF+LFD) at the end of the script running. The server has exec and system…
Claud
  • 937
  • 1
  • 12
  • 27
0
votes
0 answers

Hadoop 2.6.0 Namenode stuck in safemode and won't leave it

I'm using Hadoop 2.6.0 on a multi-node cluster. Actually the cluster is virtual cluster and I have three machines on one PC. The host OS is Windows 7 64 bit with 3 GB Ram and the guests are Redhat Enterprise 6.4 32 bit that use VMware. One of these…
0
votes
1 answer

I can only run VS2013 in SafeMode

I am using windows 8.1 and visual studio 2013. I can only run VS2013 in safemode, otherwise it raises error at startup and close. It is same even I made a fresh install again. It is also same for the other versions as well (2012, 2010). How can I…
erogol
  • 13,156
  • 33
  • 101
  • 155
0
votes
1 answer

A safer way to delete data in MYSQL workbench than its Safe Mode

Here's the thing, I keep deleting rows in MySQL Workbench(this is the third time) because I usually open a tab for each table from where I need to view data, and I recycle that same tab(so as not to clog it), so let's say I open users tab, to view…
Sismetic
  • 227
  • 4
  • 16
0
votes
1 answer

How to add two values in a registry with batch script?

I want to edit the registry key below... HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon The default data for valuename Shell is explorer.exe I want to edit to be like explorer.exe,Myapp1,Myapp2 I did it manually, but is it…
Ari Dey
  • 23
  • 1
  • 5
0
votes
2 answers

manage cronjobs using php in safemode

Small fast question: Is possible to create cronjob using PHP if "safe mode" is "on"? I foollow this thread for creating and updating cronjobs using php: Use PHP to create, edit and delete crontab jobs? Some shared hosting has default settings with…
drozdo
  • 319
  • 2
  • 11
0
votes
0 answers

Mysql connection issue with remote client

I am trying to connect to MySQL remotly but everytime I get access denied. However if i kill this process root 3040 1 0 15:07 pts/0 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql…
JavaGuy
  • 639
  • 1
  • 6
  • 11
0
votes
1 answer

Batch Program to Start Windows Audio in Safe Mode

This is the code: @echo off cls echo. echo Hello, %username%. echo This program will enable the sound service. echo. :case_1 call:print "Attempting to start Windows Audio..." call:check_audio "sc start AudioSrv" "case_2" :case_2 call:print…