Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
75% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~20.3K People Reached
About Me

A PHP Dev in the works. Smart and nice.

Interests
PHP, C#, Computers, Technology
PC Specs
Compaq CQ57, PNY 8GB RAM, Windows 8.1 Pro 64-Bit
Favorite Tags
Member Avatar for Djmann1013

I am trying to make a MP3 player using axWindowsMediaPlayer, and I am running into some issues. When the song stops playing, it is supposed to go on to the next song in the list, but instead it locks up. I don't know how to fix this, I tried googling …

1
239
Member Avatar for Djmann1013

I am having a problem with this code. I looked into the issue and found no answer. When I run this code I get this: `username1username2{"username":"Username1", "username":"Username2"}` Instead of the desired result: `{"username":"Username1", "username":"Username2"}` Here is the code: <?php error_reporting(E_ALL); ini_set('display_errors', '1'); $db = mysql_connect('localhost', '', ''); mysql_select_db("roblox"); $query = …

Member Avatar for matrixdevuk
0
130
Member Avatar for Djmann1013

I'm trying to host a Minecraft server on a Openshift DIY gear and my friend wants to join. I have a SSH key for him, and when I run this in cmd like the documentation says: "C:\Users\~Jacob\Desktop\putty.exe" -ssh -i "C:\Users\~Jacob\Documents\ssh.ppk" -N -L 127.5.90.1:25565:127.5.90.1:25565 53fd2ff4e0b8cd67260003c5@minecraft-awesomeserver.rhcloud.com It says in PuTTY that it …

Member Avatar for rubberman
0
215
Member Avatar for happygeek

A 22 year old vulnerability, yes you read that right, has been discovered which some security experts suggest could be bigger than Heartbleed. The bug, reported as '[CVE-2014-6271:remote code execution through bash](http://seclists.org/oss-sec/2014/q3/649)' relates to how environment variables are processed: with trailing code in function definitions being executed independently of the …

Member Avatar for Djmann1013
6
932
Member Avatar for happygeek

Anyone else experiencing lag of between 5 and 20 seconds when loading a new page? Started about 30 minutes ago for me, pages start to load and show the first couple of posts in a forum and then stall for a while as the browser waits for daniweb.com

Member Avatar for mreza
0
186
Member Avatar for Djmann1013

Anyone know of a way to auto-grab songs? I want to make a playlist of songs so that I can make a playlist and listen to them. I've tried making a script but it somewhat worked, it opens the menu but it doesn't add it to the playlist. Here is …

Member Avatar for Djmann1013
0
212
Member Avatar for Djmann1013

