Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
Member Avatar for Buppy

Hi, Recently I started to encounter a new issue with my 3 year old PC. It sometimes turns off randomly, then turns back on after a few seconds. It can happen anytime, even when OS has not booted yet. Sometimes it turns off and on repeatedly, like struggling to keep …

Member Avatar for rproffitt
0
278
Member Avatar for Buppy

I noticed that there is about 15 second delay every time I start a new process. It happens while opening new programs and Chrome tabs as well (since each of them is a new process). This does not happen all the time, it starts randomly and restarting the computer always …

Member Avatar for hericles
0
103
Member Avatar for Buppy

Hello, I've encountered this problem with my PC recently. It randomly crashes from time to time (about 0 - 3 times a day). The crash can appear as following - the BSOD, a simple blank black screen, or a black screen that says "a disk read error occurred press ctrl+alt+del …

Member Avatar for khakilang
0
210
Member Avatar for Buppy

Hi, I have this problem - when I turn on my PC, and also later at random, I get an error message about not being able to connect to the DNS server. It sometimes helps if i type ipconfig /flushdns, however just temporarily. I am using my ISP's DNS server. …

Member Avatar for darren.dow.98
0
224
Member Avatar for Buppy

Hi, I'm running Windows 7 32 bit version and I've started to encounter this problem recently. After some time of using the computer (random mostly), several applications like Chrome and Windows bases applications (cmd, task manager, windows explorer, etc) starts to run really slow. For example, if I open a …

Member Avatar for RH-Calvin
0
186
Member Avatar for Buppy

Hello, Is it possible to share cakePHP sessions (stored in the database) across subdomains? This thing - ini_set("session.cookie_domain", ".mydomain.com"); seems not to be working in this case. Thanks

Member Avatar for LastMitch
0
145
Member Avatar for Buppy

Hi, I know it's possible to add actions for elements that are not in DOM yet, like $(element).live('event',function() { //code here }); Is there any way to execute the code without the event, or give it an event like 'exists' ? Like, when object is added, the function executes automatically, …

Member Avatar for kela_wala
0
243
Member Avatar for Buppy

So, i enabled mod expires to my web page. Here's the code i used: <IfModule mod_expires.c> ExpiresDefault "access plus 2 months" ExpiresByType image/x-icon "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType image/jpg "access plus 1 month" ExpiresByType image/gif "access plus 1 month" ExpiresByType image/jpeg "access plus 1 …

Member Avatar for cereal
0
178
Member Avatar for Buppy

Hi, I'm currently using this expression to validate at least 2 words, containing letters, "-" and "'". `/^((\b[a-zA-Z-']{2,40}\b)\s*){2,}$/` It works fine until someone enters unicode special characters, like from different languages. I've checked the \p{L} option, but that does not work or I am missing just something. Any help would …

Member Avatar for Buppy
0
138
Member Avatar for Buppy

Hi, I have a web app which is in the Google marketplace. When user adds the app, it creates account for that user. I also want to import all the other accounts from that domain and as I understand it can be done by accessing the Provisioning API. How do …

Member Avatar for Dani
0
235
Member Avatar for Buppy

Hello, It has come to my needs to gather more information about load balancing process and stuff related. So far it's clear that users are distributed to multiple servers depending un their current load and they all run the same app. My question is - how these multiple servers share …

Member Avatar for LastMitch
0
173
Member Avatar for Buppy

