
OJB
Members-
Posts
362 -
Joined
-
Last visited
Everything posted by OJB
-
I too use IPB, but I am running an older version which back in the day was free of charge. It is no longer available (but there are still a few developers who patch it if/when vulnerabilities are found)... SMF is Simple Machines Forum . It is a very simple and easy to use forum. I installed it once as a test, it was pretty straight forward, but having used IPB for like 6 or so years I am far more comfortable with that. You will find loyal customers for all forums, equally you will find disgruntled ones too. There are loads of forums out there, but if you are inexperienced with forums then the best route is probably to go with the SMF install direct from fantastico in your cpanel. It will set everything up for you automatically so you don't need to fuss about. SMF: http://www.simplemachines.org/ (free) Invision Board: http://www.invisionpower.com/community/board/index.html (charged) VBulletin: http://www.vbulletin.com/ (charged) phpBB: http://www.phpbb.com/ (free) Those are probably the four most popular forums around. Although there are others. I would have a look at each and the support they all offer and see if they are the right ones for you (if you decide there is indeed interest for a forum with your site)
-
Glad you got it working. With the migration to the a new server the IP does change because the server is located in a physically different location... If you connect to your FTP using: ftp.yourdomainname.ext (ext being.com .co.uk .net etc etc) then this would resolve to the servers new IP without any change from you...
-
Is there any reason why you are validating with Javascript? Not saying it is necessarily a bad thing to do but you can quite easily disable javascript in your browser and hence bypass all your error checking. Does the script even manage to get to RegSubmit2.php? Have you tried: print_r($_POST); at the top of RegSubmit2.php? That will print out the $_POST array so you can analyse if anything has been set. If you are not getting to the second PHP file then there is either a problem with the JS validations. I would recommend putting a bunch of alerts in your JS to follow through the flow to make sure it is doing as you expect. What output are you getting at the end of it?
-
What happens once the form is posted? I can't see how entering an email would cause a 406 error when submitting a form. If you have any source code then maybe PM it to me and I will have a look and see what is happening.
-
I don't know in that much details sorry.. have a look here as this might help: http://httpd.apache.org/docs/2.0/bind.html
-
some PHP versions are fussy with using shorttags make sure your: <? echo date("Y"); ?> is actually <?php echo data('Y'); ?> Also, if you are running on your local machine there is no need to use IIS (which is very complicated), unless of course you have a windows box at TCH Just use apache, download XAMPP as that has PHP, MySQL, Apache and a bunch of other things bundled in to it and it has a nice simple to use installer. The majority of boxes at TCH are linux boxes, hence use apache, so use apache instead on your home machine unless as I say you have an IIS machine here.
-
That seems like a slightly insecure method of doing it. Setting your file to nobody and 777 means that is could potentially be modified by an external source. I have just checked and using SmartFTP you can change the modified and created dates of an uploaded file... try looking into getting SmartFTP - there is a 30 day trial, but it costs for the full version, however I think it was worth it.
-
This error means that the values you are seeking (i.e. userFirstName, userLastName etc) do not exist in the $_REQUEST array. How are you sending data? Try this at the top of your code: >print_r($_REQUEST); that will print out the $_REQUEST array and show you what keys have what values (if any). Are you posting from a form to this script? If so you need to verify the names of your input fields in the form and ensure they match the keys you are seeking in the $_REQUEST array I would also use the $_POST array instead of the $_REQUEST array if you are getting data posted from a form. $_REQUEST is a combination of $_POST and $_GET and $_GET values can be set by anyone, so it would be more secure using $_POST if you are posting.
-
Syntax For Addressing Public Port With Cuteftp
OJB replied to catman915's topic in Cute Site Builder & Cute FTP
This may be a completely incorrect thing to say, not sure about FTP ports etc but does this not work: 69.66.218.208:6000 I know things like SSH access use that sort of syntax for ports and IP addresses. -
This has happened to me twice now. Once from FTP connections and one from CPanel log ins. Can I just ask do the numbers add up over time? If so, are they ever flushed (like on a monthly basis) or do they continuously to add up?
-
Anyway To Install Php Frameworks Such As Symfony/zend
OJB replied to mklappen's topic in Installing Scripts
Most frameworks (such as CakePHP which I have used various times) just require uploading the files in the root directory of your site or in a sub-domain.... I have cake running on one of my sites. -
^^^ Having just checked, it appears I got it confused. preg_replace is quicker when you are doing complex things like regular expressions pattern matching and replacement, for a simple character change in a string str_replace is just as quick if not quicker. So you can use all of the methods mentioned... apologies for confusing the matter...
-
I would say don't use str_replace... it is pretty slow in comparison to other functions. Just use the built in mysql_real_escape_string($string_to_escape) when saving to the db. If they are returning slashes then use stripslashes($string_to_strip) or even preg_replace("/\\\'/","'", $string_to_strip); - preg_replace is much quicker than str_replace and much more efficient. Edit: missed off a backslashes from the regular expression in preg_replace also... just to show you how they work: give these a go: ><?php // String with slash $string = "Paul\'s famous pancakes"; // Print the string echo $string; // Print the string after stripslashes() echo '<br/>'.stripslashes($string); // Use preg_replace to strip the slashes $string = preg_replace("/\\\'/","'", $string); // Print the stripped string echo '<br/>'.$string; ?> this results in: >Paul\'s famous pancakes Paul's famous pancakes Paul's famous pancakes
-
If you are a coder, then look into the GD library for PHP. It has image resizing methods built within it.
-
It always best to be safe and change your login details, but it is more than likely that your account HASN'T been compromised but rather your email address has been spoofed. Meaning someone has sent mail 'claiming' to be from you, but really it is originating somewhere else. There quite frankly is nothing you can do about this, except make sure your email address isn't written in plain text on any websites. If you have to display your email address on a site then either: 1) encode your email address by using something like this: http://www.wbwip.com/wbw/emailencoder.html and then put the encoded value on your site or 2) use an image Spam bots will read email addresses off websites and then send spam 'from them'
-
Hey I was recently made redundant (sad times I know!) but as part of a job interview I have been asked to prepare a web site before hand. The task itself is pretty simple (I hope) but they are requesting a 'URL to login and see the database (e.g. with phpmyadmin)' so they can inspect my database design skills and table names etc. Is this possible through CPanel? I'd rather not have to do this, but I need the job haha. What's the best approach to this? Cheers, OJB
-
What is it you are trying to do, there may be other ways to do it in PHP?
-
On a shared host you cannot have a second domain pointing to different content than your base domain. So if you current one points to (for arguments sake) /movies you cannot buy another domain and point it to /bluray. To do this as Bruce said you will require either a separate shared hosting account or a reseller account As for your FTP question. Yes you can lock an FTP account to a specified folder, so they wouldn't be able to gain access to your other files.
-
3 spam messages man, I get roughly 50 a day on my site. My spamproof method is to force all new members to have their first 2 posts moderated. Once 2 posts have been approved they upgrade to a full member account with posting privileges. It works perfectly in the sense that NO spam ever reaches the public eyes, but its annoying having to clean out 50 posts a day (at least) of filthy I AM A SPAMMER and **** adverts!!! This is with IPB, so I dont know if this can be done with SMF.
-
does the laptop boot up (even if the screen is off)? if not then it MAY be faulty RAM
-
checkout http://www.hotscripts.com/PHP/index.html there will probably be something there Or you can code your own. I have done one myself in the past which can be used to store the file both on the filesystem and also save it in the db.
-
Adding Cc And/or Paypal To Existing Website
OJB replied to peteny77's topic in Running your online business
If you are a competent coder there are APIs for online payment processors. I personally have integrated two sites... one with paypal and one with protx... the good thing about paypal is you dont require an SSL certificate and its pretty easy and everyone knows who paypal are... but they do take a chunk of your cash Protx was pretty simple too but you do require an SSL certificate.... -
Luckily I have never received one of these... maybe because I hide my personal details from the whois?
-
No problemo, glad you got it sorted. Good luck with the site!
-
Sure By adding [] to the end of the name you are not creating a single element called MBS-Services-of-Interest anymore, you are creating an array called MBS-Services-of-Interest So when you were selecting multiple options before if would only be able to store one of them as MBS-Services-of-Interest and would overwrite any other selections, now instead it can store as many elements as you require.. so it will be MBS-Services-of-Interest[0] = 'first choice' MBS-Services-of-Interest[1] = 'second choice' and so on...