Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
3.27
seconds.
Search:
Posts Made By:
Inigoesdr
Forum:
Apache configuration
06-08-2013, 06:31 AM
Replies:
3
Disabling directory indexing : does it stop crawlers too?
Views:
581
Posted By
Inigoesdr
Yeah, this is correct regarding search engines....
Yeah, this is correct regarding search engines. You probably still want to disallow the admin folder because you don't really want the login page contents showing up in your search results.
It's...
Forum:
Adobe Flex
06-08-2013, 06:20 AM
Replies:
1
How to integrate flex with ColdFusion?
Views:
425
Posted By
Inigoesdr
The Adobe Developer Connection...
The Adobe Developer Connection (http://www.adobe.com/devnet/flex/flex_cf.html) site has some good tutorials on how to integrate CF with Flex. ColdFusion has some Flex remoting features built in, so...
Forum:
PHP
05-25-2013, 04:08 AM
Replies:
5
Problem With Links
Views:
143
Posted By
Inigoesdr
It looks like you just have the background...
It looks like you just have the background offsets switched in your CSS:
#about_me a:hover {
background:transparent url(images/menu.jpg) -214px 0px no-repeat;
}
#contact a:hover {...
Forum:
PHP
05-10-2013, 10:34 PM
Replies:
4
Ajax Php Contact Form
Views:
245
Posted By
Inigoesdr
That's what I mean. When you get the error do you...
That's what I mean. When you get the error do you see the email listed in the sent mail folder of the SMTP account you're using? If not you may just be running in to a throttle process your email...
Forum:
Apache configuration
05-10-2013, 04:23 AM
Replies:
6
shut down apache!
Views:
441
Posted By
Inigoesdr
Yeah, not exactly. With Windows Server you have...
Yeah, not exactly. With Windows Server you have to install the Application Server role to be able to use ASP with IIS.
Forum:
PHP
05-10-2013, 04:20 AM
Replies:
4
Ajax Php Contact Form
Views:
245
Posted By
Inigoesdr
It's probably something along those lines. Email...
It's probably something along those lines. Email in general is pretty finicky. Your best results for delivery will be from sending email through an SMTP account hosted with a trusted sender.
Forum:
PHP
05-10-2013, 04:18 AM
Replies:
1
If statement for get_the_author (Wordpress)
Views:
155
Posted By
Inigoesdr
You shouldn't modify the core files. If you do...
You shouldn't modify the core files. If you do your changes can be wiped out on upgrade or they can break your WordPress install in ways that make it hard to debug. The easiest way to do this would...
Forum:
Apache configuration
05-09-2013, 03:28 PM
Replies:
6
shut down apache!
Views:
441
Posted By
Inigoesdr
Do you have ASP installed and configured? Make...
Do you have ASP installed and configured? Make sure you have the correct version selected in the Application Pool for your site.
If you still can't get it working try viewing the failed request...
Forum:
PHP
03-30-2013, 02:12 PM
Replies:
19
Need help with array_unshift used w/ two dim array
Views:
428
Posted By
Inigoesdr
You were close with your last line, but you need...
You were close with your last line, but you need to have the item you're unshifting inside of an array:
array_unshift( $slides, array(
'filename' => 'Welcome_to_FTSC_Website-999999.jpg'
...
Forum:
PHP
03-30-2013, 01:56 PM
Replies:
3
PHP registration form issue
Views:
164
Posted By
Inigoesdr
Also make sure you read our stickies for...
Also make sure you read our stickies for important information such as the FAQ section that talks about getting a blank page (http://www.codingforums.com/showthread.php?p=617060#post617060) and the...
Forum:
PHP
03-15-2013, 04:59 PM
Replies:
4
Best options for .doc(x) libraries?
Views:
344
Posted By
Inigoesdr
I haven't tried this one yet, but the PHPExcel...
I haven't tried this one yet, but the PHPExcel library from the same people works well:
https://github.com/PHPOffice/PHPWord
Forum:
Post a PHP snippet
03-13-2013, 04:42 AM
Replies:
1
Screens credit card transactions frauds
Views:
342
Posted By
Inigoesdr
Reference:...
Reference: http://fraudlabspro.com/developer/sample-codes/screen-order-api/php
Note that this sample requires an account with fraudlabspro.com and another library or file that isn't mentioned...
Forum:
PHP
03-13-2013, 04:28 AM
Replies:
2
Resetting Primary Key Back To 1 After DB Table Delete
Views:
225
Posted By
Inigoesdr
I'm assuming you mean MySQL, so you have two...
I'm assuming you mean MySQL, so you have two options:
If you are clearing out the table, just use TRUNCATE TABLE (http://dev.mysql.com/doc/refman/5.5/en/truncate-table.html), which will delete all...
Forum:
PHP
03-11-2013, 03:44 PM
Replies:
1
Drupal 7
Views:
178
Posted By
Inigoesdr
How are you determining whether a user is...
How are you determining whether a user is anonymous or not?
Forum:
PHP
03-11-2013, 03:42 PM
Replies:
3
Can you do this with the include statement?
Views:
217
Posted By
Inigoesdr
Not in an efficient way that would be worth the...
Not in an efficient way that would be worth the trouble. Technically, you could grab a few lines from a file and exec() (http://php.net/exec) them, but that's not worth the trouble.
It just...
Forum:
Apache configuration
02-19-2013, 12:09 AM
Replies:
1
Linux email configuration - multiple domains
Views:
495
Posted By
Inigoesdr
You need to be passing your custom headers in the...
You need to be passing your custom headers in the mail() function's 4th argument:
mail('myemail@hotmail.com', 'My Subject', $message, $headers);
And make sure you remove the [B] tags you have in...
Forum:
PHP
01-22-2013, 01:30 AM
Replies:
10
error after making changes to a wordpress plugin
Views:
600
Posted By
Inigoesdr
That error means the first argument,...
That error means the first argument, $prescriptions, that you are passing to foreach() (http://php.net/foreach) loop is supposed to be an array, but it isn't. If you dump the $prescriptions variable...
Forum:
PHP
01-04-2013, 02:09 AM
Replies:
2
cron command
Views:
207
Posted By
Inigoesdr
The value of $object will be inserted in to the...
The value of $object will be inserted in to the command, and you can get to it in make.php by using $argv (http://php.net/reserved.variables.argv). For example:
<?php echo $argv[0]; // outputs what...
Forum:
PHP
12-28-2012, 12:30 AM
Replies:
8
Encript with php, decrypt within windows without php?
Views:
452
Posted By
Inigoesdr
Here is an example...
Here is an example (http://stackoverflow.com/questions/3431950/rijndael-256-encrypt-decrypt-between-c-sharp-and-php) of how to handle encryption/decryption with PHP and C#. You'll have to create an...
Forum:
PHP
12-28-2012, 12:26 AM
Replies:
5
Login bar no longer working
Views:
379
Posted By
Inigoesdr
It sounds like you have an issue with your CSS....
It sounds like you have an issue with your CSS. You have some strange values for class names, such as:
<div class="login-row.password"><label for="pwd"><input type="password" name="pwd" id="pwd"...
Forum:
Apache configuration
12-19-2012, 01:16 AM
Replies:
2
htaccess rewrite to replace domain
Views:
2,425
Posted By
Inigoesdr
Neither site is coming up at the moment. Try...
Neither site is coming up at the moment. Try removing the slash from the end of your RewriteCond and make sure you have your site URLs updated as kelisaid mentioned.
Forum:
PHP
12-16-2012, 05:44 AM
Replies:
4
how do i add values from one array to another.
Views:
355
Posted By
Inigoesdr
It would be a lot more efficient to use the...
It would be a lot more efficient to use the userid as the key for the array, but based on the example array you gave, here is how you could do it:
<?php
$tmp = array(
array( ...
Forum:
PHP
12-13-2012, 05:02 PM
Replies:
9
Handling the Cache problem
Views:
358
Posted By
Inigoesdr
In my experience most applications append the...
In my experience most applications append the build number to the JS/CSS URLs, which allows them to be cached but always forces people to request the full file when the application is built next. So...
Forum:
PHP
12-13-2012, 04:54 PM
Replies:
8
Resolved
Page Returns Blank
Views:
438
Posted By
Inigoesdr
After your error_reporting()...
After your error_reporting() (http://php.net/error_reporting) call add:
ini_set('display_errors', true);
Forum:
Adobe Flex
12-13-2012, 04:52 PM
Replies:
2
turning normal smilies into flex smilies
Views:
2,167
Posted By
Inigoesdr
Nope, Flex is just a framework for building Flash...
Nope, Flex is just a framework for building Flash so it is compiled to a SWF too. It is possible to extract assets from a SWF usually, but you can't edit it and save it again.
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
04:55 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.