-
Posts
74 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by jamiess
-
I would design your emails with HTML first, then inline the css and then include any of the php.
-
LAMP/Worpdress advice needed
jamiess replied to zachariah's topic in Internet Related/Filtering/Firewall
It sounds like the Site address needs to be set to the ip address of the server, that should make it browsable from your windows machine. -
If you just want somewhere to store your code, you can all ways use github. It's free aswell.
-
We had our setup by Burconix - Professional ICT Solutions for Education and SME. We did put up the access points ourselves though.
-
You can use WampServer, the web development platform on Windows - Apache, MySQL, PHP which will install a apache web server on to your machine. You can then access your pictures through EduGeek.net - The I.T. Professionals' life line. Jamie
-
Im, not really sure what your are asking for help with. However this is how I would do it: I would download this: adLDAP - LDAP Authentication with PHP for Active Directory I would have my login form POST the users data over to Login_process.php which would then authenticate the user and then redirect. I've knocked up a quick example. Login form - </pre><form action="login_process.php" method="POST"> Username: Password: </form><br><b login_process.php require_once('adldap.php'); $username = $_POST('username'); $password = $_POST('password'); $adldap = new adLDAP(); $authUser = $adldap->user()->authenticate($username, $password); if($authUser == true) { header('Location: newpage.php'); } else { header('Location: login.html'); } You'll obviously want to sanitise the POST variables or detect if there empty and provide feedback to the user. I havent tested this code and I know that LDAP / AD can be a right pain to get right. Good Luck Jamie
-
Hi, You can do this in php $ip = '192.168.6.; if (substr($_SERVER['REMOTE_ADDR'], 0, strlen($ip)) === $ip) { header("Location:http://www.google.com"); } else{ header("Location:http://www.google.com"); }
- 1 reply
-
- 1
-
-
Glad i could have been of some help. When were you at Balsall Common Primary School?
-
Hi Wesleyw, Twitter is currently changing things with their api and how you can use it. Twitter now suggests that you use their widgets for embedding your timeline on your website. You can find these in the settings section when logged into twitter.com. If those cause the same issue, you can try this php wrapper https://github.com/abraham/twitteroauth. You will need to create your own twitter application at dev.twitter.com. Let me know if you need any help. Jamie
-
Transport for London does have a developers area, where you can access their data. TfL Developers area
-
Hi Majik, This is a bit of a hack to fix your problem. Ive only tested this using firebug on your home page, it may change other stuff on other pages. You need to add a width to table.contentpaneopen. (template_css.css line 511) This will solve the text overlapping the sidebar, but not you attendance image thingy, which needs to be re-sized to 655px. table.contentpaneopen{ width:655px; } The calendar seems to be affected by the width and margin set in div.moduletable table (template_css.css line 322). Removing those corrects the table width and header. Again YMMV with these, let me know if you need any other help Jamie
-
Our School Website - Opinions/constructive criticism
jamiess replied to bazgee's topic in Web Development
I agree with everything above. A couple of things I have noticed. On the Parents->Pupil Premium page the content extends over the footer and outside of the container. See Here The contact details are all made up of JPEG's, this means that if you use a screen reader you cannot get contact details for the school. Most of the images don't contain any alt description or titles, again if your using a screen reader. awesomeimage.jpeg Jamie -
If you aren't really all that interested in learning Objective C and Xcode. I would recommend appcelerator.com it compiles Javascript into Xcode, Android and Blackberry projects. We used it to create Heart of England's Mobile Prospectus.
-
Ben, I have a js folder, which is in the root, and cookiecontrol.js lives in there. Jamie
-
Hi, We have found this Configuration | Cookie Control by CIVIC, we haven't set ours up yet.
-
You can always try these suggestions. How to Optimize Your Business For Local Search and Social Marketing
-
I cant share any of mine, after a quick google search i came across this Manage client expectations with a project scope document | TechRepublic
-
sbegum, The scoping document should help to manage teh clients expectations by detailing exactly what you plan to do. The scoping document should be based on the meeting you have with your client. The document should really be based on, this is what the client says they want, this is what i plan to do and this is how much it is going to cost. A couple of things you should include in your document should be, the current problem, objectives of the project, deliverables and the cost. Hope this helps. Jamie
-
What does this plugin actually do?
-
Student Support Online We were approached by our head who had received a suggestion from some students about ways they could contact our student support team. They suggested that they could do this online. The head was keen that students could use this feature with out having to submit any details about themselves or their personal contact information. We have developed this Codeigniter based web interface to meet those two criteria. Students can report any concerns they may have and receive advice back on a secret link. We would like to offer this solution to all schools that want it, you can download it here. Download Student Support Online Student Support Online is in beta. There are still some rough edges which need ironing out. If you have any suggestions or find any bugs please report them here. Many Thanks Jamie
-
Im not sure i fully understand what you want to achieve, do you mean when you update a section of the site you want to send a email to parents to let them know it has been updated? If you want you can sign up to Mail Chimp's forever free plan, which allows you have up to 2000 subscribers and sending 12000 email per month.
-
To see the submitted values in the query string like you suggested, you need to change your form method to get. That will pass the values after the question mark. Unless you have a good reason i wouldn't recommend passing values with the query string. If your using PHP to process your form you can still see what the values are by printing out the POST Array. print_r($_POST); or an individual field print_r($_POST("name"));
-
[hosting] blocking hotlinking and adding adverts
jamiess replied to RabbieBurns's topic in Web Development
Rabbieburns, One way to block hotlinking is to create a .htaccess file. This should sort it out. RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.com/.*$ [NC] RewriteRule \.(gif|jpg)$ http://www.domain.com/nohotlinking.html [R,L] You need to change domain.com to your domain, the last domain will redirect the hot linkers to the domain of your choice. As for the ads i would recommend Online Advertising Marketplace | BuySellAds.com Jamie
