Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
93% Quality Score
Upvotes Received
30
Posts with Upvotes
27
Upvoting Members
12
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
24 Commented Posts
3 Endorsements
Ranked #486
Ranked #505
~69.4K People Reached
Interests
Anything Internet...
PC Specs
10700K 32GB 3200Mhz A2000

167 Posted Topics

Member Avatar for Josh Connerty

Hello All, I have a question regarding Gutenberg React. I'm familiar with React which is what leads me to not understanding how the process works. React can only render JSX but Gutenberg seems to render HTML (presumably by setting inner html dangerously), however it also adds event listeners to the …

Member Avatar for rproffitt
0
67
Member Avatar for matei_

If theres discrepencies with spaces etc. I'd consider $ips = explode(",",str_replace(" ","",$field)); // Gives IP's foreach($ips as $key => $ip) { $range = explode("/",$ip); $ips[$key] = $range; } which will strip spaces out and then create an array of ip addresses [0] => [[0] => 192.168.0.0, [1] => 30] [1] …

Member Avatar for Josh Connerty
1
382
Member Avatar for Alican_2

You could create a custom plugin for this. Would need to know more about where the files are hosted and where you retrieve the student number from.

Member Avatar for rproffitt
0
62
Member Avatar for KnowledgeMan
Member Avatar for SimonIoa
Member Avatar for gajen007

Because React does not carry out a page refresh the cookie storage that React has access to is outdated. The best method for React & PHP authentication is to use token authentication: [Click Here](https://github.com/ParitoshVaidya/CodeIgniter-JWT-Sample)

Member Avatar for Dani
1
726
Member Avatar for allalhill

The usual way of achieving this functionality is to store a reference to the current player through a token/cookie and use that to refer to the related row in the database. For example: ________players________ id | name | gold 25 | "Player 1" | 0 Being the database structure, if …

Member Avatar for Josh Connerty
0
37
Member Avatar for KnowledgeMan
Member Avatar for Josh Connerty
0
76
Member Avatar for Marco_18
Member Avatar for adindra

Selects and Radios should be fine as long as you give them the value in witch you wich to be in the database. [code=html] <input type="radio" name="you_field" value="Male" /> [/code] If you were to insert the POSTed data from my little form you would insert "Male" into the database, whereas …

Member Avatar for diafol
0
2K
Member Avatar for sandipan.rcciit

[QUOTE=rineez;919779];-) lol.. its alright.. its nice that u find time for responding to forums in between busy work. and Yeh you got a point there... If you wish to address visitors who have disabled cookies in their browser, Session will be unavoidable... this link has some examples for using php …

Member Avatar for farah ashikin
0
1K
Member Avatar for engrjd91

I'm a little confused as to why you want so much information to log someone in. Do you mean register? You say you get 1 extra error? So this doesn't happen for every textfield? This is only happening for one? My advice would be to change the else statements to …

Member Avatar for engrjd91
0
3K
Member Avatar for dinhunzvi

Like @minitauros said, change the `header("Location: $file \r\n");` line with something like: `echo '<script type="text/javascript">window.open(' . $file . ')</script>';` See if that works.

Member Avatar for diafol
0
699
Member Avatar for Josh Connerty