I am trying to make a timer that refreshes every 5 seconds. Here is my code: using System; using System.Collections.Generic; using System.Windows.Forms; using System.Diagnostics; using System.Timers; namespace rpanel_server { public partial class MainForm : Form { public MainForm() { InitializeComponent(); Timer MyTimer = new Timer(); MyTimer.Interval = (4000); MyTimer.Tick += …

Member Avatar for ddanbe
0
2K
Member Avatar for Djmann1013

I got an error on my Windows 7 PC out of the blue, it said this under the "Technical Information" side: stop 0x0000001A (0x0000000000005003, 0xFFFFF70001080000, 0x0000000000000833, 0x0000083B00001076) I am am doing a scan with MalwareBytes because this is the first time I got this error. Any other reason as to …

Member Avatar for purushottamaher
0
196
Member Avatar for Djmann1013

I can't figure this out but the network icon looks like this even though it is connected to the internet: [Image](http://i.imgur.com/U05pSNa.png) I didn't mess with any settings, but it just started to look like that one day. Any ideas? I looked at the settings, everything.

Member Avatar for seoulman2
0
147
Member Avatar for RAYNISH

yes. my coding as follows Public Function connectDB() connStr = "Data source =KIRAN;Initial Catalog=eStaffMgm;Integrated Security=SSPI;User Id=**;Password=*******" connSQL = New SqlConnection(connStr) Return connSQL End Function My system name is Kiran and the database name is eStaffMgm The default instance of SQL Server 2012 is MSSQLSERVER The code in the module was …

Member Avatar for ryanjayson
0
232
Member Avatar for Djmann1013

Hi, I recently got BCrypt from the NuGet manager. I am trying to find documentation on how to use it in VB, but no luck. Anyone used this? Here is the link to the package: http://bcrypt.codeplex.com/ I just need to figure out how to use this in VB.net, if I …

Member Avatar for Ancient Dragon
0
461
Member Avatar for Djmann1013

I am trying to remove spaces in the names of file uploads, but the below code does nothing. <?php session_start(); mysql_connect('localhost','root','') or die(mysql_error()); mysql_select_db('db'); if(!isset($_SESSION['username']) && !isset($_SESSION['auth'])){ header('Location: /'); } $username = $_SESSION['username']; echo $username; $dirs = mysql_query("SELECT * FROM `users` WHERE `usr_name` = '" . $username . "'") or …

Member Avatar for Djmann1013
0
336
Member Avatar for Djmann1013

Aol is not letting me login, even with a correct password. I don't know what to do?

Member Avatar for jobtardisportal
0
63
Member Avatar for Djmann1013

I was browsing my computer and in my temp folder, I found 10 photos of me taken without my consent. The names are: out_00, out_01 and the files contain photos of me taken without me knowing. Also, in the lower right, it says: 2013-5-26, 16:55:08 There are over 10 photos …

Member Avatar for Djmann1013
0
144
Member Avatar for Djmann1013

My mom, I admit is so uninformed about LAN game servers, and is not tech-savvy. She thinks that a LAN server is a public server where people outside on the internet can access my LAN server. She is misinformed, and I can't dumb it down, since she automattically thinks "A …

Member Avatar for Rik_
0
230
Member Avatar for Djmann1013

Hi, my app that I am making is not working. Here is the code: package com.awsomechat; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.ArrayList; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; import org.json.JSONObject; import android.os.Bundle; import android.app.Activity; import android.content.SharedPreferences; …

Member Avatar for peter_budo
0
300
Member Avatar for Djmann1013

I am having trouble animating a div on the same page as the div that is not animating. Here is my code: Page 2 <?php mysql_connect('127.0.0.1', 'root', ''); mysql_select_db('table'); $query = mysql_query("SELECT * FROM `blog`"); ?> <script> $('.post').click(function() { var value = $(this).attr('rel'); $('.load_post').html('Loading...').load('load_post.php?value='+value); $('.load_post').animate({"left": "-=1500px"}, "slow"); $(".posts").animate({"left": "-=1500px"}, "slow"); …

Member Avatar for LastMitch
0
92
Member Avatar for Djmann1013

Why does this error occur? Here is my code: Imports System.IO Public Class Form1 Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click OpenFileDialog1.Title = "Select Image" OpenFileDialog1.InitialDirectory = "C:\temp" OpenFileDialog1.FileName = "Image File" OpenFileDialog1.Filter = "JPEG Images (*.jpg,*.jpeg)|*.jpg;*.jpeg|Gif Images (*.gif)|*.gif|PNG Images|*.png" OpenFileDialog1.ShowDialog() End Sub Private Sub OpenFileDialog1_FileOk(sender As …

Member Avatar for Djmann1013
0
1K
Member Avatar for Djmann1013

I am having a bit of trouble with converting a string (url) into a Uri. Here is the screenshot of the error: http://www.imgbomb.com/i/d15/3bk3v.png Here is the code that is giving me trouble: Private Sub ComboBox1_Change(sender As Object, e As EventArgs) Handles ComboBox1.TextChanged Dim myString As String = ComboBox1.Text.ToString() Me.WebBrowser1.Navigate(New Uri(myString)) …

Member Avatar for TnTinMN
0
2K
Member Avatar for Djmann1013

Hi, I am trying to store individual lines of a .txt file in a ComboBox, here is my code: Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load Dim FILE_NAME As String = "history.txt" If System.IO.File.Exists(FILE_NAME) = True Then Dim objReader As New System.IO.StreamReader(FILE_NAME) Dim Line As String = …

Member Avatar for Djmann1013
0
146
Member Avatar for Djmann1013

This is confusing. I made input boxes in HTML, and included the HTML in a PHP page. I am not able to click on them to get them focused, but pressing the "tab-key" will get it working. Here is my code: (HTML) <div class="widget"> <h2>Login/Register</h2> <div class="inner"> <form action="login/login.php" method="post"> …

Member Avatar for Djmann1013
0
127
Member Avatar for Djmann1013

Hi, whenever I visit my website, this iana thing pops up (url of the page: http://www.iana.org/domains/example) making my site inaccessible. I do not know what to do. I have tried to get wround it, but it won't let me.

Member Avatar for JorgeM
0
80
Member Avatar for Djmann1013

Hi, I have this code here: **index.php** <?php include 'core/init.php'; include 'includes/overall/overall_header.php'; ?> <h1>Welcome to AwsomeChat!</h1> <p>This is AwsomeChat - a free place just to hang out. This site is made for chatting or socializing with a friend. This site is free, no membership needed to use this site.</p> <?php …

Member Avatar for diafol
0
855
Member Avatar for Djmann1013

Hi, I have no knowledge of preg_match(). I was wondering on how to detect if the text I send to the function, and only allow the text like this: sample1127 Like that, with no underscores or anything. Just text and numbers. I would be happy if you helped...

Member Avatar for Djmann1013
0
210
Member Avatar for Djmann1013

I have this code right here: if(isset($_SESSION['username'])) { header("location: home.php"); exit(); } This code works, but I want it to redirect to home.php with out having to visit a different page and then the page this code is on to trigger the code. I don't know how to do that. …

Member Avatar for Djmann1013
0
904
Member Avatar for softwaretime

This program has taken roughly 3 months to develop and now I would like other people to evaluate it for me. It's called Math Tool and it can be useful for you're tring to find out an average of data (i.e. average time) and it's also useful to display it …

Member Avatar for softwaretime
0
204
Member Avatar for Djmann1013

I have this code I made: <?php $to = "example@random.co.uk"; $$subject = "Email"; $message = " Hi, Dave! "; mail($to, $subject, $message); ?> It works fine in Chrome, but in Opera, it is obsolete. Can anyone tell me why? I thought PHP processes on the server, not the client.

Member Avatar for blocblue
0
117
Member Avatar for shotokanpoloto

Hi everyone! I am tyring to design two pages with Jscript and HTML.It's is really simple but I have problem:) on first page,you write your first name and family and by you clicking on submit button you will be directed to another web page that Welcome you. I konw I …

Member Avatar for shotokanpoloto
0
145
Member Avatar for Djmann1013

// set timeout period in seconds $inactive = 1; // Testing. Change back to 600 when done // check to see if $_SESSION['timeout'] is set if(isset($_SESSION['timeout']) ) { $session_life = time() - $_SESSION['timeout']; if($session_life > $inactive) { session_destroy(); header("Location: index.php"); } } $_SESSION['timeout'] = time(); The code above works fine. …

Member Avatar for LastMitch
0
385
Member Avatar for Noth

Before I start, I just wanted to make it clear that I have never used PHP before, therefore none of the code in this post is mine. It is all from tutorial sites that I am trying to get to work. My mistakes will probably be incredibly basic. Anyway, I'm …

Member Avatar for broj1
0
153