register_globals on error on fresh 6.1.5 install
QuoteMay 09, 2009 02:030 likesLike
 

Hi,

I just did a fresh install of 6.1.5, but when I ran the install I got this error:

----

Register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
Please go to the
Dolphin Troubleshooter
and solve the problem

--

This was probably because my host moved me to a php 5 server at my request.  I wrote them and they got back to me with the following:

---

I disabled register_globals in the php.ini file by adding
register_globals = 0
The permissions of all folders are set to 755, files to 644,
the file ray/modules/global/app/ffmpeg.

exe to 755.

---

I was then able to proceed with the installation, change the file permissions, etc, and it installed with no problems, and now displays normally at that domain.  When I try to go to the admin panel, however, by going to www.mysite.com/admin/index.php, I get that exact same "register_global" error, even though it was just reset.  Anone have any idea what might be going on and how to fix?

-

Thank

-

Rob

QuoteMay 09, 2009 11:330 likesLike
 

Question withdrawn.  Host fixed by commenting out registers global checking in  inc/header.inc.php.

Rob

QuoteMay 11, 2009 04:510 likesLike
 

I have the same problem. My php.ini is ok. Site work fine. Cron send me errors report.

results:
register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it

Dolphin-v.6.1.5
Hosting - HostGator

QuoteMay 11, 2009 05:000 likesLike
 

Sometimes hosts split PHP to 2. One for sites and second for crons.

you should check both PHP binary.

QuoteMay 11, 2009 22:390 likesLike
 

Hi,

same here!!

any idea how to fix it?

I have the same problem. My php.ini is ok. Site work fine. Cron send me errors report.

results:
register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it

Dolphin-v.6.1.5
Hosting - HostGator

QuoteMay 26, 2009 23:460 likesLike
 

Same problem on a clean install of 6.1.6. (Register Globals)

Register Globals is off at server level. Got the same error message with Register Globals off in the .htaccess file.

I only get the error message from the cron jobs.

QuoteJun 01, 2009 20:560 likesLike
 

I just installed a fresh new install of v.6.1.6 and received the following error:

allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe) Please go to the Dolphin Troubleshooter and solve the problem.

Can anyone assist me on which file I need to go to to change this, so I can finish my install?   Help please.

QuoteJun 01, 2009 21:040 likesLike
 

It's in your .htaccess file - line 7

QuoteJun 01, 2009 21:260 likesLike
 

I just checked and mine says it is off...   what should I do?

QuoteJun 02, 2009 13:550 likesLike
 

please help - I am trying to install v.6.1.6 and I keep getting the error above.   I went to my .htaccess file line 7 and it said it was off but the error still exists - advice??

QuoteJun 02, 2009 14:440 likesLike
 

Could you please report the exact version of php your using, you will find this in your cpanel.

QuoteJun 03, 2009 19:390 likesLike
 

5.2.9 - is the version of php

QuoteJun 03, 2009 20:330 likesLike
 

Try this, change the following in the htaccess so your commenting out the php_flag with a # like so:

<IfModule mod_php4.c>
php_flag register_globals Off
</IfModule>
<IfModule mod_php5.c>
php_flag allow_url_include Off
php_flag register_globals Off
</IfModule>

to read


<IfModule mod_php4.c>
#php_flag register_globals Off
</IfModule>
<IfModule mod_php5.c>
#php_flag allow_url_include Off
#php_flag register_globals Off
</IfModule>

----------------

then open up text editor and paste the below inside, save it as php.ini then upload to the root of your install:

safe_mode = Off
get_magic_quotes_gpc = On
allow_url_include = Off
register_globals = Off

---------------------

cross fingers and hope it works for you Smile

QuoteJun 17, 2009 16:160 likesLike
 

SERVER


php_flag register_globals Off   =   ERROR INTERNAL 500    !!!!      (chmod 755)

# php_flag register_globals Off    ok  because disabled


by  phpinfo.php

<?php
phpinfo();
?>


VIEW          DOLPHIN 7         ERROR

register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)
get_magic_quotes_gpc is Off, enable it
Please go to the
Dolphin Troubleshooter
and solve the problem.


My server view:

get_magic_quotes_gpc is Off, enable it NO !!!!!  because phpinfo.php  view   ON !!!

local value      master value

magic_quotes_gpc On On
magic_quotes_runtime Off Off
magic_quotes_sybase Off Off


error has not disappeared !!!!!!!! Frown

there must activate the other?     magic_quotes_runtime    and   magic_quotes_sybase    ?

RESOLVED !


AND

register_globals is On (warning, you should have this param in Off state, or your site will unsafe)

in    .HTACCESS          # php_flag register_globals Off                   desactived  because   error internal 500.

PHPINFO.PHP     VIEW:

register_argc_argv On On
register_globals Off Off
register_long_arrays On On
report_memleaks On On
report_zend_debug On On
safe_mode Off Off
safe_mode_exec_dir /usr/local/php/bin /usr/local/php/bin
safe_mode_gid Off Off
safe_mode_include_dir no value no value
sendmail_from no value no value
sendmail_path /usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i
serialize_precision 100 100