Hello all, I'm trying to build a system to provide an easy access but very clever service select (sounds confusing, I will explain). Essentially I'm trying to create a system then will firstly store devices of different types, these types are: - Device type (iPhone, iPod, iPad) - Generation (4th …

Member Avatar for diafol
0
306
Member Avatar for sparkles_links
Member Avatar for shehnaz20

Because you shouldn't usually save a users password in the raw format, but instead save it as an ecrypted version using something like md5() you can't physically retrieve the users password. Instead you could send out a reset email...

Member Avatar for gabrielcastillo
0
1K
Member Avatar for cjohnweb
Member Avatar for Josh Connerty

Hello All, I wonder if someone could help me, I'm about to start work on a pretty heavy system that will be massively database driven. I was wondering if there was a framework out their a bit like jQuery for example that will assist me in all my MySql funcitonality. …

Member Avatar for Josh Connerty
0
316
Member Avatar for mattyd

And to add to this. Like @jkon said, it will be the ISP's designated IP for that client. In most cases everytime your router connects to the ISP it will be designated a new IP address and therefore collecting their current IP address is pretty useless as next time they …

Member Avatar for JorgeM
0
138
Member Avatar for Jibran12345

if ($channel_name6 = 'post') { $channel_name2 = $channel_name2; } else { $channel_name2 = "<img src='/videobox/data/uploads/images/$channel_name2' height='200px' width='100px'>"; } Correct me if I'm wrong but are you not trying to see if $channel_name6 is equal to "post" and not set the value of it to "post"? If so then you need …

Member Avatar for Josh Connerty
0
208
Member Avatar for nathanpacker

Please make sure that when adding headers you clear the line: [code=php] $headers = "From: ".$from_address."\r\n"; [/code] Take note on the \r\n part.

Member Avatar for dineshsjce
-1
2K
Member Avatar for brandon66

Yes there is, however the most valid point that has been made this far is that the theory behind this is bizare. All you would have to do is input the data to the database then re-print the page to the document looping through each feild and seeing what was …

Member Avatar for brandon66
0
198
Member Avatar for chris evans

I'm not overly keen with using the "toggle()" function in this way. I'd advise using the "animate()" function. The reason being is that toggle doesn't communicate at which state the object is at present, it only does the oposite. So if it's displayed, it just hides it. If it's hidden …

Member Avatar for Josh Connerty
0
302
Member Avatar for AARTI SHRIVAS

You need to use JavaScript and possibly AJAX to make this work. You need to put an "onChange" event on each drop down box so that the page reacts to the drop down box being changed. Do you have any JavaScript knowledge?

Member Avatar for AARTI SHRIVAS
0
4K
Member Avatar for johndorward

Yes, wmp11 has vital DVD codecs missing, silly really as many people liek yourself will play dvds via their PCs using wmp. The codecs are wide spread though so there is many places you will be able to download the required codecs.

Member Avatar for Rednaxella
0
426
Member Avatar for scaiferw

Saving your image as a PNG or GIF file format will keep the transparency from you image editor. JPG/JPEG does not hold transparency therefore if you save a transparent image as a JPG you image editor will replace add a white background so as to cover the transparency.

Member Avatar for anand01
0
144
Member Avatar for snefmoo

Ok the issue from what I can see is the way in wich you are connecting to the database. Try this method: [code=php] $con = mysql_connect( "SERVER" , "USERNAME" , "PASSWORD" ) or die( "Could not connect: " . mysql_error() ); $db = mysql_select_db( "DATABASE" , $con ); [/code] This …

Member Avatar for drjohn
0
846
Member Avatar for sarayewo

Yes sorry I haven;t replied, the RAM with the higher frequency should clock down to the maximum supported frequency of your motherboard. The reason DDR RAM is so expensive is due to the fact that they are no longer mass produced as all new computers are using DDR2 or DDR3 …

Member Avatar for caperjack
0
1K
Member Avatar for love_bug

Or use a smart idea and use the JavaScript time method to check for a new record using AJAX. Really, can no-one create a chatting system? Basicly you need to look up javascript counting and that will teach you how to run the function and how spaced apart to run …

Member Avatar for gelos
0
348
Member Avatar for tanyoyo

Have you tried removing your motherboard from the case and removing exccess parts one after another until you utilise the problem?

Member Avatar for babakbet
0
142
Member Avatar for anumitadas

You need to import the database first, in order to do this you must use the PHPmyadmin import system or the SQL system, personally I prefer the import system. In order to do this you must open the file and copy all of the contents into the SQL input box …

Member Avatar for sanjay1kumar11
0
180
Member Avatar for Gearspro

Okay well I first need to ask how dedicated you are to this? This is a complex proccess! Basicly to start with you will need to compare the two database systems. In order for them to work together they need to use just the one. Another issue is they probably …

Member Avatar for Gearspro
0
157
Member Avatar for coolmind259

What system is the website running on? You can use the following commands to find this out: [code=php] echo "Site Software: ".$_SERVER["SERVER_SOFTWARE"]."<br />"; echo "Proccessors: ".$_SERVER["NUMBER_OF_PROCESSORS"]; [/code] If the proccessor returns something silly like 1 then that might be an issue (these things can take allot of proccessing) but this …

Member Avatar for cwarn23
0
246
Member Avatar for Josh Connerty

Hey, Okay my mums laptop is a pile of junk and she has managed to break it even more then it already is. She is a windows live messenger obsessive so she really can't live without it. After updating Java it has signed in then crashed. I have checked the …

Member Avatar for szeegers
0
175
Member Avatar for huggie54

Forgot or forgets? I should imagine it has an easy fix in the registry, have you tried contacting microsoft about registry entries for live? I presume you have reinstalled messenger?

Member Avatar for caperjack
0
137
Member Avatar for peterson93

Hmmm, I don't tend to look at the error codes at first. Try going to [icode]Control Panel > Administrative Tools > Event Viewer[/icode] and then post all information regarding your error. Most BSOD are due to power defficiencies, try going into your BIOS and then the hardware monitor or something …

Member Avatar for goldeagle2005
0
246
Member Avatar for Bob_180_Bob
Member Avatar for Bob_180_Bob
-1
360
Member Avatar for mitsraj

Also try defragmenting your hard drive and checking for any hard drive issues. It secondly (if it isn't malware, was also my first assumption) might be caused by a hard drive issue as it seems windows can't access some files or is taking very long to do so. I believe …

Member Avatar for kaninelupus
0
203
Member Avatar for andydeans

I would suggest looking over w3schools tutorials. The reason being that if you use a work computer or a friends computer you are going to find it very complex. It is okay to use an editor likes this as I use something similar , but I would suggest learning on …

Member Avatar for andydeans
0
196
Member Avatar for TechExpressInc

The first thing you must figure out is what IP the intranet is going to read, whether it be internal or external IP. Once you have found this out then it will be easier to use the IP to refer. If it reads internal then it is most likely you …

Member Avatar for cwarn23
0
174
Member Avatar for ishlux

Yes it seems that the new Xampp is taking tomcat as part of it as to an add-on which I can only figure is causing the issues.

Member Avatar for cwarn23
0
91
Member Avatar for sssss01

If that is the case then you need a bog standard upload script, accept from in the success block of code you will need to run some queries that will store the name of the file in the database along with any other information about the file you may need. …

Member Avatar for Graphix
0
297
Member Avatar for Tekkno

When a user registers you must provide a link to the verification page with two get variables U & AID (activation ID), you must also store these details in the table. When it verifies a user then remove all values from the AID field thus leaving it blank. Then when …

Member Avatar for Tekkno
0
230
Member Avatar for siddious

Did you disasemble your case to correct the faulty button? Allot of the hardware in the system are verry touch sensative. Maybe you have knocked one of the wires out that leader from the button to the Motherboard?

Member Avatar for PcTestCard.com
0
127
Member Avatar for kngscrpn24

I would first suggest taking the motherboard out of the case and connect JUST the PSU, this should make the MOBO light turn on, if it doesn't then this is a faulty motherboard. The mother board should keep beeping because there is no RAM in place. And as far as …

Member Avatar for Josh Connerty
0
267
Member Avatar for AdventDeo

Okay here is a little tutorial on the workings of what you are trying to do: 1. Add an [icode]onChange[/icode] event to the pervious select field, this is so that when the user changes this it will trigger the next select box to run the query. 2. In your JavaScript …

Member Avatar for Josh Connerty
0
241
Member Avatar for smd75jr

There is a few things that apear a little fishy, one of wich being [icode]O4 - HKLM\..\Run: [PHIME2002ASync] C:\WINDOWS\system32\IME\TINTLGNT\TINTSETP.EXE /SYNC[/icode] and another being [icode]C:\Program Files\DIMES\Agent\Classes\Base\bin\wrapper.exe[/icode] I would take a look into getting Malware Bytes onto the system you are having an issue with (via a disk or a usb memory …

Member Avatar for Josh Connerty
0
261
Member Avatar for mbirame

Okay because we have a wide range of possibilaties we need to narrow it down. First I would suggest that, the next time it happens to unplug your router or modem for around 10 seconds then plug it back in. If you have a Dynamic IP then your IP will …

Member Avatar for Josh Connerty
0
98
Member Avatar for Xjmaslord4
Member Avatar for hawashafiq

I would suggest also making a dedicated table for the user preferences. However I would suggest making a column for each preference. Eg. user_id, gardening, pet, food. As for the pets, gardening and food tables, it is a good idea to make as many tables in your database as possable, …

Member Avatar for hawashafiq
0
149

The End.