Hi, I have this following code: $('#content-load-target').load(location,function(response, status, xhr) { if (xhr.status != 200) { location.href = '/'; } else { //do something else } }); The response can be either an ajax page or be redirected (if the session has timed out). In case of redirect I want to …

Member Avatar for JorgeM
0
295
Member Avatar for Buppy

Hi, I know it's possible to open a new window with javascript and then target the original one with "opener.". Is it possible to open in a new tab instead and still target the opener? Thanks

Member Avatar for diafol
0
73
Member Avatar for Buppy

Hello, I have a website with an average hourly homepage visit of ~150, however, in the last day it suddenly jumped up to over 1000 visits per hour. Only the homepage is visited. How to determine what is causing the activity and should I be concerned? Thanks

Member Avatar for Atli
0
66
Member Avatar for Buppy

Hi, I have an array like this: Array ( [23] => 0 [12] => Array ( [2] => Array ( [66] => 0 [67] => 0 [68] => Array ( [14] => 0 [15] => 0 ) ) [3] => 0 [4] => Array ( [56] => 0 [77] => …

Member Avatar for pritaeas
0
769
Member Avatar for Buppy

Hi, I have the following HTML: <ul> <li> <div>Something</div> <ul> <li> <div>Something</div> <ul> <li> <div>Something</div> //more lists can come </li> <li> <div>Something</div> </li> </ul> </li> <li> <div>Something</div> </li> </ul> </li> <li> <div>Something</div> </li> </ul> The list can continue endlessly and the count of sublist is unknown (user defined). Is there …

Member Avatar for stbuchok
0
99
Member Avatar for Buppy

Hello, I have a lot of files uploaded with wp-admin in uploads folder. I don't have access to FTP, however, I need to download those files stored in uploads directory. Is there a way of doing it? Like - a wp plugin or something. Thanks

Member Avatar for ckchaudhary
0
121
Member Avatar for Buppy

Hi, I have the following JS: var event = window.event; if (event.keyCode == 38) { //do something } However, I keep getting the following error - TypeError: event is undefined This happens only on Firefox, for all other browsers this works fine. Thanks

Member Avatar for dcdruck
0
84
Member Avatar for Buppy

Hi, I want to set up pagination in CakePHP 2.0. The base page url is routed to be like this - '/mypage'.However, the paginator sets links to this - '/controller/mypage/page:2'. How do I configure this so the controller name isn't added in the beginning? I prefer URLs like these - …

Member Avatar for Citytech.tester
0
102
Member Avatar for Buppy

Hi, I have this situation - an user clicks a link in my site. That link sets a session variable and then redirect the user to another page. That another page then redirects the user back to the previous page, but the previously set session variable is gone. How to …

Member Avatar for diafol
0
158
Member Avatar for Buppy

Hi, I have a js script: [CODE]var inputCounter = 0; function addInput(divName){ var newdiv = document.createElement('div'); newdiv.innerHTML = "somefield1: " + "<input type='text' style='width: 250px;' name='f1[]'> somefield2: " + "<input type='text' style='width: 200px;' name='f2[]'>"; document.getElementById(divName).appendChild(newdiv); inputCounter++; }[/CODE] and the data was received by the php script [CODE] $_SESSION["f1"] = $_POST["f1"]; …

Member Avatar for aristos32
0
181
Member Avatar for Buppy

Hi, I have an array with keys like this: "9.345" "16.765" "8.123" "0" "0.123" How do i sorth them, so the keys looks like this (numerically, descending order): "16.765" "9.345" "8.123" "0.123" "0" Thanks

Member Avatar for diafol
0
135
Member Avatar for Buppy

Hi, I have this problem - some of the websites load really slowly, and when they finish loading, there is no any stylesheet or design, just plain text and links. Most of the websites are fine though. What could cause these few websites to load so slowly and incomplete? On …

Member Avatar for lolafuertes
0
168
Member Avatar for Buppy

Hi, I have a site which is listed in another site. I want to check which users comes from that other site by clicking a link, however, that other site seems to be hiding referrer as the HTTP_REFERER appears to be empty. Is there any other way of detectig users …

Member Avatar for pritaeas
0
77
Member Avatar for Buppy

Hi, I have a problem with strtotime displaying months. See the code: print(date('M-d')); //prints May-31 print(date('M-d',strtotime('-1 month'))); //prints May-01 Since i need it to get the previous month, why is the function ignoring the fact that there are 31 days in May? Thanks

Member Avatar for cereal
0
138
Member Avatar for Buppy

Hi, I have a HTML structure like this: <div> <div id="a"></div> <div id="b"></div> <div id="c"></div> </div> I know the ID of an element (let's say it's #b), and i need to know which index it has in the parent div. In this case that would be 2. How do i …

Member Avatar for pritaeas
0
83
Member Avatar for Buppy

Hi, I have this following HTML: ... <td> <div style="position: relative; top:0;"></div> <div style="position: relative; top:20px;"></div> <div style="position: relative; top:40px;"></div> </td> ... In this case the top value is counted from each div. I need it so that the top value is counted from <td> top, not the previous div …

Member Avatar for almostbob
0
71
Member Avatar for Buppy

Hi, I have an array with ID values. Let's say it looks like this - $a = array(23,4,56,21,9); What i need is to select rows with those ID's, but in exact same order as in the array. What would be the best way to do that? If i use MySQL …

Member Avatar for vibhaJ
0
85
Member Avatar for Buppy

Hi, I have this expression in my code: if (($a % 0.005) != 0) { ... } Tehnically i'm just checking modulus. However, i get division by zero warning all the time. Why that happens with this expression? The value 0.005 is not zero. The variable $a can get all …

Member Avatar for pritaeas
0
68
Member Avatar for Buppy

Hi, I have a list of elements in my page within a <div> tag. The list looks fine in other browsers, however, in Chrome it is slightly misplaced on load. All elements falls back into correct place if i mouseover them. Also, the misplacement seems to be random, sometimes it's …

Member Avatar for Biiim
0
81