Search results

  1. S

    PHP - opening a socket to a ventrilo server

    try just: fsockopen($ip, $port, $errno, $errstr);
  2. S

    Cms,

    If its for new only then I Might suggest http://cutephp.com - Cute news.
  3. S

    PHP Single File Cron job

    Alright I'm trying to make a single file cron for every 15 minutes to run on the server but after a certain time has hit 30 days, I want it to run that as well.. This is what I have. require("D:/XAMPP/Virtual/Nevux/FileLibrary/configuration.db.php"); $getCronInfo = $db->dbQuery("SELECT * FROM...
  4. S

    Unreal IRCd links

    I want to link two servers but its not showing up in /links or /map link remedy-designs.zapto.org { username *; hostname remedy-designs.zapto.org; bind-ip *; port 6667; hub *.zapto.org; password-connect "LiNk"; password-receive "LiNk"; class servers; options {...
  5. S

    Selling Domains

    I could renew them before they expire now then hmm....... what to do then?
  6. S

    Selling Domains

    Domain Name: thejargon.us Domain Registrar: Optinom Domain Expiration: Jul 30, 2009 Domain Name: codingdev.us Domain Registrar: Optinom Domain Expiration: Jul 28, 2009 I paid $8.50 and $6.25 for these, Mind offering 2500+ creds (per domain) on here? =P If there is anything else post...
  7. S

    MySql Connection String

    Don't know whats wrong with yours. works fine for me :>
  8. S

    MySql Connection String

    Guys, you can setup a remote-MySQL thing in cPanel. allow your IP Address to connect to the server's MySQL by going to: yourdomain:2082/frontend/x3/sql/managehost.html then you can add your IP. the connection string would be: server=yourdomain; user id=your_user; password=your_pass...
  9. S

    JavaScript Help..

    hmmm o-o I'll try it, thanks ;D
  10. S

    JavaScript Help..

    Alright I would like to create a custom WYSIWYG editor and I was wondering if there is a way for JavaScript to search a page for textarea tags then replace them with a say... table with 2 tr's and one of which contains a TD with the different buttons, then the other TR contains the TD with the...
  11. S

    Smarty not working D<

    Alright I'm creating a forum as I've said in other posts for help and I"m having a bit of trouble with the templates itself now :p Here is my PHP code. $getCategories = $db->dbQuery("SELECT * FROM `" . DB_PREFIX . "forum_categories` ORDER BY `sort` DESC"); while ($categories =...
  12. S

    [PHP] Sessions not working.

    Meh. I forgot I switched my DBA class to array instead of object. I changed it, figured Hell I could probably switch it to object in the smarty templates too so I did and its all working fine now ;D
  13. S

    [PHP] Sessions not working.

    Never mind. I used the wrong function for my sessions. was using ->salt instead of ['salt']
  14. S

    Hey, I saw your site and saw the sponsor thing. Could I get my link up there after I hand you...

    Hey, I saw your site and saw the sponsor thing. Could I get my link up there after I hand you credits? :P
  15. S

    [PHP] Sessions not working.

    Alrgiht I've set up my login script which has set teh username and password session yet when I go to /cPanel/ it refuses to show me as logged in. Below is my code. login file: $_SESSION['username'] = $username; $_SESSION['password'] = $Functions->Encrypt($password, $arrayUser->salt); THen in...
  16. S

    Forum game <King of the hill>

    I shove you into a rift in time and space then claim the hill.
  17. S

    PHP doNav Function

    Alright, I'll try that now. ^_^ Works like a charm ^_^
  18. S

    PHP doNav Function

    Say I have the following: ?x=ucp&y=password I expect it to be User Panel &raquo; Password
  19. S

    PHP doNav Function

    I changed it to 0 and it doesn't parse it still :p
  20. S

    PHP doNav Function

    Alright I'm making a forum system of my own and I need help making a breadcrumb trail. This is what I have so far. function doNav($act){ $addonfromHere = "<a href=\"".SITE_LINK."\">Index</a>"; $linkNum = count($act); $linksUsed = 1; $linksreturn = ""; foreach($act as $links){...
Top