Apabila anda mengalami error port di xammp untuk apache dan mysql, anda dapat mengganti port nya sebagai berikut :
1. Mysql dari port 3306 diganti menjadi 3307
2. Apache dari port 80 diganti menjadi 8079
Kamis, 18 Juni 2015
Rabu, 17 Juni 2015
POST Content-Length exceeds the limit in XAMMP
ketika upload file dalam jumlah besar di xampp menemukan pesan error POST Content-Length exceeds the limit in XAMMP maka solusinya adalah masuk ke xampp/php/php.ini dan edit test berikut
upload_max_filesize = 1000M;
post_max_size = 1000M;
rubah dengan yang anda inginkan
Selasa, 16 Juni 2015
Solving Error Apache XAMPP
Error ini biasanya disebabkan karena merubah xampp ke lokasi yang lain,,Error yang disebabkan semacam ini dapat diatasi dengan cara merubah path apche yang akan dieksekusi ke path apche yang baru.
- Buka registry editor: start > run > ketik: regedit > ok
- HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Apache2.2 (asumsi: service yang akan dirubah adalah Apache2.2)
- Klik kanan ImagePath pilih Modify
- Ubah value data
before: “C:\xampp\apache\bin\apache.exe” -k runservice
after: “E:\xampp\apache\bin\apache.exe” -k runservice - OK
Apache dan Mysql XAMPP always on
Saya memiliki masalah jadi ketika saya log off dari pc kemudian log in kembali service apache dan mysql di xampp selalu di on kan manual...nah berikut cara agar apache dan mysql di xampp menjadi service jadi ketika kita log in kembali service apache dan mysql otomatis on
Apache service install:
/xampp/apache/apache_installservice.bat
Apache service uninstall:
/xampp/apache/apache_uninstallservice.bat
Apache service install:
/xampp/apache/apache_installservice.bat
Apache service uninstall:
/xampp/apache/apache_uninstallservice.bat
Senin, 15 Juni 2015
Fatal Error: Maximum execution time of 30 seconds exceeded in phpmyadmin
To fix this, open the php.ini file from your xampp installation (I found my file here: C:\xampp\php\php.ini)
Then just change the value of the max_execution_time parameter from 30 to 60 seconds or greater.
Then just change the value of the max_execution_time parameter from 30 to 60 seconds or greater.
Kamis, 27 November 2014
Clear Session
Pernahkah anda mengalami, ada satu page sessionnya tidak bisa update namun ketika di refresh langsung update session nya...bagaimana cara mengatasinya...session dari page tersebut harus di clear page, dan dengan cara menempatkan script berikut di controller jangan di view
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
Senin, 03 November 2014
Langganan:
Postingan (Atom)