Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~14.9K People Reached
About Me

Software Engineer

PC Specs
-P4 3.06 GHz w/HT running Gentoo Pentium-D 820 overclocked to -3.0GHZ RAID1, 2xSATA, NVIDIA GeForce…
Favorite Tags

75 Posted Topics

Member Avatar for jjerryjenson
Member Avatar for skor

you are getting this because your host has enables safe mode in php. You can not change the session save path with safe mode on (i think). You need to leave that feature blank and move on. You can go to a new host or fwd the error to your …

Member Avatar for wohoo
0
271
Member Avatar for jjfletch

the site is probibly using sessions to store login information. Did you try to post the variables using: [php] $vars = 'user=Username&pass=PW' curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $vars); [/php] It might help..

Member Avatar for santy0105
0
93
Member Avatar for kyleknapp

Take this: [quote=kyleknapp;262085] [code]SELECT * FROM `phplist_user_user_attribute` WHERE `attributeid`= 7 AND `value`= "68104" [/code] [/quote] and make a comma separated list od the id's which you want to update [php] $sql = 'SELECT id FROM `phplist_user_user_attribute` WHERE `attributeid`= 7 AND `value`= "68104"'; $query = mysql_query($sql); if mysql_num_rows($query) { $ary = …

Member Avatar for peter_budo
0
151
Member Avatar for nathanpacker

change your query to this: [php] mysql_query("DELETE FROM employees WHERE recordid='".$recordid."'") [/php] you cant wrap a variable in single quotes as it will be trated as literal.

Member Avatar for nav33n
0
4K
Member Avatar for indianleo

[code] #check disk usage df -h #if it is a symlink unlink filename #if it is a directory or file rm -Rf filename #if you ar ereally adventurous... rm -Rf ~/Desktop/* [/code]

Member Avatar for Don Gino
0
113
Member Avatar for jibsonline

why only 10? and why would you want to restart Apache based on load avg? Load average is a calculation loosely based on the amount of time a process has to wait for the CPU, I have personally seen my BSD boxes hit an excess of 600 load average before …

Member Avatar for sn4rf3r
0
122
Member Avatar for lansing

are you sure you have the url's correct? are they https? or maybe a different subdomain?

Member Avatar for sn4rf3r
0
108
Member Avatar for nicheswork

Its fine, just go to adobe's site and install the flash player from there. once you do that every one will stop asking. As for security, you are using IE6 so i think thats a moot point ;-)

Member Avatar for sn4rf3r
0
125
Member Avatar for petzoldt01

welcome to web design. You should prolly use [URL="http://www.quirksmode.org/css/condcom.html"]conditional comments[/URL] to include an IE only stylesheet so you can make changes for only IE. It would be wise to stop using tables for non-tabular data. Ues div's instead. Link to [URL="http://www.w3.org/2002/03/csslayout-howto"]tableless layouts[/URL]

Member Avatar for VanPetrol
0
111
Member Avatar for bhuvan83

Oracle and mysql use two different password encryption algorithms. Are you talking about the password to connect to the database, or a password for user authentication? How did you store the password in the database? Plain text, MD5, homegrown hash? Could you post the relevant code? not the whole file …

Member Avatar for peter_budo
0
106
Member Avatar for dcarrillo18

any erros outputted? If you are dnying all access to the "secure" are there any entries in the apache error logs? I would wrap the file_get_contents() call in an if statement, this way you can see where the program fails. maybe try echoing the path fname, fpath variables out, see …

Member Avatar for DanceInstructor
0
138
Member Avatar for trash_essex
Member Avatar for trash_essex
0
96
Member Avatar for mohaydee

First off, you need to add a enctype to your form tag and add a name to your submit button (to be used for submission) like this [html] <form method="post" action="sendeial.php" enctype="multipart/form-data"> <!-- all your form code --> <button type="submit" name="submitBtn" value="Send Mail">SendMail</button> [/html] And as long as this is …

Member Avatar for UrbanSky
0
101
Member Avatar for Anaa
Member Avatar for mmxx66
0
122
Member Avatar for sam1

