PHP 5.3.3 marks the end of life for PHP 5.2, and many users are having to change their code to cope with deprecated features.
0
votes
1answer
19 views
how to optimise an sql union containing joins and a subquery
I have looked at the many comments regarding sql optimisation but I cannot find an answer.
My app uses this sql ...
SELECT * FROM ((
SELECT DISTINCT
c.companyname,
c.tradingas,
...
1
vote
2answers
26 views
4
votes
1answer
37 views
Fastest possible way to download many images in PHP 5.3? [duplicate]
Im working on script that integrates online shops.
I have code like this (simplified):
// $asImageurls - array of string with image url's
foreach($asImageurls as $sImageUrl)
{
$imageContent = ...
0
votes
0answers
4 views
1. Function ereg() is deprecated
Due to Php5.3 Function ereg() is deprecated
8192 in line 456 of file .../public_html/libs/model/datatypes.class.php
Here's line 456 code:
if(!preg_match("/\/\?/isU", $argv_string) AND ...
-2
votes
0answers
11 views
What should I change the code of line 456 to in order to eliminate the “Function ereg() is deprecated” error? [closed]
Here are the errors:
1. Function ereg() is deprecated
8192 in line 456 of file .../public_html/libs/model/datatypes.class.php
Here's line 456:
if(!preg_match("/\/\?/isU", $argv_string) ...
0
votes
1answer
30 views
array_push only returns the last element pushed in?
The $orders variable only returned the last pushed element of the array , instead of returning all elements .. I did use array_push to push the elements to the array $orders but I only get the last ...
-2
votes
1answer
40 views
Declaration of child method should be compatible with that of parent method in PHP 5.3.13 [duplicate]
I get the following error running PHP 5.3.13 and I cannot see why.
Declaration of CustomCourse::toArray() should be compatible with that
of BaseCourse::toArray()
This is my PHP code below, ...
4
votes
2answers
31 views
How to match horizontal ellipse (…) in php
I want to replace the horizontal ellipse (…) with three period (...)in a given string.
Till now I have tried are:
str_replace('…','...', $text);
str_replace('…', '...', $text);
...
0
votes
2answers
35 views
How to return a multidimensional array keys as a tree?
I am working on an MLM application in which i need to show all users as a tree. For this is implemented parent child relationship among the users. my table structure is here :-
I had retrieve the ...
-1
votes
3answers
35 views
joining two tables and fetching values from them error
i am joining the two tables but is giving me error that mysql_fetch_array() expects parameter 1 to be resource,
<?php
$result=mysql_query("SELECT * FROM `photo_gallery`.`photographs` WHERE ...
0
votes
0answers
21 views
Typo3 scheduler class not found
I am trying to get a scheduler class running on typo3.
ext_autoload.php:
$extensionPath = t3lib_extMgm::extPath('mh_compass');
$loaderClass = array(
'tx_monitorcompassdailyreset_sched' => ...
0
votes
0answers
32 views
Sending multiple data to PHP from select option in HTML
I want to know if we can send multiple data to php from select option in HTML ? I am looking for a value to pass in hidden within the select option tag and my select option tag is within a loop, so I ...
0
votes
0answers
35 views
How to measure data traffic and data storage? [closed]
I need to measure data traffic and data storage of my website, I'm hosted on Amazon, and it's hard to get some reports of this to feed my system, and I want to charge by traffic and storage.
I want ...
-3
votes
0answers
39 views
PHP: Possible Class for filtering Phone Numbers for view? [closed]
I have a great function in place already. It removes all characters. Removes leading 1's (not necessary as we already know 1 for the US since we're in the US). And even formats 10 digit (assuming they ...
0
votes
1answer
13 views
Access properties of object
I have an object that looks like this in PHP 5 when returned from var_dump($result); :
object(stdClass)#4 (1) {
["pong"]=>
object(stdClass)#5 (1) {
["message"]=>
string(9) "It ...
-2
votes
0answers
21 views
PHP SYNTAX ERRORS IN 5.3 VERSION
I have some errors in this php file >>this is a script used to add tv channels in an integrated admin interface<<
I NEED AN EXPERT TO TELL ME IF IT COULD BE FIXED AND SUGGESTIONS WILL BE ...
-2
votes
5answers
58 views
where's the error in this simple code? [closed]
where could the error be ???? on line 24 and dont see anything.. could anyone pinpoint the error ?? it would be so appreciated... It says the error is on line 24
the error message
Parse error: ...
-5
votes
4answers
70 views
PHP won't run the select query [closed]
PHP won't run the select query even though it's connected to the database
<?php
$con = mysql_connect("localhost","root","","test");
if (!$con) {
die('Could not connect: ' . ...
0
votes
1answer
22 views
XML parsing slows down
I am trying to read a pricelist and stocklist via the product code (that comes from a database table too) from xml files and puts the result into a MySQL table.
Everything is OK except the response ...
1
vote
2answers
40 views
mysql FOUND_ROWS() return wrong value
I'm trying to use FOUND_ROWS() in my query, but the function returns wrong values sometimes.
SELECT SQL_CALC_FOUND_ROWS adminslog.*, admins.fullName FROM adminslog
JOIN admins ON ...
0
votes
1answer
18 views
online server wont show string values
i have this code, where i get an array and make it a string, on my localhost show the values correctly (1,2...) but on my online server shows (,,) no numbers, just the commas. Does someone know what ...
-1
votes
1answer
21 views
passing array to string not ok [duplicate]
i have this script and im having a problem passing this array to a string with commas.
i want it to be a string so i can insert it as a variable inside another query in the select...where... ...
-6
votes
0answers
34 views
get data from database and make an array [closed]
i want to get multiple ids from a database as an array and then make it a string with commas like (1,2,..).
Does someone has the code to do this or can explain me how to?
<?php example
...
-1
votes
1answer
42 views
making an array from database [closed]
I'm going crazy with this issue, I want to get an array separated by commas(string) like example:(1,2,4,6) from a database and insert this as a variable inside a query like(select from table where id ...
0
votes
1answer
38 views
php array to string not working online server
I have a problem. I have an array of values from database, when I try to pass it to a string with commas, it works fine on my localhost, but when I upload it to my online server, the string doesn't ...
0
votes
0answers
15 views
Able to sign in with my gmail account but not able to retrieve token for accessing google contacts to the my application
The below code works fine for me it returns valid id.. Now i want to retrieve token for retrieve my google contact can anyone help me how oauth process can possible with this id..
public function ...
0
votes
2answers
39 views
DateTime not responding on server change
I recently migrated a site from a shared hosting to a Virtual Private Server.
On the shared hosting I had PHP 5.2, and on the VPS I have PHP 5.3.3.
After this migration the DateTime class stopped ...
0
votes
0answers
13 views
Symfony wont release the RAM it consumed, even after every thing is finished
We have a symfony app which consume lot of RAM(8GB) and CPU as well. The problem is, even after everything is finished, it holds the memory without releasing. It will release the memory after ...
0
votes
1answer
53 views
How to get an access token using Google's OpenID+OAuth hybrid protocol?
I've been spending some time trying to get my web app set up to use this method of authentication, but it really seems like there aren't any examples out there, and the documentation is sparse, ...
0
votes
2answers
37 views
symfony render a template/partial in a form
I am trying to render a template in a form using the _toString() method.
The problem I am facing is that the form does not inherit from controller and I can not do
$str.= ...
4
votes
1answer
26 views
Why $pear->packageExists() returns always false on installed package?
I installed Mail (http://pear.php.net/package/Mail) by
pear install Mail
everything seems to be ok, but checking for this package programmatically:
$pear = new PEAR_Registry();
$enabled = ...
0
votes
3answers
190 views
Laravel 4 Resource Controller shows single page no matter what typed in the url
I have set up a resource controller using jefferyway's laravel4 generator as player.
So when i go to the url /players/show it shows me the show.blade.php. That's correct. But when I go to the ...
0
votes
1answer
33 views
Parse error: syntax error, unexpected '[' with php 5.3 [duplicate]
My script is working really fine on my xampp. Now I tried to upload it on the server, but it spat directly a
Parse error: syntax error, unexpected '['
in my face. :(
The line which its mocking ...
0
votes
0answers
21 views
PHP ImageWorkshop package with Composer failing
So very strange issue. I only recently starting using auto loading in PHP 5.3+ and of course, this inevitably led to composer.
I did a really simple install with composer with only one package, php ...
0
votes
1answer
29 views
PHP5.3 Wamp 2.2 Image functions not working
while I am trying to build a captcha in my web application ( PHP ), its not rendering the image. So I tried with the following code, which is the simple example in php.net. But this also not rendering ...
0
votes
1answer
33 views
How can I populate content from a facebook page using Opengraph without using a facebook app ? is that possible?
So I'm told to do this not so clear project where I am supposed to create a facebook page and populate it with content from another facebook page using opengraph . For this project , I do not have to ...
0
votes
1answer
26 views
Unexpected $this - setting element of an array to a class member [duplicate]
I have the following in my class:
private $_foo = array();
private $_bar = array($this->_foo);
I get an "unexpected $this" error on the second line. Is this not allowed? If not, how do I work ...
-3
votes
5answers
64 views
Sample Login in Php doesn't redirect
Hello I've followed a tutorial in php in creating a sample login system. but it doesn't seem to work. What's wrong with the code below.
login_success.php
<?php
session_start();
...
1
vote
2answers
91 views
Detect Encoding and Convert Everything to UTF-8 with PHP
I want to extract various data from URLs that will be converted to UTF-8 no matter what the encoding methods is used in original page (or at least it will work on most of the source encodings).
So, ...
0
votes
1answer
47 views
How do I assign a class instance method to a variable?
Say I'm here:
class Foo
{
public function test()
{
// I'm here!
}
private function pow() {}
}
I want to declare a local variable that references the method $this->pow. I ...
2
votes
2answers
42 views
scope of server variables in php
As we know that session variable $_SESSION is different for each user. I want to know the scope of Server variable like $_SERVER.
I am doing http authentication in my RestFul API. If I set the ...
0
votes
1answer
270 views
Laravel 4 Form builder Custom Fields Macro
Im trying to create a custom HTML 5 date field for using in a laravel 4 framework view.
{{
Form::macro('datetime', function($field_name)
{
return '';
});
}}
{{ ...
0
votes
1answer
17 views
Class constructor error on validation
I am developing a file uploaded class, and trying to perform few validation before other codes, but its returning all vars instead of false, check following code....
class FileUploader
{
private ...
0
votes
3answers
25 views
Number not exactly printed in the excel record file
I want to display unit numbers in front of Property name. I fetched my data in $arrobjPropertyName array object and in foreach loop I print it as
foreach( $arrobjPropertyName as $objProperty ) {
...
0
votes
1answer
38 views
Can not redeclare function in PHP [closed]
I am getting the oddest error
PHP Fatal error: Cannot redeclare checklastcharacter() (previously declared in
/var/www/vhosts/######/develop/public/lib/init.php:23) in
...
0
votes
1answer
27 views
How do I rewrite this compress() function to not use a while() loop?
I have the following compress() function:
function compress($input){
$from = array("\r\n", "\n");
$to = array('', '');
$output = str_replace($from, $to, $input);
while(true){
...
1
vote
3answers
67 views
Sum values in Multiple Dimensional array that have same key value
i have a Multiple Dimensional array and i need to sum up values which have the same keys .
print_r($inputs)
Array
(
[0] => Array
(
[id] => colors
[power] ...
1
vote
2answers
36 views
recursively add elements to array and return new array
Let's say I have an array like this:
$my_array = array(1, 2, 3, 4, array(11, 12, 13, 14), 6, 7, 8, array(15, 16, 17, 18), 10);
I want to build a recursive function that returns an array which ...
1
vote
0answers
121 views
How To Run Zend Guard Loader With Wampserver 2.2e (With PHP 5.3.x)
It's my polite and gentle request, if anybody knows the answer PLEASE share it with me, my concern is :-
I really want to run Zend Guard Loader with PHP 5.3.x and my current configuration is :-
...
2
votes
1answer
53 views
how to use RC6 in php5?
I need to use RC6 cipher for my project. But, because the installed mcrypt library in my server is mcrypt version 2.5.8, so it's not support for RC6 cipher. As wrote in ...




