السلام عليكم
اخواين انا عندي مشكله غريبه ؟؟؟ عندي النسخه 5,5 من المجله . و سويت مره خروج و جيب اسوي دخول يطلع لي صفحه و يقول لي Get Out!
وش المشكله منيب قادر ادخل و شي ثاني بعد حتا لوحت التحكم للموقه منيب قادر ادخلها ؟؟؟
السلام عليكم
اخواين انا عندي مشكله غريبه ؟؟؟ عندي النسخه 5,5 من المجله . و سويت مره خروج و جيب اسوي دخول يطلع لي صفحه و يقول لي Get Out!
وش المشكله منيب قادر ادخل و شي ثاني بعد حتا لوحت التحكم للموقه منيب قادر ادخلها ؟؟؟
أخوي powerguy هذه المشكلة معي انا ايضاً ولم يفيد إعادة تركيب الإكسبلورر أو تحديثه أو حتى إعادته للإصدارة السابقة وقم ت بحلها من خلال إستخدام متصفح آخر وهو موزيلا،حيث أقوم بتصفح المواقع التي تحتاج لإشتراك وتسجيل دخول بواسطته أم غير ذلك فأقوم بإستخدام الإكسبلورر.
أخي أنا اتوقع لو ماكنت غلطان السبب موب من الكوكيز
انت مركب المتصفح اكسبلوري 6 (Explorer 6) وهذا المشكلة موجوده فيه ................. المهم في ملحقات موجوده في المكروسوفت يعالج هل مشكلة تقدر تدور عليه هناك لأني الصراحة ما أعرف مكانه
__________________
موت الصالح راحة لنفسه * وموت الطالح راحة للناس
اخي العزيز ... المشكلة في المذربورد...انا مريت بنفس المشكلة .. ولمن غيرت المذربورد انحلت المشكلة ... اما في اسلاك تتعلق بنقل معلومات معينة غير مظبوطة او افي ذاكراة معينة عطلانة ( على فكرة ترى ما عندي محل كمبيوتر .. يعني الشغلة مو دعاية) ..على العموم ممكن تغير المذربورد بواحدة ثانية ...من صديق .. بشرط انك تقدر تدخل لوحة التحكم من جهازه .. كتجربة فقط ... وبالتوفيق انشاء الله
__________________
الحمدلله
هلا اخوي ....powerguy
انا عندي لك الحل انبسط ومضمون 100 % ان شاء الله.
اذهب الى هذا الرابط وستجد مبتغاك
http://www.coffee4arab.com/phpbb2/viewtopic.php?t=122
المشكله هي مشكلة عدم القدرة على كتابة الكوكيز في جهازك. السبب لأن .... والا اقراه في الرابط اللي حطيت لك.
اذا كانت مشكلتك في النيوك فقهوة نت هي الحل.
__________________
خالد
ADMIN LOGIN PROBLEM FIXED!
Ok well i was having trouble with PHP Nuke 5.5 with an admin loop like hundreds of others. What i did to fix this was:
In config.php, i changed the following:
OLD LOOK:
$dbhost = "localhost";
$dbuname = "root";
$dbpass = "";
$dbname = "nuke";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "MySQL";
NEW LOOK:
$dbhost = "localhost";
$dbuname = "enderwiggen";
$dbpass = "*******";
$dbname = "enderwiggen_net";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "mysql";
If you have access to your sites control panel, the $dbuname = "enderwiggen"; will be the same as your control panel login name, and $dbpass = "*******"; will be your control panel password. In your CP, there should be a MySql Database button. Go into it and see what it says in Bold letters at the top: Mine says Database - enderwiggen_net. So naturally i would put enderwiggen_net into the $dbname = "enderwiggen_net"; part. Save config.php don't upload it, because it will be a waste of time without having fixed the other file.
The Second thing i did was i edited the following from includes/sql_layer.php
Part 1:
OLD LOOK:
/* $dbtype = "MySQL"; */
/* $dbtype = "mSQL"; */
/* $dbtype = "PostgreSQL"; */
/* $dbtype = "PostgreSQL_local";// When postmaster start without "-i" option. */
/* $dbtype = "ODBC"; */
/* $dbtype = "ODBC_Adabas"; */
/* $dbtype = "Interbase"; */
/* $dbtype = "Sybase"; */
NEW LOOK:
$dbtype = "mysql";
/* $dbtype = "mSQL"; */
/* $dbtype = "PostgreSQL"; */
/* $dbtype = "PostgreSQL_local";// When postmaster start without "-i" option. */
/* $dbtype = "ODBC"; */
/* $dbtype = "ODBC_Adabas"; */
/* $dbtype = "Interbase"; */
/* $dbtype = "Sybase"; */
Indicating you are using mysql as the database.
Part 2:
OLD LOOK:
case "MySQL":
$dbi=@mysql_connect($host, $user, $password);
mysql_select_db($db);
return $dbi;
break;;
NEW LOOK:
case "mysql":
$dbi=mysql_connect($host, $user, $password);
mysql_select_db($db);
return $dbi;
break;;
Notice that the name "mysql" is in lowercase in the NEW LOOK as well as the NEW LOOK not having the @ symbols in the second line.
Remove the @ Symbols for all
case "mysql":
$dbi=mysql_connect($host, $user, $password);
mysql_select_db($db);
return $dbi;
break;;
throughout includes/sql_layer.php.
Now you can upload both these files to your server. Go to admin.php through your browser.
NOTE: there will be database errors showing on the page but ignore them. The @ symbols simple silenced these errors:
If you get an error at the very top of the page saying:
Access Dened (dbname@localhost), then something in your config.php file is wrong. it will either be:
-->$dbhost = "localhost";
-->$dbuname = "enderwiggen";
-->$dbpass = "*******";
-->$dbname = "enderwiggen_net";
$prefix = "nuke";
$user_prefix = "nuke";
$dbtype = "mysql";
It may vary from person to person.
If that is wrong then replace the variables with the correct information i mentioned in the first part of this post.
NOTE: Be SURE to chmod these files to 666:
admin.php, auth.php, backend.php, banners.php, config.php, footer.php, header.php, index.php, mainfile.php and modules.php.
This is the ONLY CHMOD'ing i did and it works fine for me. Contrary to what the readme says, this works good for me.
Finally,
Go to your control panel, and locate and go to nuke_authors table.
put these as your defaults:
Field Type Attributes Null Default Extra Action
aid varchar(30) No God
name varchar(50) Yes God
url varchar(60) Yes http://yourdomain.com/
email varchar(60) Yes you@yourdomain.com
pwd varchar(80) Yes dc647eb65e6711e155375218212b3964
This will set your login details to the folliwing:
ADMIN ID: God
PASSWORD: Password
these are both CaSe SeNsItIvE so be sure to get them right or it will not work.
Thats all folks! Thats all i did to get rid of my admin login loop! Hope it works for you as it did for me!
منقول للفائدة
لدي أحد أقربائي مشكلة كهذا النوع
قام بإعادة تثبيت ويندوز ولكن مانفع؟
__________________
عزوز الحسني