code looks ok, except for this: [quote] mail("afgone@gmail.com", $sub, $notes, $message, $from); [/quote] you need to look at [URL]http://php.net/manual/en/function.mail.php[/URL] [code] $headers = "From: Me <myemailaddress.com> \r\n"; $headers .= "Bcc: Santa Clause <bigman@northpole.com>\r\n"; mail($toaddress, $subject, $messages, $headers) [/code] You also need to need to set edit your php.ini file to use …

Member Avatar for sn4rf3r
0
158
Member Avatar for linux

no more space then the files you will be creating with xvidcap. Maybe its time for a second HD?

Member Avatar for sn4rf3r
0
177
Member Avatar for FireSBurnsmuP

[code] cd directory ./configure --help | less ./configure make make install make clean [/code]

Member Avatar for John A
0
136
Member Avatar for FireSBurnsmuP

X is your GUI base, you running gnome/kde on top of X. You can fire X up by typing startx in the shell, if your system defaults to a GUI login then X and your desktop env are already running. Try clicking on System->Preferences->Mouse that site worked fine for me...

Member Avatar for FireSBurnsmuP
0
128
Member Avatar for linux

desktop: Im going with KDE, since the command in the shell is ksnapshot. I think superKaramba is a tool for making widgets for the KDE env and not gnome. sound drivers: joe's right, google or your distro. Since Linux is open source everyone pretty much shares the specific drivers if …

Member Avatar for John A
0
110
Member Avatar for FireSBurnsmuP

can you post your grub.conf? you should have something like this: [code] title=Windows XP rootnoverify (hd0,1) makeactive chainloader +1 [/code]

Member Avatar for FireSBurnsmuP
0
168
Member Avatar for linux

I'm running gentoo on a PII w/256Mg ram, and dual 4G SCSI drives. Compilation does take a while thats why I cross compile on my faster machine and move the binaries over to this one. I use this box for my firewall, squid, and email machine, been up for almost …

Member Avatar for sn4rf3r
0
104
Member Avatar for Ancient Dragon

did you try wget or ftp from the command line? also what your nic set to? 10baseT, 100baseTX?? sounds more like a networking problem to me

Member Avatar for sn4rf3r
0
97
Member Avatar for GreenDay2001

I do all my work in the shell, heres what I use: #1 emacs #2 vim #3 nano/pico and sed,awk,tr for bulk editing.

Member Avatar for GreenDay2001
0
267
Member Avatar for Covinus

If this is your first time, I would stay away from gentoo. Dont get me wrong I use Gentoo on 3 desktops, 2 laptops, 4 production servers(apache and mysql), 2 development servers, and a file server. Gentoo great distro, but you will spend many many hours just getting it up …

Member Avatar for Covinus
0
395
Member Avatar for EnderX
Member Avatar for chanthru

check the permissions on the /home and /home/.ssh folders of both machines. you can also use the -v option with ssh to output all debugging to stdout. [code] ssh -v -l user machine [/code]

Member Avatar for sn4rf3r
0
142
Member Avatar for gbs

you need to recompile with the desired modules. Also, it is a really really really bad idea to rename a script witha .bak extension since the server will deliver the script unparsed and exposing all your logic and or the keys to your server.

Member Avatar for sn4rf3r
0
134
Member Avatar for rfw

[code] man cp man rpm cp /tmp/cfdisk-2.11w-alt3.i588-1.rpm ~ rpm -i ~/cfdisk-2.11w-alt3.i588-1.rpm [/code]

Member Avatar for sn4rf3r
0
140
Member Avatar for NonProgrammer

you can use regular expressions in sed, this will replace all instances of findthis with replacement [code] sed -e 's/[fFiInNdDtThHiIsS]/replacement/g' [/code] give an example of a string you are looking for and we can give you an example regex to use.

Member Avatar for sn4rf3r
0
125
Member Avatar for Harry smith

yep, tons of them. Just google asp to php converter and you will get 8million+ results [url]http://asp2php.naken.cc/[/url] [url]http://www.design215.com/toolbox/translator/[/url] some are free, some are not. In my experiance nothing works 100% you will have to convert some things by hand.

Member Avatar for sn4rf3r
0
77
Member Avatar for alice1

have you tried the [URL="http://pear.php.net/package/Pager/"]PEAR:Pager[/URL] package? It is really easy to use and is debugged for you. There are also plenty of other packages around, try phpclasses.org as well.