error has not disappeared !!!!!!!! Frown

there must disabled the other? register_argc_argv and register_long_arrays ?

RESOLVED !


allow_url_include is On (warning, you should have this param in Off state, or your site will unsafe)

in    .HTACCESS           Off                   desactived  because   error internal 500.

PHPINFO.PHP     VIEW:

allow_url_include Off Off
allow_call_time_pass_reference On On
allow_url_fopen On On
always_populate_raw_post_data Off Off

error has not disappeared !!!!!!!! Frown

there must disabled the other? allow_call_time_pass_reference and allow_url_fopen ?

RESOLVED !



verdict does not install correctly because those with a beta of faults Laughing

it works not at all
QuoteOct 01, 2009 00:581 likesLike
 

Guys,

I was having the same problem. I also am hosting on HostGator, and on php v.5.2.9

I followed the instructions by kosmic, and uploaded the .htaccess and php.ini files to root directory. No luck.

Then, I decided to try uploading the revised .htaccess to the http://mysite.com/install/ directory. No Luck.

Then, teetering on the brink of total failure, I made one last ditch effort, and uploaded the php.ini file into the /install directory.

I am now proudly staring at the Dolphin Smart Community Builder Installation Script screen. Not done with the install, but at least I am no longer dead in the water.

Thank you kosmic! I hope this little extra tip helps someone else get unstuck.

QuoteOct 01, 2009 01:030 likesLike
 

For you guys who are on Hostgator.  Why are you uploading anything?  You guys have an awesome little toy in the cPanel.  It's called php Config and if you hit it, you can enable, disable it.  Once it's on enable, you can set everything right there by just clicking the mouse.  No need to do anything else. 

 

Gawd, I want this toy on my servers...

QuoteOct 03, 2009 02:470 likesLike
 

I recommend you to contact your host to enable it for you. Some hosts allow you to change it locally.

www.Happy-Hosting.com - Build a Stable and Fast Community with our Dolphin Optimized setup.
QuoteNov 13, 2009 04:330 likesLike
 

Hi Guys, i have found a solution to this problem after going through the whole lot of trouble. I have searched everywhere and finally lucky you, i have found it. But i need any feedback i can get from this post. It worked for me and it doesn't mean it will work for you. First of all, choose a web hosting company that supports XSLT processor services. i choosed www.freehostia.com as my web hosting company. When you see "register_globals is on" error, or "get_magic_quotes is off", simply follow the instruction below:

Goto this link: www.boonex.com/trac/dolphin/wiki/thingstoknow

and follow every instruction there. Thats it, as simple as that.

Learn to grow your hair back the natural way: http://hairsurvival.blogspot.com

QuoteNov 16, 2009 08:530 likesLike
 

Thankyou Dou9las, your advise on also adding the php.ini file to the install folder also saved my install. I am now running d7 smoothly!!!

QuoteJan 10, 2010 12:370 likesLike
 

Guys,

I was having the same problem. I also am hosting on HostGator, and on php v.5.2.9

I followed the instructions by kosmic, and uploaded the .htaccess and php.ini files to root directory. No luck.

Then, I decided to try uploading the revised .htaccess to the http://mysite.com/install/ directory. No Luck.

Then, teetering on the brink of total failure, I made one last ditch effort, and uploaded the php.ini file into the /install directory.

I am now proudly staring at the Dolphin Smart Community Builder Installation Script screen. Not done with the install, but at least I am no longer dead in the water.

Thank you kosmic! I hope this little extra tip helps someone else get unstuck.

Work! Thanks dude!

QuoteSep 07, 2011 09:490 likesLike
 

Well, I've used this method suggested by kosmic, just to be able to get past installing Dolphin 7 but am now getting this error anytime i try to do something as simple as uploading a photo...

My problem is that when ever I enable my quick php editor in CPanel the site goes to a Internal Error page...but as soon as I disable the whole thing, the site comes back up...

I just don't want to have to get this error 100 different times and try to fix it 100 different times for different modules....any suggestions...?

It's now just random modules that are giving me the same error...

QuoteJan 01, 2012 22:220 likesLike
 

here is what I did: find the auto install and install it. Then after all done if you get this:

Register_globals is On (warning, you should have this param in Off state, or your site will unsafe)
Please go to the
Dolphin Troubleshooter
and solve the problem

Then go into inc/header.inc.php and change line 97 (I BELIEVE) from

$aErrors[] = (ini_get('register_globals') == 0)

to

$aErrors[] = (ini_get('register_globals') == 1).

it should now load fine, hope this helps.

QuoteMar 07, 2012 12:440 likesLike
 

I did that but not working , now i cant get annything up , no page @ all

i use my Dolp but keep getting the same mail all the time ,got 5200 mail,s inbox just today

hm donno what to do

Im running the latest Dolp 7x