Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 3.17 seconds.
Search: Posts Made By: NancyJ
Forum: PHP 02-06-2013, 05:13 PM
Replies: 3
Views: 265
Posted By NancyJ
Turns out the software gives the option to...

Turns out the software gives the option to specify that the file is on the server so I was able to create the file and then modify the $_REQUEST to specify that the file was on the server and where...
Forum: PHP 02-06-2013, 03:48 PM
Replies: 3
Views: 265
Posted By NancyJ
Faking a file upload

I'm trying to write an add-on to some software that will automatically generate images for certain products. I'd like the software to think the file was uploaded like a regular file (when it will in...
Forum: PHP 02-01-2013, 03:49 PM
Replies: 1
Views: 172
Posted By NancyJ
SimpleXML messing with my data

The string that goes in contains • but comes out as •
‚ comes out as ‚
How can I stop this happening? Alternatively, is there any way to get • back to •?

I have no control over the data,...
Forum: PHP 01-15-2013, 08:39 PM
Replies: 1
Views: 213
Posted By NancyJ
How would you approach this problem?

eg. Boxes going for delivery. You want to put notes on the boxes depending on certain dynamic criteria.

examples of criteria

All Boxes going to Destination X
All Boxes going to Destination X...
Forum: Flash & ActionScript 12-10-2012, 05:25 PM
Replies: 0
Views: 1,008
Posted By NancyJ
Why can one class access root variables but another can't?

root.somepropertyofmain works in every class in my project (so far) except one. If I trace root from within both say [object main] but one of my classes wont let me access the main variables - it...
Forum: Flash & ActionScript 11-26-2012, 02:11 PM
Replies: 0
Views: 998
Posted By NancyJ
Adding and removing borders at runtime

I have a bunch of little coloured rectangles with 1px grey borders. The rectangles are movie clips inside a movie clip and they're created with actionscript so they don't have instance names but they...
Forum: Ajax and Design 09-28-2012, 02:21 PM
Replies: 2
Views: 1,005
Posted By NancyJ
It should be true by default but I added...

It should be true by default but I added $.ajaxSetup({'async':true}); and it didn't make a difference.
Forum: Ajax and Design 09-27-2012, 07:45 PM
Replies: 2
Views: 1,005
Posted By NancyJ
can't run multiple concurrent ajax requests?

I'm working on a site where data has to be fetched from a 3rd party soap feed so we use ajax to give the user some immediate feedback - eg. searching animation. (searching flights fwiw). I've just...
Forum: MySQL 09-25-2012, 09:23 AM
Replies: 1
Views: 442
Posted By NancyJ
update query inserting blanks instead of specified values

update bookings set status ="In Progress" and assignedTo=94 where id=54438

when I run the query the booking gets updated to a status of "" and assignedTo of 0 - wtf?
status is enum('New', 'In...
Forum: Flash & ActionScript 06-24-2012, 12:48 PM
Replies: 1
Views: 691
Posted By NancyJ
Flash movie clip classes.

I'm working on a flash project where I have a bunch of different movie clips that should all have the same behavior but the movie clips themselves are different.

I have 15 different movie clips...
Forum: PHP 05-31-2012, 05:17 PM
Replies: 4
Views: 313
Posted By NancyJ
The images are all different sizes and aspect...

The images are all different sizes and aspect ratios. This would have to be without altering anything other than the dimensions of the image.
Forum: PHP 05-31-2012, 04:26 PM
Replies: 4
Views: 313
Posted By NancyJ
Arranging images into a fixed space

Say you have a container that you know the dimensions of and a bunch of images that you also know the dimensions of. Is it possible to calculate the width and height of each image such that they all...
Forum: MySQL 05-21-2012, 01:54 PM
Replies: 3
Views: 684
Posted By NancyJ
duplicate key for entry on select?

SELECT 7682 FROM(SELECT COUNT(*),CONCAT(':ugy:1:dxh:',FLOOR(RAND(0)*2))x FROM information_schema.tables GROUP BY x)a

This query gives me: Duplicate entry ':ugy:1:dxh:1' for key 1

select 7682...
Forum: Apache configuration 05-20-2012, 05:13 PM
Replies: 0
Views: 576
Posted By NancyJ
.htaccess redirect subfolder to subdomain

I have a site that was on example.com/rewards which should now be rewards.example.com
I was able to rewrite the request based on checking the host (and if it wasn't rewards.example.com redirect...
Forum: MySQL 05-04-2012, 02:27 PM
Replies: 1
Views: 403
Posted By NancyJ
Any way to avoid a filesort here?

SELECT SQL_CALC_FOUND_ROWS boats.* FROM `boats`
left join boat_ports on boats.id=boat_ports.boat_id
left join ports on port_id=ports.id
...
Forum: PHP 04-14-2012, 05:33 PM
Replies: 3
Views: 331
Posted By NancyJ
$image = trim($image) Or you could find out...

$image = trim($image)

Or you could find out where there are linebreaks in your image names
Forum: PHP 04-14-2012, 05:30 PM
Replies: 6
Views: 360
Posted By NancyJ
you can use mathematical operators with the...

you can use mathematical operators with the values in date/datetime fields but you need to quote your date string. 2012-04-14 doesn't say the 14th of April 2012, it says 2012 minus 4 minus 14

...
Forum: PHP 04-14-2012, 05:20 PM
Replies: 5
Views: 430
Posted By NancyJ
try using this[this.selectedIndex].value instead...

try using this[this.selectedIndex].value instead of this.value
Forum: JavaScript frameworks 04-05-2012, 11:15 PM
Replies: 4
Views: 793
Posted By NancyJ
Nifty function! That did the trick, it seems...

Nifty function! That did the trick, it seems inelegant but it works. Thanks
Forum: JavaScript frameworks 04-05-2012, 05:43 PM
Replies: 4
Views: 793
Posted By NancyJ
No joy with stopPropagation() :(

No joy with stopPropagation() :(
Forum: JavaScript frameworks 04-05-2012, 03:31 PM
Replies: 4
Views: 793
Posted By NancyJ
jQuery optgroup

I want all options within an optgroup to be selected when the optgroup label is clicked. I thought it was working but clicking on any option within the optgroup also selects all the options. I...
Forum: PHP 04-05-2012, 07:54 AM
Replies: 16
Views: 719
Posted By NancyJ
Yes error reporting is on and yes _menu.php is...

Yes error reporting is on and yes _menu.php is definately being included.

I have an autoload function but thats the same for both.


function __autoload($classname)
{
...
Forum: PHP 04-04-2012, 09:31 PM
Replies: 16
Views: 719
Posted By NancyJ
yes, index is in /home/xxx/html/suppliers ...

yes, index is in /home/xxx/html/suppliers

There's nothing in dashboard.php before the include call (except a line of html) the function that calls the function to display dashboard has only this:...
Forum: PHP 04-04-2012, 09:17 PM
Replies: 16
Views: 719
Posted By NancyJ
dashboard cwd: /home/xxx/html/suppliers ...

dashboard

cwd: /home/xxx/html/suppliers
include_path: .:/usr/local/php5/lib/php
_menu.php: /home/xxx/html/suppliers/views/application/_menu.php
Executing: /index.php

boats/add

cwd:...
Forum: PHP 04-04-2012, 08:38 PM
Replies: 16
Views: 719
Posted By NancyJ
Dashboard: cwd: /home/xxx/html/suppliers ...

Dashboard:


cwd: /home/xxx/html/suppliers
include_path: .:/usr/local/php5/lib/php


Boats/add
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 09:51 AM.