Member Avatar for sn4rf3r
0
60
Member Avatar for monkey64

first, you can put those if statements into a case [php] switch ($m) { case 'a': $link = 'web1'; break; case 'b': $link = 'web2'; break; case 'c': $link = 'web3'; break; default: $link = 'default'; break; } $link = 'http://www.' . $link . '.html'; [/php] That will improve readability, …

Member Avatar for sn4rf3r
0
148
Member Avatar for poornapriya

[URL="http://www.apachefriends.org/en/xampp.html"]XAMPP[/URL] is a package that bundles apache,mysql,php,perl in one easy to use tarball. other wise you can go to mysql.com and download the binaries or source code and install it. Depending on your distro, you should have mysql in a package management system, ports,portage,apt_get,pkg_add, etc...

Member Avatar for sn4rf3r
0
63
Member Avatar for savage1

dont thnk that will work either, you are trying to nest a for loop inside of another for, correct? should be somehting like this: [code] for instid in $INSTID do echo "" for fancid in $FANCID do echo "Instance on ${fancid} ${instid} instance" done done exit 0 [/code]

Member Avatar for masijade
0
141
Member Avatar for vssp
Member Avatar for chrisondo
Member Avatar for riptheriper

i cant get to that image, can you explain any errors you are getting? how about relevant code?

Member Avatar for sn4rf3r
0
118
Member Avatar for kenjutsuka

jowprogrammer is right, you need to install the windows drivers and use ndiswrapper to use them. ndiswrapper project page: [url]http://sourceforge.net/projects/ndiswrapper/[/url] suppported drivers: [url]http://ndiswrapper.sourceforge.net/mediawiki/index.php/List#L[/url] find your card and download the drivers [code] #mkdir /lib/windrivers #cp <driver>.inf /lib/windrivers #cp <driver>.sys /lib/windrivers [/code] once you have ndiswrapper and the drivers installed in the …

Member Avatar for sn4rf3r
0
134
Member Avatar for killsom3thing

nope. pay money and get a hosting account. why would you put a forum on a free ISP anyway? You will surely go over bandwith and hd space in no time.

Member Avatar for Puckdropper
0
70
Member Avatar for EnderX

can you run [php] print_r($_POST) [/php] that will display the array, then you can refer to the embedded array like [php] $_POST['myarray']['anotherarray']['yetanotherarray'] [/php] make sence?

Member Avatar for sn4rf3r
0
79
Member Avatar for Ries

try this: [php] while ($player['health_n'] || $opponent['health_n'] && $turn < 25) [/php] If a variable is zero it can be thought of as FALSE, and also you were looking for $turn that was greater than the string 25. see if that helps.

Member Avatar for Ries
0
95
Member Avatar for cyfm

for a n00b, I would suggest Fedora or Ubuntu. SuSE is broke, debian is ok, anything else and you will hate yourself for trying. After you get a few installs under your belt, drop upooptu and grab a real distro like gentoo or even a bsd.

Member Avatar for sn4rf3r
0
173
Member Avatar for stolld
Member Avatar for tech291083

what does dmesg show? tail /var/log/messages That would be a good start to finding the errors. you can also look in /var/log/Xorg.* to see any x11 related errors.

Member Avatar for sn4rf3r
0
47
Member Avatar for Ghostrider4444

why dont you back up your data, and start over? do you want to keep your winblows data?

Member Avatar for Ghostrider4444
0
135
Member Avatar for praseena
Member Avatar for ivirtua

[code] mysqlhotcopy --user=user --password=password --alowold database foldertocopyto for i in `find ./foldertocopyto -type f` ; do gzip $i `; done #or you can do this find ./foldertocopyto -type f | xargs gzip [/code] Mysqlhotcopy comes with your mysql install/rpm/source you might need to run a locate to find the script

Member Avatar for sn4rf3r
0
249
Member Avatar for new_girl

with out the code, it is impossible to know what kind o functionality your tech guy has added to this project. It sounds like your project is database driven, so you might be able to change the values from the DB. If this is only a temp sickness, you should …

Member Avatar for new_girl
0
130
Member Avatar for welbyobeng

Isnt this a continuation of a previous thread? Check to see if mysql_num_rows is a valid resource and base youre returned value on that

Member Avatar for sn4rf3r
0
173

The End.